Add chat gifts and relationship diary UI
Docker Image / Quality and Bundle Budgets (push) Successful in 3s
Docker Image / Build and Push Docker Image (push) Successful in 1m52s

This commit is contained in:
Codex
2026-07-21 17:41:18 +08:00
parent b59422772f
commit abb6e4235f
54 changed files with 1950 additions and 69 deletions
+3
View File
@@ -1,6 +1,7 @@
/** Context shared by the default and Tip payment catalogs. */
import type {
GiftCategory,
GiftOffer,
GiftProduct,
PayChannel,
PaymentOrderStatus,
@@ -14,6 +15,7 @@ export interface PaymentState {
planCatalog: PaymentPlanCatalog;
plans: readonly PaymentPlan[];
giftCategories: readonly GiftCategory[];
giftOffer: GiftOffer | null;
giftProducts: readonly GiftProduct[];
giftCharacterId: string | null;
selectedGiftCategory: string | null;
@@ -39,6 +41,7 @@ export const initialState: PaymentState = {
planCatalog: "default",
plans: [],
giftCategories: [],
giftOffer: null,
giftProducts: [],
giftCharacterId: null,
selectedGiftCategory: null,