From 3f16310f67b339dde737d05a6a9e317782fd97f4 Mon Sep 17 00:00:00 2001 From: Loewy Date: Thu, 15 Feb 2024 15:45:38 -0800 Subject: [PATCH] wip: add videoName, gameType & tableSize --- .gitignore | 3 +++ src/index.tsx | 3 +++ src/schema.gql | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c635ab3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules +dist +.direnv \ No newline at end of file diff --git a/src/index.tsx b/src/index.tsx index 88fde05..1717388 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -151,7 +151,10 @@ export type MutationGetUploadLinkArgs = { export type MutationTerminateUploadStreamArgs = { + gameType?: InputMaybe; + tableSize?: InputMaybe; videoId: Scalars['Int']['input']; + videoName?: InputMaybe; }; export type OrFilter = { diff --git a/src/schema.gql b/src/schema.gql index b8af6d8..d47ef89 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -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 {