Compare commits
1 Commits
master
...
agent/vide
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e6dabe12a |
@@ -4302,7 +4302,7 @@ export type VideoExportJobGql = {
|
|||||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||||
downloadUrl?: Maybe<Scalars["String"]["output"]>;
|
downloadUrl?: Maybe<Scalars["String"]["output"]>;
|
||||||
expiresAt?: Maybe<Scalars["DateTime"]["output"]>;
|
expiresAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||||
fileSizeBytes?: Maybe<Scalars["Int"]["output"]>;
|
fileSizeBytes?: Maybe<Scalars["BigInt"]["output"]>;
|
||||||
id: Scalars["Int"]["output"];
|
id: Scalars["Int"]["output"];
|
||||||
mode: VideoExportModeEnum;
|
mode: VideoExportModeEnum;
|
||||||
runId?: Maybe<Scalars["Int"]["output"]>;
|
runId?: Maybe<Scalars["Int"]["output"]>;
|
||||||
@@ -9244,7 +9244,7 @@ export type VideoExportJobFieldsFragment = {
|
|||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
fileSizeBytes?: number | null;
|
fileSizeBytes?: any | null;
|
||||||
expiresAt?: any | null;
|
expiresAt?: any | null;
|
||||||
createdAt?: any | null;
|
createdAt?: any | null;
|
||||||
};
|
};
|
||||||
@@ -9266,7 +9266,7 @@ export type RequestVideoExportMutation = {
|
|||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
fileSizeBytes?: number | null;
|
fileSizeBytes?: any | null;
|
||||||
expiresAt?: any | null;
|
expiresAt?: any | null;
|
||||||
createdAt?: any | null;
|
createdAt?: any | null;
|
||||||
};
|
};
|
||||||
@@ -9298,7 +9298,7 @@ export type VideoExportJobQuery = {
|
|||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
fileSizeBytes?: number | null;
|
fileSizeBytes?: any | null;
|
||||||
expiresAt?: any | null;
|
expiresAt?: any | null;
|
||||||
createdAt?: any | null;
|
createdAt?: any | null;
|
||||||
} | null;
|
} | null;
|
||||||
@@ -9322,7 +9322,7 @@ export type MyVideoExportsQuery = {
|
|||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
fileSizeBytes?: number | null;
|
fileSizeBytes?: any | null;
|
||||||
expiresAt?: any | null;
|
expiresAt?: any | null;
|
||||||
createdAt?: any | null;
|
createdAt?: any | null;
|
||||||
}>;
|
}>;
|
||||||
|
|||||||
@@ -531,19 +531,6 @@ type GetUploadLinksReturn {
|
|||||||
stream: UploadStreamGQL
|
stream: UploadStreamGQL
|
||||||
}
|
}
|
||||||
|
|
||||||
type SegmentUploadLink {
|
|
||||||
segmentIndex: Int!
|
|
||||||
uploadUrl: String!
|
|
||||||
headers: [Header]!
|
|
||||||
}
|
|
||||||
|
|
||||||
type UploadLinkBatch {
|
|
||||||
links: [SegmentUploadLink!]!
|
|
||||||
alreadyUploaded: [Int!]!
|
|
||||||
}
|
|
||||||
|
|
||||||
union UploadLinkBatchGetUploadLinkErrors = UploadLinkBatch | GetUploadLinkErrors
|
|
||||||
|
|
||||||
type HLSPlaylistGQL {
|
type HLSPlaylistGQL {
|
||||||
videoId: Int!
|
videoId: Int!
|
||||||
m3u8Text: String!
|
m3u8Text: String!
|
||||||
@@ -1308,6 +1295,12 @@ type SegmentAlreadyUploadedErr {
|
|||||||
segmentId: Int!
|
segmentId: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SegmentUploadLink {
|
||||||
|
segmentIndex: Int!
|
||||||
|
uploadUrl: String!
|
||||||
|
headers: [Header]!
|
||||||
|
}
|
||||||
|
|
||||||
type SerializedShotPathsGQL {
|
type SerializedShotPathsGQL {
|
||||||
b64EncodedBuffer: String
|
b64EncodedBuffer: String
|
||||||
}
|
}
|
||||||
@@ -1794,6 +1787,13 @@ type UploadLink {
|
|||||||
headers: [Header]!
|
headers: [Header]!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type UploadLinkBatch {
|
||||||
|
links: [SegmentUploadLink!]!
|
||||||
|
alreadyUploaded: [Int!]!
|
||||||
|
}
|
||||||
|
|
||||||
|
union UploadLinkBatchGetUploadLinkErrors = UploadLinkBatch | GetUploadLinkErrors
|
||||||
|
|
||||||
union UploadLinkGetProfileUploadLinkErrors =
|
union UploadLinkGetProfileUploadLinkErrors =
|
||||||
UploadLink
|
UploadLink
|
||||||
| GetProfileUploadLinkErrors
|
| GetProfileUploadLinkErrors
|
||||||
@@ -1923,7 +1923,7 @@ type VideoExportJobGQL {
|
|||||||
shotIds: [Int!]
|
shotIds: [Int!]
|
||||||
runId: Int
|
runId: Int
|
||||||
downloadUrl: String
|
downloadUrl: String
|
||||||
fileSizeBytes: Int
|
fileSizeBytes: BigInt
|
||||||
expiresAt: DateTime
|
expiresAt: DateTime
|
||||||
createdAt: DateTime
|
createdAt: DateTime
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user