Add ensureStripeCustomerExists to schema #188
@ -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"];
|
||||
|
@ -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!
|
||||
|
Loading…
x
Reference in New Issue
Block a user