feat(core): believer subscription UI (#7431)

feat(core): switch ai and cloud plans position

feat(core): impl lifetime subscription ui

feat(core): adapt ui for lifetime status

feat(core): add believer card in billing page
This commit is contained in:
CatsJuice
2024-07-08 08:31:21 +00:00
parent 556956ced2
commit 13a2562282
43 changed files with 1048 additions and 439 deletions

View File

@@ -668,6 +668,7 @@ query prices {
currency
amount
yearlyAmount
lifetimeAmount
}
}`,
};

View File

@@ -5,5 +5,6 @@ query prices {
currency
amount
yearlyAmount
lifetimeAmount
}
}

View File

@@ -1765,6 +1765,7 @@ export type PricesQuery = {
currency: string;
amount: number | null;
yearlyAmount: number | null;
lifetimeAmount: number | null;
}>;
};