Compare commits
	
		
			6 Commits
		
	
	
		
			a030a0ef16
			...
			kat/expose
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| f9b02f65e0 | |||
| ba36bc709c | |||
| 4005416233 | |||
| db4a6315cd | |||
| af38fdea64 | |||
| 172df69340 | 
@@ -1795,6 +1795,17 @@ export type GetShotsQuery = {
 | 
			
		||||
    createdAt?: any | null;
 | 
			
		||||
    updatedAt?: any | null;
 | 
			
		||||
    user?: { __typename?: "UserGQL"; id: number } | null;
 | 
			
		||||
    video?: {
 | 
			
		||||
      __typename?: "VideoGQL";
 | 
			
		||||
      stream?: {
 | 
			
		||||
        __typename?: "UploadStreamGQL";
 | 
			
		||||
        resolution: {
 | 
			
		||||
          __typename?: "VideoResolutionGQL";
 | 
			
		||||
          width?: number | null;
 | 
			
		||||
          height?: number | null;
 | 
			
		||||
        };
 | 
			
		||||
      } | null;
 | 
			
		||||
    } | null;
 | 
			
		||||
    cueObjectFeatures?: {
 | 
			
		||||
      __typename?: "CueObjectFeaturesGQL";
 | 
			
		||||
      cueObjectDistance?: number | null;
 | 
			
		||||
@@ -2044,13 +2055,11 @@ export type GetVideosQuery = {
 | 
			
		||||
  getVideos: Array<{
 | 
			
		||||
    __typename?: "VideoGQL";
 | 
			
		||||
    id: number;
 | 
			
		||||
    playlist?: {
 | 
			
		||||
      __typename?: "HLSPlaylistGQL";
 | 
			
		||||
      segmentDurations: Array<number>;
 | 
			
		||||
    } | null;
 | 
			
		||||
    framesPerSecond: number;
 | 
			
		||||
    stream?: {
 | 
			
		||||
      __typename?: "UploadStreamGQL";
 | 
			
		||||
      id: string;
 | 
			
		||||
      streamSegmentType: StreamSegmentTypeEnum;
 | 
			
		||||
      segments: Array<{
 | 
			
		||||
        __typename?: "UploadSegmentGQL";
 | 
			
		||||
        uploaded: boolean;
 | 
			
		||||
@@ -2060,6 +2069,10 @@ export type GetVideosQuery = {
 | 
			
		||||
        framesPerSecond?: number | null;
 | 
			
		||||
      }>;
 | 
			
		||||
    } | null;
 | 
			
		||||
    playlist?: {
 | 
			
		||||
      __typename?: "HLSPlaylistGQL";
 | 
			
		||||
      segmentDurations: Array<number>;
 | 
			
		||||
    } | null;
 | 
			
		||||
  }>;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -2720,6 +2733,14 @@ export const GetShotsDocument = gql`
 | 
			
		||||
        id
 | 
			
		||||
      }
 | 
			
		||||
      falsePositiveScore
 | 
			
		||||
      video {
 | 
			
		||||
        stream {
 | 
			
		||||
          resolution {
 | 
			
		||||
            width
 | 
			
		||||
            height
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      createdAt @include(if: $includeCreatedAt)
 | 
			
		||||
      updatedAt @include(if: $includeUpdatedAt)
 | 
			
		||||
      cueObjectFeatures @include(if: $includeCueObjectFeatures) {
 | 
			
		||||
@@ -3601,11 +3622,10 @@ export const GetVideosDocument = gql`
 | 
			
		||||
  query GetVideos($videoIds: [Int!]!) {
 | 
			
		||||
    getVideos(videoIds: $videoIds) {
 | 
			
		||||
      id
 | 
			
		||||
      playlist {
 | 
			
		||||
        segmentDurations
 | 
			
		||||
      }
 | 
			
		||||
      framesPerSecond
 | 
			
		||||
      stream {
 | 
			
		||||
        id
 | 
			
		||||
        streamSegmentType
 | 
			
		||||
        segments {
 | 
			
		||||
          uploaded
 | 
			
		||||
          valid
 | 
			
		||||
@@ -3614,6 +3634,9 @@ export const GetVideosDocument = gql`
 | 
			
		||||
          framesPerSecond
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      playlist {
 | 
			
		||||
        segmentDurations
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
`;
 | 
			
		||||
 
 | 
			
		||||
@@ -27,6 +27,14 @@ query GetShots(
 | 
			
		||||
      id
 | 
			
		||||
    }
 | 
			
		||||
    falsePositiveScore
 | 
			
		||||
    video {
 | 
			
		||||
      stream {
 | 
			
		||||
        resolution {
 | 
			
		||||
          width
 | 
			
		||||
          height
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
    createdAt @include(if: $includeCreatedAt)
 | 
			
		||||
    updatedAt @include(if: $includeUpdatedAt)
 | 
			
		||||
    cueObjectFeatures @include(if: $includeCueObjectFeatures) {
 | 
			
		||||
 
 | 
			
		||||
@@ -118,11 +118,10 @@ query GetVideoDetails($videoId: Int!) {
 | 
			
		||||
query GetVideos($videoIds: [Int!]!) {
 | 
			
		||||
  getVideos(videoIds: $videoIds) {
 | 
			
		||||
    id
 | 
			
		||||
    playlist {
 | 
			
		||||
      segmentDurations
 | 
			
		||||
    }
 | 
			
		||||
    framesPerSecond
 | 
			
		||||
    stream {
 | 
			
		||||
      id
 | 
			
		||||
      streamSegmentType
 | 
			
		||||
      segments {
 | 
			
		||||
        uploaded
 | 
			
		||||
        valid
 | 
			
		||||
@@ -131,6 +130,9 @@ query GetVideos($videoIds: [Int!]!) {
 | 
			
		||||
        framesPerSecond
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
    playlist {
 | 
			
		||||
      segmentDurations
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user