diff --git a/src/index.tsx b/src/index.tsx index 246f3a0..f5686d8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2275,6 +2275,7 @@ export type Mutation = { createUploadStream: CreateUploadStreamReturn; deleteComment: Scalars["Boolean"]["output"]; deleteTags: Scalars["Boolean"]["output"]; + deleteUser: Scalars["Boolean"]["output"]; deleteVideo: Scalars["Boolean"]["output"]; editComment: Scalars["Boolean"]["output"]; editProfileImageUri: UserGql; diff --git a/src/schema.gql b/src/schema.gql index 1e1acea..bdc8e73 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -906,6 +906,7 @@ type Mutation { unfollowUser(followedUserId: Int!): UserGQL! retireTags(tagIds: [Int!]!): Boolean! ensureStripeCustomerExists: UserGQL! + deleteUser: Boolean! findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL createUploadStream( videoMetadata: VideoMetadataInput!