feat(tip): add coffee tipping page

This commit is contained in:
2026-07-08 19:21:42 +08:00
parent c1aba64573
commit cb7791dd8d
14 changed files with 1224 additions and 4 deletions
@@ -9,7 +9,7 @@ import { StorageKeys } from "../storage_keys";
const PendingPaymentOrderSchema = z.object({
orderId: z.string().min(1),
payChannel: z.literal("ezpay"),
subscriptionType: z.enum(["vip", "topup"]),
subscriptionType: z.enum(["vip", "topup", "tip"]),
returnTo: z.enum(["chat"]).optional(),
createdAt: z.number(),
});