|
|
|
@@ -2420,6 +2420,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 +2529,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"];
|
|
|
|
@@ -7103,6 +7108,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"];
|
|
|
|
}>;
|
|
|
|
}>;
|
|
|
|
@@ -15187,6 +15201,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) {
|
|
|
|
|