Compare commits
No commits in common. "80f609b8a2fe2121ef86014874fb50c6acaa655a" and "12f7e1f1155f2c9b10985c895c68cfa08813f47a" have entirely different histories.
80f609b8a2
...
12f7e1f115
@ -1686,17 +1686,6 @@ export type GetHlsInitUploadLinkMutation = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SetSegmentDurationMutationVariables = Exact<{
|
|
||||||
videoId: Scalars["Int"]["input"];
|
|
||||||
segmentId: Scalars["Int"]["input"];
|
|
||||||
duration: Scalars["Float"]["input"];
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type SetSegmentDurationMutation = {
|
|
||||||
__typename?: "Mutation";
|
|
||||||
setSegmentDuration: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type EditUploadStreamMutationVariables = Exact<{
|
export type EditUploadStreamMutationVariables = Exact<{
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
videoMetadataInput: VideoMetadataInput;
|
videoMetadataInput: VideoMetadataInput;
|
||||||
@ -3516,64 +3505,6 @@ export type GetHlsInitUploadLinkMutationOptions = Apollo.BaseMutationOptions<
|
|||||||
GetHlsInitUploadLinkMutation,
|
GetHlsInitUploadLinkMutation,
|
||||||
GetHlsInitUploadLinkMutationVariables
|
GetHlsInitUploadLinkMutationVariables
|
||||||
>;
|
>;
|
||||||
export const SetSegmentDurationDocument = gql`
|
|
||||||
mutation SetSegmentDuration(
|
|
||||||
$videoId: Int!
|
|
||||||
$segmentId: Int!
|
|
||||||
$duration: Float!
|
|
||||||
) {
|
|
||||||
setSegmentDuration(
|
|
||||||
videoId: $videoId
|
|
||||||
segmentId: $segmentId
|
|
||||||
duration: $duration
|
|
||||||
)
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
export type SetSegmentDurationMutationFn = Apollo.MutationFunction<
|
|
||||||
SetSegmentDurationMutation,
|
|
||||||
SetSegmentDurationMutationVariables
|
|
||||||
>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useSetSegmentDurationMutation__
|
|
||||||
*
|
|
||||||
* To run a mutation, you first call `useSetSegmentDurationMutation` within a React component and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useSetSegmentDurationMutation` 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 [setSegmentDurationMutation, { data, loading, error }] = useSetSegmentDurationMutation({
|
|
||||||
* variables: {
|
|
||||||
* videoId: // value for 'videoId'
|
|
||||||
* segmentId: // value for 'segmentId'
|
|
||||||
* duration: // value for 'duration'
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useSetSegmentDurationMutation(
|
|
||||||
baseOptions?: Apollo.MutationHookOptions<
|
|
||||||
SetSegmentDurationMutation,
|
|
||||||
SetSegmentDurationMutationVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useMutation<
|
|
||||||
SetSegmentDurationMutation,
|
|
||||||
SetSegmentDurationMutationVariables
|
|
||||||
>(SetSegmentDurationDocument, options);
|
|
||||||
}
|
|
||||||
export type SetSegmentDurationMutationHookResult = ReturnType<
|
|
||||||
typeof useSetSegmentDurationMutation
|
|
||||||
>;
|
|
||||||
export type SetSegmentDurationMutationResult =
|
|
||||||
Apollo.MutationResult<SetSegmentDurationMutation>;
|
|
||||||
export type SetSegmentDurationMutationOptions = Apollo.BaseMutationOptions<
|
|
||||||
SetSegmentDurationMutation,
|
|
||||||
SetSegmentDurationMutationVariables
|
|
||||||
>;
|
|
||||||
export const EditUploadStreamDocument = gql`
|
export const EditUploadStreamDocument = gql`
|
||||||
mutation EditUploadStream(
|
mutation EditUploadStream(
|
||||||
$videoId: Int!
|
$videoId: Int!
|
||||||
|
@ -24,18 +24,6 @@ mutation GetHlsInitUploadLink($videoId: Int!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutation SetSegmentDuration(
|
|
||||||
$videoId: Int!
|
|
||||||
$segmentId: Int!
|
|
||||||
$duration: Float!
|
|
||||||
) {
|
|
||||||
setSegmentDuration(
|
|
||||||
videoId: $videoId
|
|
||||||
segmentId: $segmentId
|
|
||||||
duration: $duration
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
mutation EditUploadStream(
|
mutation EditUploadStream(
|
||||||
$videoId: Int!
|
$videoId: Int!
|
||||||
$videoMetadataInput: VideoMetadataInput!
|
$videoMetadataInput: VideoMetadataInput!
|
||||||
|
Loading…
Reference in New Issue
Block a user