feat(payment): support user-bound seven-discount offers
Docker Image / Build and Push Docker Image (push) Successful in 1m55s

This commit is contained in:
Codex
2026-07-23 16:11:20 +08:00
parent 02f6964484
commit 4dae805a88
39 changed files with 418 additions and 28 deletions
+8
View File
@@ -66,6 +66,14 @@ export class ApiPath {
/** 获取已支付礼物订单的角色感谢文案 */
static readonly paymentTipMessage = apiContract.paymentTipMessage.path;
/** 接受角色发放的用户专属优惠 */
static paymentCommercialOfferAccept(offerId: string): string {
return apiContract.paymentCommercialOfferAccept.path.replace(
"{offerId}",
encodeURIComponent(offerId),
);
}
// ============ 聊天相关 ============
/** 发送消息 */
static readonly chatSend = apiContract.chatSend.path;