@be-link/ecommerce-client-backend-service-node-sdk 0.1.23 → 0.1.25

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.
@@ -236,3 +236,14 @@ export interface Attr {
236
236
  /** 属性值 */
237
237
  attrValue: string;
238
238
  }
239
+ /** 用户观看直播任务时长 */
240
+ export interface TaskDuration {
241
+ /** 任务ID */
242
+ taskId: string;
243
+ /** 用户ID */
244
+ userId: string;
245
+ /** 直播间ID */
246
+ liveStreamRoomId: string;
247
+ /** 观看时长,单位秒 */
248
+ watchDuration: number;
249
+ }
@@ -69,6 +69,8 @@ export declare namespace RoomService {
69
69
  liveStreamRoomId: string;
70
70
  /** 门店ID列表 */
71
71
  bind: string[];
72
+ /** 操作人 */
73
+ operator: string;
72
74
  }
73
75
  /**
74
76
  * 根据门店绑定关系查询直播间列表
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-client-backend-service-node-sdk",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "description": "EcommerceClientBackendService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",