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