diff --git a/src/index.tsx b/src/index.tsx index 95fcb64..31040f5 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4318,7 +4318,7 @@ export type VideoExportJobGql = { createdAt?: Maybe; downloadUrl?: Maybe; expiresAt?: Maybe; - fileSizeBytes?: Maybe; + fileSizeBytes?: Maybe; id: Scalars["Int"]["output"]; mode: VideoExportModeEnum; runId?: Maybe; @@ -9281,7 +9281,7 @@ export type VideoExportJobFieldsFragment = { shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; - fileSizeBytes?: number | null; + fileSizeBytes?: any | null; expiresAt?: any | null; createdAt?: any | null; }; @@ -9303,7 +9303,7 @@ export type RequestVideoExportMutation = { shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; - fileSizeBytes?: number | null; + fileSizeBytes?: any | null; expiresAt?: any | null; createdAt?: any | null; }; @@ -9335,7 +9335,7 @@ export type VideoExportJobQuery = { shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; - fileSizeBytes?: number | null; + fileSizeBytes?: any | null; expiresAt?: any | null; createdAt?: any | null; } | null; @@ -9359,7 +9359,7 @@ export type MyVideoExportsQuery = { shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; - fileSizeBytes?: number | null; + fileSizeBytes?: any | null; expiresAt?: any | null; createdAt?: any | null; }>; diff --git a/src/schema.gql b/src/schema.gql index 1f74d9f..c1406e3 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -536,19 +536,6 @@ type GetUploadLinksReturn { stream: UploadStreamGQL } -type SegmentUploadLink { - segmentIndex: Int! - uploadUrl: String! - headers: [Header]! -} - -type UploadLinkBatch { - links: [SegmentUploadLink!]! - alreadyUploaded: [Int!]! -} - -union UploadLinkBatchGetUploadLinkErrors = UploadLinkBatch | GetUploadLinkErrors - type HLSPlaylistGQL { videoId: Int! m3u8Text: String! @@ -1314,6 +1301,12 @@ type SegmentAlreadyUploadedErr { segmentId: Int! } +type SegmentUploadLink { + segmentIndex: Int! + uploadUrl: String! + headers: [Header]! +} + type SerializedShotPathsGQL { b64EncodedBuffer: String } @@ -1800,6 +1793,13 @@ type UploadLink { headers: [Header]! } +type UploadLinkBatch { + links: [SegmentUploadLink!]! + alreadyUploaded: [Int!]! +} + +union UploadLinkBatchGetUploadLinkErrors = UploadLinkBatch | GetUploadLinkErrors + union UploadLinkGetProfileUploadLinkErrors = UploadLink | GetProfileUploadLinkErrors @@ -1934,7 +1934,7 @@ type VideoExportJobGQL { shotIds: [Int!] runId: Int downloadUrl: String - fileSizeBytes: Int + fileSizeBytes: BigInt expiresAt: DateTime createdAt: DateTime }