feat(core): pricing plans ai subscription ui (#6449)

This commit is contained in:
CatsJuice
2024-04-03 08:04:30 +00:00
parent e7de20f648
commit 3e9e2ce93b
24 changed files with 999 additions and 246 deletions

View File

@@ -173,6 +173,7 @@ export type AllBlobSizesQuery = {
export type CancelSubscriptionMutationVariables = Exact<{
idempotencyKey: Scalars['String']['input'];
plan?: InputMaybe<SubscriptionPlan>;
}>;
export type CancelSubscriptionMutation = {
@@ -619,6 +620,7 @@ export type RemoveAvatarMutation = {
export type ResumeSubscriptionMutationVariables = Exact<{
idempotencyKey: Scalars['String']['input'];
plan?: InputMaybe<SubscriptionPlan>;
}>;
export type ResumeSubscriptionMutation = {
@@ -758,8 +760,9 @@ export type SubscriptionQuery = {
};
export type UpdateSubscriptionMutationVariables = Exact<{
recurring: SubscriptionRecurring;
idempotencyKey: Scalars['String']['input'];
plan?: InputMaybe<SubscriptionPlan>;
recurring: SubscriptionRecurring;
}>;
export type UpdateSubscriptionMutation = {