diff --git a/src/index.tsx b/src/index.tsx index 3ce331b..8e90715 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2143,6 +2143,7 @@ export type Mutation = { addAnnotationToShot: AddShotAnnotationReturn; createBucketSet: BucketSetGql; createUploadStream: CreateUploadStreamReturn; + deleteTags: Scalars["Boolean"]["output"]; deleteVideo: Scalars["Boolean"]["output"]; editProfileImageUri: UserGql; editShot: EditShotReturn; @@ -2174,6 +2175,11 @@ export type MutationCreateUploadStreamArgs = { videoMetadata: VideoMetadataInput; }; +export type MutationDeleteTagsArgs = { + tagsToDelete: Array; + videoId: Scalars["Int"]["input"]; +}; + export type MutationDeleteVideoArgs = { videoId: Scalars["Int"]["input"]; }; diff --git a/src/schema.gql b/src/schema.gql index 8174eff..5e47c9d 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -799,6 +799,7 @@ type Mutation { ): Boolean! editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean! deleteVideo(videoId: Int!): Boolean! + deleteTags(videoId: Int!, tagsToDelete: [VideoTagInput!]!): Boolean! } input CreateBucketSetInput {