Compare commits
1 Commits
f12d2c5a1b
...
add-upload
| Author | SHA1 | Date | |
|---|---|---|---|
| 6bcf9a2487 |
@@ -331,7 +331,6 @@ export type EditableShotFieldInputGql = {
|
|||||||
export enum EntitlementSourceTypeEnum {
|
export enum EntitlementSourceTypeEnum {
|
||||||
Admin = "ADMIN",
|
Admin = "ADMIN",
|
||||||
AlphaLegacy = "ALPHA_LEGACY",
|
AlphaLegacy = "ALPHA_LEGACY",
|
||||||
Apple = "APPLE",
|
|
||||||
Manual = "MANUAL",
|
Manual = "MANUAL",
|
||||||
Stripe = "STRIPE",
|
Stripe = "STRIPE",
|
||||||
}
|
}
|
||||||
@@ -6897,8 +6896,10 @@ export type UploadStreamWithDetailsFragment = {
|
|||||||
startTime?: any | null;
|
startTime?: any | null;
|
||||||
stream?: {
|
stream?: {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
|
id: string;
|
||||||
isCompleted: boolean;
|
isCompleted: boolean;
|
||||||
lastIntendedSegmentBound?: number | null;
|
lastIntendedSegmentBound?: number | null;
|
||||||
|
streamSegmentType: StreamSegmentTypeEnum;
|
||||||
uploadCompletionCursor: number;
|
uploadCompletionCursor: number;
|
||||||
uploadsCompleted: number;
|
uploadsCompleted: number;
|
||||||
} | null;
|
} | null;
|
||||||
@@ -6921,8 +6922,10 @@ export type GetUploadStreamsWithDetailsQuery = {
|
|||||||
startTime?: any | null;
|
startTime?: any | null;
|
||||||
stream?: {
|
stream?: {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
|
id: string;
|
||||||
isCompleted: boolean;
|
isCompleted: boolean;
|
||||||
lastIntendedSegmentBound?: number | null;
|
lastIntendedSegmentBound?: number | null;
|
||||||
|
streamSegmentType: StreamSegmentTypeEnum;
|
||||||
uploadCompletionCursor: number;
|
uploadCompletionCursor: number;
|
||||||
uploadsCompleted: number;
|
uploadsCompleted: number;
|
||||||
} | null;
|
} | null;
|
||||||
@@ -7310,8 +7313,10 @@ export const UploadStreamWithDetailsFragmentDoc = gql`
|
|||||||
name
|
name
|
||||||
startTime
|
startTime
|
||||||
stream {
|
stream {
|
||||||
|
id
|
||||||
isCompleted
|
isCompleted
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
|
streamSegmentType
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
uploadsCompleted
|
uploadsCompleted
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -113,8 +113,10 @@ fragment UploadStreamWithDetails on VideoGQL {
|
|||||||
name
|
name
|
||||||
startTime
|
startTime
|
||||||
stream {
|
stream {
|
||||||
|
id
|
||||||
isCompleted
|
isCompleted
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
|
streamSegmentType
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
uploadsCompleted
|
uploadsCompleted
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1020,7 +1020,6 @@ enum EntitlementSourceTypeEnum {
|
|||||||
ADMIN
|
ADMIN
|
||||||
MANUAL
|
MANUAL
|
||||||
STRIPE
|
STRIPE
|
||||||
APPLE
|
|
||||||
ALPHA_LEGACY
|
ALPHA_LEGACY
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user