This commit is contained in:
@@ -2457,10 +2457,6 @@ export type MutationCreateChallengeArgs = {
|
||||
startDate: Scalars["DateTime"]["input"];
|
||||
};
|
||||
|
||||
export type MutationCreateCustomerPortalSessionArgs = {
|
||||
returnUrl?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
export type MutationCreateRuleSetArgs = {
|
||||
description?: InputMaybe<Scalars["String"]["input"]>;
|
||||
name: Scalars["String"]["input"];
|
||||
@@ -4712,7 +4708,7 @@ export type CreateSubscriptionMutation = {
|
||||
};
|
||||
|
||||
export type CreateCustomerPortalSessionMutationVariables = Exact<{
|
||||
returnUrl?: InputMaybe<Scalars["String"]["input"]>;
|
||||
[key: string]: never;
|
||||
}>;
|
||||
|
||||
export type CreateCustomerPortalSessionMutation = {
|
||||
@@ -9612,8 +9608,8 @@ export type CreateSubscriptionMutationOptions = Apollo.BaseMutationOptions<
|
||||
CreateSubscriptionMutationVariables
|
||||
>;
|
||||
export const CreateCustomerPortalSessionDocument = gql`
|
||||
mutation CreateCustomerPortalSession($returnUrl: String) {
|
||||
createCustomerPortalSession(returnUrl: $returnUrl) {
|
||||
mutation CreateCustomerPortalSession {
|
||||
createCustomerPortalSession {
|
||||
portalUrl
|
||||
}
|
||||
}
|
||||
@@ -9636,7 +9632,6 @@ export type CreateCustomerPortalSessionMutationFn = Apollo.MutationFunction<
|
||||
* @example
|
||||
* const [createCustomerPortalSessionMutation, { data, loading, error }] = useCreateCustomerPortalSessionMutation({
|
||||
* variables: {
|
||||
* returnUrl: // value for 'returnUrl'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
||||
@@ -20,8 +20,8 @@ mutation CreateSubscription($priceId: String!) {
|
||||
}
|
||||
}
|
||||
|
||||
mutation CreateCustomerPortalSession($returnUrl: String) {
|
||||
createCustomerPortalSession(returnUrl: $returnUrl) {
|
||||
mutation CreateCustomerPortalSession {
|
||||
createCustomerPortalSession {
|
||||
portalUrl
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1117,9 +1117,7 @@ type Mutation {
|
||||
ensureStripeCustomerExists: UserGQL!
|
||||
deleteUser: Boolean!
|
||||
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
||||
createCustomerPortalSession(
|
||||
returnUrl: String = null
|
||||
): CreateCustomerPortalSessionResultGQL!
|
||||
createCustomerPortalSession: CreateCustomerPortalSessionResultGQL!
|
||||
cancelSubscription: UserSubscriptionStatusGQL!
|
||||
grantManualEntitlement(
|
||||
userId: Int!
|
||||
|
||||
Reference in New Issue
Block a user