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..1df9b6e 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 = { @@ -389,6 +392,9 @@ export type GetUploadLinkMutation = { __typename?: 'Mutation', getUploadLink: { export type TerminateUploadStreamMutationVariables = Exact<{ videoId: Scalars['Int']['input']; + videoName?: InputMaybe; + gameType?: InputMaybe; + tableSize?: InputMaybe; }>; @@ -591,8 +597,13 @@ export type GetUploadLinkMutationHookResult = ReturnType; export type GetUploadLinkMutationOptions = Apollo.BaseMutationOptions; 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; @@ -611,6 +622,9 @@ export type TerminateUploadStreamMutationFn = Apollo.MutationFunction