From 04f1bb4d744721572bb8608f91b5e77075dad188 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 6 Jul 2025 16:20:31 -0600 Subject: [PATCH] Remove email param from ensureStripeCustomerExists --- src/index.tsx | 4 ---- src/schema.gql | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index cf43e9a..06ba72c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2353,10 +2353,6 @@ export type MutationEditUserArgs = { input: EditUserInputGql; }; -export type MutationEnsureStripeCustomerExistsArgs = { - email: Scalars["String"]["input"]; -}; - export type MutationFindPrerecordTableLayoutArgs = { b64Image: Scalars["String"]["input"]; videoId: Scalars["Int"]["input"]; diff --git a/src/schema.gql b/src/schema.gql index 6b4db05..b1ac1ad 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -879,7 +879,7 @@ type Mutation { followUser(followedUserId: Int!): UserGQL! unfollowUser(followedUserId: Int!): UserGQL! retireTags(tagIds: [Int!]!): Boolean! - ensureStripeCustomerExists(email: String!): UserGQL! + ensureStripeCustomerExists: UserGQL! findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL createUploadStream( videoMetadata: VideoMetadataInput!