Merge branch 'trunk' into feat/material-list-updat

This commit is contained in:
chashaobao
2025-09-20 18:28:53 +08:00
10 changed files with 310 additions and 34 deletions

11
src/types/coupon.ts Normal file
View File

@ -0,0 +1,11 @@
export type ClaimMembershipCouponResponse = {
code: string;
usedBefore: boolean;
usageExpireAt: string;
};
export type GenerateMembershipCouponResponse = {
code: string;
linkExpireAt: string;
shareUrl: string;
};