@be-link/ecommerce-promotion-service-node-sdk 0.1.19 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/modules/award/types.d.ts
CHANGED
|
@@ -47,8 +47,30 @@ export declare namespace Service {
|
|
|
47
47
|
namespace Request {
|
|
48
48
|
/** 发放奖励 */
|
|
49
49
|
interface distributePrize {
|
|
50
|
-
/**
|
|
51
|
-
|
|
50
|
+
/** 发奖记录ID */
|
|
51
|
+
id: string;
|
|
52
|
+
/** 用户ID */
|
|
53
|
+
userId: string;
|
|
54
|
+
/** 任务ID */
|
|
55
|
+
taskId: string;
|
|
56
|
+
/** 任务名称 */
|
|
57
|
+
taskName: string;
|
|
58
|
+
/** 任务类型 */
|
|
59
|
+
taskType: string;
|
|
60
|
+
/** 奖品类型 */
|
|
61
|
+
prizeType: string;
|
|
62
|
+
/** 直播间id */
|
|
63
|
+
liveStreamRoomId: string;
|
|
64
|
+
/** 业务ID */
|
|
65
|
+
bizId: string;
|
|
66
|
+
/** 发放数量 */
|
|
67
|
+
quantity: number;
|
|
68
|
+
/** 轮次编号(观看任务专用) */
|
|
69
|
+
roundNumber?: number;
|
|
70
|
+
/** 订单ID(满赠/买赠专用) */
|
|
71
|
+
orderId?: string;
|
|
72
|
+
/** 订单明细ID(买赠专用) */
|
|
73
|
+
orderDetailId?: string;
|
|
52
74
|
}
|
|
53
75
|
/** 作废奖励 */
|
|
54
76
|
interface reversePrize {
|