wip: add videoName, gameType & tableSize

This commit is contained in:
Loewy 2024-02-15 15:45:38 -08:00
parent 204e289627
commit 3f16310f67
3 changed files with 7 additions and 1 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
node_modules
dist
.direnv

View File

@ -151,7 +151,10 @@ export type MutationGetUploadLinkArgs = {
export type MutationTerminateUploadStreamArgs = { export type MutationTerminateUploadStreamArgs = {
gameType?: InputMaybe<Scalars['String']['input']>;
tableSize?: InputMaybe<Scalars['String']['input']>;
videoId: Scalars['Int']['input']; videoId: Scalars['Int']['input'];
videoName?: InputMaybe<Scalars['String']['input']>;
}; };
export type OrFilter = { export type OrFilter = {

View File

@ -228,7 +228,7 @@ type Mutation {
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL! createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
createUploadStream(uploadMetadata: UploadMetadataInput, videoName: String = null): CreateUploadStreamReturn! createUploadStream(uploadMetadata: UploadMetadataInput, videoName: String = null): CreateUploadStreamReturn!
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn! 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 { input CreateBucketSetInput {