mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
feat(core): onetime subscription ui (#8462)
This commit is contained in:
@@ -1037,6 +1037,7 @@ query subscription {
|
||||
end
|
||||
nextBillAt
|
||||
canceledAt
|
||||
variant
|
||||
}
|
||||
}
|
||||
}`,
|
||||
|
||||
@@ -10,6 +10,7 @@ query subscription {
|
||||
end
|
||||
nextBillAt
|
||||
canceledAt
|
||||
variant
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1141,6 +1141,7 @@ export interface UserSubscription {
|
||||
trialEnd: Maybe<Scalars['DateTime']['output']>;
|
||||
trialStart: Maybe<Scalars['DateTime']['output']>;
|
||||
updatedAt: Scalars['DateTime']['output'];
|
||||
variant: Maybe<SubscriptionVariant>;
|
||||
}
|
||||
|
||||
export interface UserType {
|
||||
@@ -2210,6 +2211,7 @@ export type SubscriptionQuery = {
|
||||
end: string | null;
|
||||
nextBillAt: string | null;
|
||||
canceledAt: string | null;
|
||||
variant: SubscriptionVariant | null;
|
||||
}>;
|
||||
} | null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user