@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.
- package/modules/data/types.d.ts +11 -0
- package/modules/room/types.d.ts +2 -0
- package/package.json +1 -1
package/modules/data/types.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/modules/room/types.d.ts
CHANGED