TerminateUploadStream -- add fields #3
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
dist
|
||||
.direnv
|
@ -151,7 +151,10 @@ export type MutationGetUploadLinkArgs = {
|
||||
|
||||
|
||||
export type MutationTerminateUploadStreamArgs = {
|
||||
gameType?: InputMaybe<Scalars['String']['input']>;
|
||||
tableSize?: InputMaybe<Scalars['String']['input']>;
|
||||
videoId: Scalars['Int']['input'];
|
||||
videoName?: InputMaybe<Scalars['String']['input']>;
|
||||
};
|
||||
|
||||
export type OrFilter = {
|
||||
@ -389,6 +392,9 @@ export type GetUploadLinkMutation = { __typename?: 'Mutation', getUploadLink: {
|
||||
|
||||
export type TerminateUploadStreamMutationVariables = Exact<{
|
||||
videoId: Scalars['Int']['input'];
|
||||
videoName?: InputMaybe<Scalars['String']['input']>;
|
||||
gameType?: InputMaybe<Scalars['String']['input']>;
|
||||
tableSize?: InputMaybe<Scalars['String']['input']>;
|
||||
}>;
|
||||
|
||||
|
||||
@ -591,8 +597,13 @@ export type GetUploadLinkMutationHookResult = ReturnType<typeof useGetUploadLink
|
||||
export type GetUploadLinkMutationResult = Apollo.MutationResult<GetUploadLinkMutation>;
|
||||
export type GetUploadLinkMutationOptions = Apollo.BaseMutationOptions<GetUploadLinkMutation, GetUploadLinkMutationVariables>;
|
||||
export const TerminateUploadStreamDocument = gql`
|
||||
mutation TerminateUploadStream($videoId: Int!) {
|
||||
terminateUploadStream(videoId: $videoId)
|
||||
mutation TerminateUploadStream($videoId: Int!, $videoName: String, $gameType: String, $tableSize: String) {
|
||||
terminateUploadStream(
|
||||
videoId: $videoId
|
||||
videoName: $videoName
|
||||
gameType: $gameType
|
||||
tableSize: $tableSize
|
||||
)
|
||||
}
|
||||
`;
|
||||
export type TerminateUploadStreamMutationFn = Apollo.MutationFunction<TerminateUploadStreamMutation, TerminateUploadStreamMutationVariables>;
|
||||
@ -611,6 +622,9 @@ export type TerminateUploadStreamMutationFn = Apollo.MutationFunction<TerminateU
|
||||
* const [terminateUploadStreamMutation, { data, loading, error }] = useTerminateUploadStreamMutation({
|
||||
* variables: {
|
||||
* videoId: // value for 'videoId'
|
||||
* videoName: // value for 'videoName'
|
||||
* gameType: // value for 'gameType'
|
||||
* tableSize: // value for 'tableSize'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
@ -1,13 +1,13 @@
|
||||
mutation CreateUploadStream(
|
||||
$videoName: String!,
|
||||
$deviceType: DeviceTypeEnum,
|
||||
$osVersion: String,
|
||||
$appVersion: String,
|
||||
$browserName: String,
|
||||
$browserVersion: String,
|
||||
$locale: String,
|
||||
$timezone: String,
|
||||
$networkType: String,
|
||||
$videoName: String!
|
||||
$deviceType: DeviceTypeEnum
|
||||
$osVersion: String
|
||||
$appVersion: String
|
||||
$browserName: String
|
||||
$browserVersion: String
|
||||
$locale: String
|
||||
$timezone: String
|
||||
$networkType: String
|
||||
$ipAddress: String
|
||||
) {
|
||||
createUploadStream(
|
||||
@ -35,6 +35,16 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
|
||||
}
|
||||
}
|
||||
|
||||
mutation TerminateUploadStream($videoId: Int!) {
|
||||
terminateUploadStream(videoId: $videoId)
|
||||
mutation TerminateUploadStream(
|
||||
$videoId: Int!
|
||||
$videoName: String
|
||||
$gameType: String
|
||||
$tableSize: String
|
||||
) {
|
||||
terminateUploadStream(
|
||||
videoId: $videoId
|
||||
videoName: $videoName
|
||||
gameType: $gameType
|
||||
tableSize: $tableSize
|
||||
)
|
||||
}
|
||||
|
@ -228,7 +228,7 @@ type Mutation {
|
||||
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
||||
createUploadStream(uploadMetadata: UploadMetadataInput, videoName: String = null): CreateUploadStreamReturn!
|
||||
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
||||
terminateUploadStream(videoId: Int!): Boolean!
|
||||
terminateUploadStream(videoId: Int!, videoName: String = null, gameType: String = null, tableSize: String = null): Boolean!
|
||||
}
|
||||
|
||||
input CreateBucketSetInput {
|
||||
|
Loading…
Reference in New Issue
Block a user