Make video frame rate nullable
This commit is contained in:
@@ -4259,7 +4259,7 @@ export type VideoGql = {
|
||||
currentProcessing?: Maybe<VideoProcessingGql>;
|
||||
elapsedTime?: Maybe<Scalars["Float"]["output"]>;
|
||||
endTime?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
framesPerSecond: Scalars["Float"]["output"];
|
||||
framesPerSecond?: Maybe<Scalars["Float"]["output"]>;
|
||||
homographyHistory: Array<HomographyInfoGql>;
|
||||
id: Scalars["Int"]["output"];
|
||||
makePercentage: Scalars["Float"]["output"];
|
||||
@@ -6710,7 +6710,7 @@ export type GetShotLabVideosQuery = {
|
||||
name?: string | null;
|
||||
createdAt?: any | null;
|
||||
screenshotUri?: string | null;
|
||||
framesPerSecond: number;
|
||||
framesPerSecond?: number | null;
|
||||
totalShots: number;
|
||||
owner?: {
|
||||
__typename?: "UserGQL";
|
||||
@@ -8459,7 +8459,7 @@ export type GetVideosQuery = {
|
||||
getVideos: Array<{
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
framesPerSecond: number;
|
||||
framesPerSecond?: number | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
@@ -8483,7 +8483,7 @@ export type GetVideosQuery = {
|
||||
export type VideoStreamMetadataFragment = {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
framesPerSecond: number;
|
||||
framesPerSecond?: number | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
@@ -8512,7 +8512,7 @@ export type GetVideoForShotTimeQuery = {
|
||||
getVideo: {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
framesPerSecond: number;
|
||||
framesPerSecond?: number | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
@@ -8683,7 +8683,7 @@ export type PlaylistWithSegmentStartTimesFragment = {
|
||||
export type VideoDurationDataFragment = {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
framesPerSecond: number;
|
||||
framesPerSecond?: number | null;
|
||||
playlist?: {
|
||||
__typename?: "HLSPlaylistGQL";
|
||||
videoId: number;
|
||||
@@ -8720,7 +8720,7 @@ export type GetVideoForClipTimesQuery = {
|
||||
getVideo: {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
framesPerSecond: number;
|
||||
framesPerSecond?: number | null;
|
||||
playlist?: {
|
||||
__typename?: "HLSPlaylistGQL";
|
||||
videoId: number;
|
||||
|
||||
@@ -1880,7 +1880,7 @@ type VideoGQL {
|
||||
startTime: DateTime
|
||||
endTime: DateTime
|
||||
elapsedTime: Float
|
||||
framesPerSecond: Float!
|
||||
framesPerSecond: Float
|
||||
tableSize: Float!
|
||||
pocketSize: Float
|
||||
private: Boolean!
|
||||
|
||||
Reference in New Issue
Block a user