Compare commits
5 Commits
cc4ecaff5d
...
dean/expor
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b41365e99e | ||
|
|
0e8233a5d5 | ||
| b6adae4949 | |||
| 459e89d8b8 | |||
| fa2ff19572 |
105
src/index.tsx
105
src/index.tsx
@@ -300,6 +300,7 @@ export type DeployedConfigGql = {
|
|||||||
firebase: Scalars["Boolean"]["output"];
|
firebase: Scalars["Boolean"]["output"];
|
||||||
minimumAllowedAppVersion: Scalars["String"]["output"];
|
minimumAllowedAppVersion: Scalars["String"]["output"];
|
||||||
quotaEnforcementEnabled: Scalars["Boolean"]["output"];
|
quotaEnforcementEnabled: Scalars["Boolean"]["output"];
|
||||||
|
storageLimitEnforcementEnabled: Scalars["Boolean"]["output"];
|
||||||
subscriptionGatingEnabled: Scalars["Boolean"]["output"];
|
subscriptionGatingEnabled: Scalars["Boolean"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2287,7 +2288,7 @@ export type GetShotsResult = {
|
|||||||
|
|
||||||
export type GetUploadLinkErrors = {
|
export type GetUploadLinkErrors = {
|
||||||
__typename?: "GetUploadLinkErrors";
|
__typename?: "GetUploadLinkErrors";
|
||||||
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr;
|
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetUploadLinkReturn = {
|
export type GetUploadLinkReturn = {
|
||||||
@@ -2391,13 +2392,14 @@ export type MustHaveSetForUploadLinkErr = {
|
|||||||
resolution?: Maybe<Scalars["Boolean"]["output"]>;
|
resolution?: Maybe<Scalars["Boolean"]["output"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr =
|
export type MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr =
|
||||||
|
|
||||||
| InitUploadAlreadyCompletedErr
|
| InitUploadAlreadyCompletedErr
|
||||||
| MustHaveSetForUploadLinkErr
|
| MustHaveSetForUploadLinkErr
|
||||||
| NoInitForChunkedUploadErr
|
| NoInitForChunkedUploadErr
|
||||||
| ProcessingFailedErr
|
| ProcessingFailedErr
|
||||||
| SegmentAlreadyUploadedErr
|
| SegmentAlreadyUploadedErr
|
||||||
|
| StorageLimitExceededErr
|
||||||
| TooManyInitUploadsErr
|
| TooManyInitUploadsErr
|
||||||
| TooManyProfileImageUploadsErr;
|
| TooManyProfileImageUploadsErr;
|
||||||
|
|
||||||
@@ -2420,6 +2422,7 @@ export type Mutation = {
|
|||||||
deleteUser: Scalars["Boolean"]["output"];
|
deleteUser: Scalars["Boolean"]["output"];
|
||||||
deleteVideo: Scalars["Boolean"]["output"];
|
deleteVideo: Scalars["Boolean"]["output"];
|
||||||
dismissChallenge: Scalars["Boolean"]["output"];
|
dismissChallenge: Scalars["Boolean"]["output"];
|
||||||
|
dismissVideoExport: Scalars["Boolean"]["output"];
|
||||||
editComment: Scalars["Boolean"]["output"];
|
editComment: Scalars["Boolean"]["output"];
|
||||||
editProfileImageUri: UserGql;
|
editProfileImageUri: UserGql;
|
||||||
editShot: EditShotReturn;
|
editShot: EditShotReturn;
|
||||||
@@ -2528,6 +2531,10 @@ export type MutationDismissChallengeArgs = {
|
|||||||
challengeId: Scalars["ID"]["input"];
|
challengeId: Scalars["ID"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type MutationDismissVideoExportArgs = {
|
||||||
|
jobId: Scalars["Int"]["input"];
|
||||||
|
};
|
||||||
|
|
||||||
export type MutationEditCommentArgs = {
|
export type MutationEditCommentArgs = {
|
||||||
commentId: Scalars["Int"]["input"];
|
commentId: Scalars["Int"]["input"];
|
||||||
newMessage: Scalars["String"]["input"];
|
newMessage: Scalars["String"]["input"];
|
||||||
@@ -3410,6 +3417,15 @@ export enum SpinTypeEnum {
|
|||||||
Unknown = "UNKNOWN",
|
Unknown = "UNKNOWN",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type StorageLimitExceededErr = {
|
||||||
|
__typename?: "StorageLimitExceededErr";
|
||||||
|
reason: Scalars["String"]["output"];
|
||||||
|
remainingStorageBytes?: Maybe<Scalars["BigInt"]["output"]>;
|
||||||
|
retainedStorageLimitBytes?: Maybe<Scalars["BigInt"]["output"]>;
|
||||||
|
retainedStorageUsedBytes: Scalars["BigInt"]["output"];
|
||||||
|
tierName: Scalars["String"]["output"];
|
||||||
|
};
|
||||||
|
|
||||||
export type StorageStatusGql = {
|
export type StorageStatusGql = {
|
||||||
__typename?: "StorageStatusGQL";
|
__typename?: "StorageStatusGQL";
|
||||||
isNearLimit: Scalars["Boolean"]["output"];
|
isNearLimit: Scalars["Boolean"]["output"];
|
||||||
@@ -3684,6 +3700,8 @@ export type VideoExportJobGql = {
|
|||||||
shotIds?: Maybe<Array<Scalars["Int"]["output"]>>;
|
shotIds?: Maybe<Array<Scalars["Int"]["output"]>>;
|
||||||
status: VideoExportStatusEnum;
|
status: VideoExportStatusEnum;
|
||||||
videoId: Scalars["Int"]["output"];
|
videoId: Scalars["Int"]["output"];
|
||||||
|
videoName?: Maybe<Scalars["String"]["output"]>;
|
||||||
|
videoThumbnailUri?: Maybe<Scalars["String"]["output"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export enum VideoExportModeEnum {
|
export enum VideoExportModeEnum {
|
||||||
@@ -7074,6 +7092,8 @@ export type VideoExportJobFieldsFragment = {
|
|||||||
videoId: number;
|
videoId: number;
|
||||||
mode: VideoExportModeEnum;
|
mode: VideoExportModeEnum;
|
||||||
status: VideoExportStatusEnum;
|
status: VideoExportStatusEnum;
|
||||||
|
videoName?: string | null;
|
||||||
|
videoThumbnailUri?: string | null;
|
||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
@@ -7094,6 +7114,8 @@ export type RequestVideoExportMutation = {
|
|||||||
videoId: number;
|
videoId: number;
|
||||||
mode: VideoExportModeEnum;
|
mode: VideoExportModeEnum;
|
||||||
status: VideoExportStatusEnum;
|
status: VideoExportStatusEnum;
|
||||||
|
videoName?: string | null;
|
||||||
|
videoThumbnailUri?: string | null;
|
||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
@@ -7103,6 +7125,15 @@ export type RequestVideoExportMutation = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type DismissVideoExportMutationVariables = Exact<{
|
||||||
|
jobId: Scalars["Int"]["input"];
|
||||||
|
}>;
|
||||||
|
|
||||||
|
export type DismissVideoExportMutation = {
|
||||||
|
__typename?: "Mutation";
|
||||||
|
dismissVideoExport: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
export type VideoExportJobQueryVariables = Exact<{
|
export type VideoExportJobQueryVariables = Exact<{
|
||||||
jobId: Scalars["Int"]["input"];
|
jobId: Scalars["Int"]["input"];
|
||||||
}>;
|
}>;
|
||||||
@@ -7115,6 +7146,8 @@ export type VideoExportJobQuery = {
|
|||||||
videoId: number;
|
videoId: number;
|
||||||
mode: VideoExportModeEnum;
|
mode: VideoExportModeEnum;
|
||||||
status: VideoExportStatusEnum;
|
status: VideoExportStatusEnum;
|
||||||
|
videoName?: string | null;
|
||||||
|
videoThumbnailUri?: string | null;
|
||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
@@ -7137,6 +7170,8 @@ export type MyVideoExportsQuery = {
|
|||||||
videoId: number;
|
videoId: number;
|
||||||
mode: VideoExportModeEnum;
|
mode: VideoExportModeEnum;
|
||||||
status: VideoExportStatusEnum;
|
status: VideoExportStatusEnum;
|
||||||
|
videoName?: string | null;
|
||||||
|
videoThumbnailUri?: string | null;
|
||||||
shotIds?: Array<number> | null;
|
shotIds?: Array<number> | null;
|
||||||
runId?: number | null;
|
runId?: number | null;
|
||||||
downloadUrl?: string | null;
|
downloadUrl?: string | null;
|
||||||
@@ -7191,6 +7226,7 @@ export type GetUploadLinkMutation = {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
| { __typename?: "SegmentAlreadyUploadedErr"; segmentId: number }
|
| { __typename?: "SegmentAlreadyUploadedErr"; segmentId: number }
|
||||||
|
| { __typename?: "StorageLimitExceededErr" }
|
||||||
| { __typename?: "TooManyInitUploadsErr" }
|
| { __typename?: "TooManyInitUploadsErr" }
|
||||||
| { __typename?: "TooManyProfileImageUploadsErr" };
|
| { __typename?: "TooManyProfileImageUploadsErr" };
|
||||||
}
|
}
|
||||||
@@ -7233,6 +7269,14 @@ export type GetHlsInitUploadLinkMutation = {
|
|||||||
}
|
}
|
||||||
| { __typename?: "ProcessingFailedErr" }
|
| { __typename?: "ProcessingFailedErr" }
|
||||||
| { __typename?: "SegmentAlreadyUploadedErr" }
|
| { __typename?: "SegmentAlreadyUploadedErr" }
|
||||||
|
| {
|
||||||
|
__typename?: "StorageLimitExceededErr";
|
||||||
|
reason: string;
|
||||||
|
tierName: string;
|
||||||
|
retainedStorageUsedBytes: any;
|
||||||
|
retainedStorageLimitBytes?: any | null;
|
||||||
|
remainingStorageBytes?: any | null;
|
||||||
|
}
|
||||||
| { __typename?: "TooManyInitUploadsErr"; linksRequested: number }
|
| { __typename?: "TooManyInitUploadsErr"; linksRequested: number }
|
||||||
| { __typename?: "TooManyProfileImageUploadsErr" };
|
| { __typename?: "TooManyProfileImageUploadsErr" };
|
||||||
}
|
}
|
||||||
@@ -7717,6 +7761,8 @@ export const VideoExportJobFieldsFragmentDoc = gql`
|
|||||||
videoId
|
videoId
|
||||||
mode
|
mode
|
||||||
status
|
status
|
||||||
|
videoName
|
||||||
|
videoThumbnailUri
|
||||||
shotIds
|
shotIds
|
||||||
runId
|
runId
|
||||||
downloadUrl
|
downloadUrl
|
||||||
@@ -15187,6 +15233,54 @@ export type RequestVideoExportMutationOptions = Apollo.BaseMutationOptions<
|
|||||||
RequestVideoExportMutation,
|
RequestVideoExportMutation,
|
||||||
RequestVideoExportMutationVariables
|
RequestVideoExportMutationVariables
|
||||||
>;
|
>;
|
||||||
|
export const DismissVideoExportDocument = gql`
|
||||||
|
mutation DismissVideoExport($jobId: Int!) {
|
||||||
|
dismissVideoExport(jobId: $jobId)
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
export type DismissVideoExportMutationFn = Apollo.MutationFunction<
|
||||||
|
DismissVideoExportMutation,
|
||||||
|
DismissVideoExportMutationVariables
|
||||||
|
>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* __useDismissVideoExportMutation__
|
||||||
|
*
|
||||||
|
* To run a mutation, you first call `useDismissVideoExportMutation` within a React component and pass it any options that fit your needs.
|
||||||
|
* When your component renders, `useDismissVideoExportMutation` returns a tuple that includes:
|
||||||
|
* - A mutate function that you can call at any time to execute the mutation
|
||||||
|
* - An object with fields that represent the current status of the mutation's execution
|
||||||
|
*
|
||||||
|
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const [dismissVideoExportMutation, { data, loading, error }] = useDismissVideoExportMutation({
|
||||||
|
* variables: {
|
||||||
|
* jobId: // value for 'jobId'
|
||||||
|
* },
|
||||||
|
* });
|
||||||
|
*/
|
||||||
|
export function useDismissVideoExportMutation(
|
||||||
|
baseOptions?: Apollo.MutationHookOptions<
|
||||||
|
DismissVideoExportMutation,
|
||||||
|
DismissVideoExportMutationVariables
|
||||||
|
>,
|
||||||
|
) {
|
||||||
|
const options = { ...defaultOptions, ...baseOptions };
|
||||||
|
return Apollo.useMutation<
|
||||||
|
DismissVideoExportMutation,
|
||||||
|
DismissVideoExportMutationVariables
|
||||||
|
>(DismissVideoExportDocument, options);
|
||||||
|
}
|
||||||
|
export type DismissVideoExportMutationHookResult = ReturnType<
|
||||||
|
typeof useDismissVideoExportMutation
|
||||||
|
>;
|
||||||
|
export type DismissVideoExportMutationResult =
|
||||||
|
Apollo.MutationResult<DismissVideoExportMutation>;
|
||||||
|
export type DismissVideoExportMutationOptions = Apollo.BaseMutationOptions<
|
||||||
|
DismissVideoExportMutation,
|
||||||
|
DismissVideoExportMutationVariables
|
||||||
|
>;
|
||||||
export const VideoExportJobDocument = gql`
|
export const VideoExportJobDocument = gql`
|
||||||
query VideoExportJob($jobId: Int!) {
|
query VideoExportJob($jobId: Int!) {
|
||||||
videoExportJob(jobId: $jobId) {
|
videoExportJob(jobId: $jobId) {
|
||||||
@@ -15496,6 +15590,13 @@ export const GetHlsInitUploadLinkDocument = gql`
|
|||||||
... on TooManyInitUploadsErr {
|
... on TooManyInitUploadsErr {
|
||||||
linksRequested
|
linksRequested
|
||||||
}
|
}
|
||||||
|
... on StorageLimitExceededErr {
|
||||||
|
reason
|
||||||
|
tierName
|
||||||
|
retainedStorageUsedBytes
|
||||||
|
retainedStorageLimitBytes
|
||||||
|
remainingStorageBytes
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ fragment VideoExportJobFields on VideoExportJobGQL {
|
|||||||
videoId
|
videoId
|
||||||
mode
|
mode
|
||||||
status
|
status
|
||||||
|
videoName
|
||||||
|
videoThumbnailUri
|
||||||
shotIds
|
shotIds
|
||||||
runId
|
runId
|
||||||
downloadUrl
|
downloadUrl
|
||||||
@@ -17,6 +19,10 @@ mutation RequestVideoExport($input: RequestVideoExportInput!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mutation DismissVideoExport($jobId: Int!) {
|
||||||
|
dismissVideoExport(jobId: $jobId)
|
||||||
|
}
|
||||||
|
|
||||||
query VideoExportJob($jobId: Int!) {
|
query VideoExportJob($jobId: Int!) {
|
||||||
videoExportJob(jobId: $jobId) {
|
videoExportJob(jobId: $jobId) {
|
||||||
...VideoExportJobFields
|
...VideoExportJobFields
|
||||||
|
|||||||
@@ -67,6 +67,13 @@ mutation GetHlsInitUploadLink($videoId: Int!) {
|
|||||||
... on TooManyInitUploadsErr {
|
... on TooManyInitUploadsErr {
|
||||||
linksRequested
|
linksRequested
|
||||||
}
|
}
|
||||||
|
... on StorageLimitExceededErr {
|
||||||
|
reason
|
||||||
|
tierName
|
||||||
|
retainedStorageUsedBytes
|
||||||
|
retainedStorageLimitBytes
|
||||||
|
remainingStorageBytes
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -714,6 +714,7 @@ type DeployedConfigGQL {
|
|||||||
minimumAllowedAppVersion: String!
|
minimumAllowedAppVersion: String!
|
||||||
subscriptionGatingEnabled: Boolean!
|
subscriptionGatingEnabled: Boolean!
|
||||||
quotaEnforcementEnabled: Boolean!
|
quotaEnforcementEnabled: Boolean!
|
||||||
|
storageLimitEnforcementEnabled: Boolean!
|
||||||
bannerMessages: [BannerGQL!]!
|
bannerMessages: [BannerGQL!]!
|
||||||
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
|
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
|
||||||
bucketUrl: String!
|
bucketUrl: String!
|
||||||
@@ -1172,6 +1173,8 @@ type VideoExportJobGQL {
|
|||||||
videoId: Int!
|
videoId: Int!
|
||||||
mode: VideoExportModeEnum!
|
mode: VideoExportModeEnum!
|
||||||
status: VideoExportStatusEnum!
|
status: VideoExportStatusEnum!
|
||||||
|
videoName: String
|
||||||
|
videoThumbnailUri: String
|
||||||
shotIds: [Int!]
|
shotIds: [Int!]
|
||||||
runId: Int
|
runId: Int
|
||||||
downloadUrl: String
|
downloadUrl: String
|
||||||
@@ -1297,6 +1300,7 @@ type Mutation {
|
|||||||
metadata: CancellationFeedbackMetadataInput = null
|
metadata: CancellationFeedbackMetadataInput = null
|
||||||
): Boolean!
|
): Boolean!
|
||||||
requestVideoExport(input: RequestVideoExportInput!): VideoExportJobGQL!
|
requestVideoExport(input: RequestVideoExportInput!): VideoExportJobGQL!
|
||||||
|
dismissVideoExport(jobId: Int!): Boolean!
|
||||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
videoMetadata: VideoMetadataInput!
|
videoMetadata: VideoMetadataInput!
|
||||||
@@ -1525,10 +1529,10 @@ type GetUploadLinkReturn {
|
|||||||
union UploadLinkGetUploadLinkErrors = UploadLink | GetUploadLinkErrors
|
union UploadLinkGetUploadLinkErrors = UploadLink | GetUploadLinkErrors
|
||||||
|
|
||||||
type GetUploadLinkErrors {
|
type GetUploadLinkErrors {
|
||||||
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr!
|
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr!
|
||||||
}
|
}
|
||||||
|
|
||||||
union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr =
|
union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr =
|
||||||
MustHaveSetForUploadLinkErr
|
MustHaveSetForUploadLinkErr
|
||||||
| SegmentAlreadyUploadedErr
|
| SegmentAlreadyUploadedErr
|
||||||
| ProcessingFailedErr
|
| ProcessingFailedErr
|
||||||
@@ -1536,6 +1540,7 @@ union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoI
|
|||||||
| TooManyProfileImageUploadsErr
|
| TooManyProfileImageUploadsErr
|
||||||
| InitUploadAlreadyCompletedErr
|
| InitUploadAlreadyCompletedErr
|
||||||
| TooManyInitUploadsErr
|
| TooManyInitUploadsErr
|
||||||
|
| StorageLimitExceededErr
|
||||||
|
|
||||||
type MustHaveSetForUploadLinkErr {
|
type MustHaveSetForUploadLinkErr {
|
||||||
resolution: Boolean
|
resolution: Boolean
|
||||||
@@ -1561,3 +1566,11 @@ type InitUploadAlreadyCompletedErr {
|
|||||||
type TooManyInitUploadsErr {
|
type TooManyInitUploadsErr {
|
||||||
linksRequested: Int!
|
linksRequested: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type StorageLimitExceededErr {
|
||||||
|
reason: String!
|
||||||
|
tierName: String!
|
||||||
|
retainedStorageUsedBytes: BigInt!
|
||||||
|
retainedStorageLimitBytes: BigInt
|
||||||
|
remainingStorageBytes: BigInt
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user