@be-link/ecommerce-promotion-service-node-sdk 0.0.34 → 0.0.35
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
|
@@ -92,11 +92,7 @@ export declare namespace Service {
|
|
|
92
92
|
/** 直播间ID */
|
|
93
93
|
liveRoomId: string;
|
|
94
94
|
/** 用户列表 */
|
|
95
|
-
userIds
|
|
96
|
-
/** 页码 */
|
|
97
|
-
pageIndex?: number;
|
|
98
|
-
/** 每页数量 */
|
|
99
|
-
pageSize?: number;
|
|
95
|
+
userIds: string[];
|
|
100
96
|
}
|
|
101
97
|
}
|
|
102
98
|
namespace Response {
|
|
@@ -109,8 +105,6 @@ export declare namespace Service {
|
|
|
109
105
|
}
|
|
110
106
|
/** 直播间积分&券发放统计响应 */
|
|
111
107
|
interface queryLiveRoomDistributionStatsResponse {
|
|
112
|
-
/** 总数 */
|
|
113
|
-
total: number;
|
|
114
108
|
/** 数据列表 */
|
|
115
109
|
list: {
|
|
116
110
|
/** 用户ID */
|
|
@@ -212,6 +212,8 @@ export declare namespace Service {
|
|
|
212
212
|
pageIndex?: number;
|
|
213
213
|
/** 每页数量 */
|
|
214
214
|
pageSize?: number;
|
|
215
|
+
/** 券ID */
|
|
216
|
+
id?: string;
|
|
215
217
|
/** 券名称(模糊查询) */
|
|
216
218
|
name?: string;
|
|
217
219
|
/** 券类型 */
|
|
@@ -291,6 +293,8 @@ export declare namespace Service {
|
|
|
291
293
|
createdAt: number;
|
|
292
294
|
/** 更新时间 */
|
|
293
295
|
updatedAt: number;
|
|
296
|
+
/** 创建人 */
|
|
297
|
+
creatorId: string;
|
|
294
298
|
}
|
|
295
299
|
/** 券模版列表响应 */
|
|
296
300
|
interface getCouponTemplateList {
|