Add ensureStripeCustomerExists to schema #188

Merged
colonelpanic merged 2 commits from loewy/get-stripe-customer-mutation into master 2025-07-04 12:06:48 -06:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit c0636a8863 - Show all commits

View File

@ -2281,11 +2281,11 @@ export type Mutation = {
editShot: EditShotReturn;
editUploadStream: Scalars["Boolean"]["output"];
editUser: UserGql;
ensureStripeCustomerExists: UserGql;
findPrerecordTableLayout?: Maybe<HomographyInfoGql>;
followUser: UserGql;
getHlsInitUploadLink: GetUploadLinkReturn;
getProfileImageUploadLink: GetProfileUploadLinkReturn;
getStripeCustomer: UserGql;
getUploadLink: GetUploadLinkReturn;
reactToVideo: Scalars["Boolean"]["output"];
retireTags: Scalars["Boolean"]["output"];
@ -2353,6 +2353,10 @@ export type MutationEditUserArgs = {
input: EditUserInputGql;
};
export type MutationEnsureStripeCustomerExistsArgs = {
email: Scalars["String"]["input"];
};
export type MutationFindPrerecordTableLayoutArgs = {
b64Image: Scalars["String"]["input"];
videoId: Scalars["Int"]["input"];
@ -2370,10 +2374,6 @@ export type MutationGetProfileImageUploadLinkArgs = {
fileExt?: InputMaybe<Scalars["String"]["input"]>;
};
export type MutationGetStripeCustomerArgs = {
email: Scalars["String"]["input"];
};
export type MutationGetUploadLinkArgs = {
segmentIndex: Scalars["Int"]["input"];
videoId: Scalars["Int"]["input"];

View File

@ -879,7 +879,7 @@ type Mutation {
followUser(followedUserId: Int!): UserGQL!
unfollowUser(followedUserId: Int!): UserGQL!
retireTags(tagIds: [Int!]!): Boolean!
getStripeCustomer(email: String!): UserGQL!
ensureStripeCustomerExists(email: String!): UserGQL!
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
createUploadStream(
videoMetadata: VideoMetadataInput!