@be-link/ecommerce-client-backend-service-node-sdk 0.1.1 → 0.1.3
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 +3 -3
- package/package.json +1 -1
- package/types.d.ts +0 -2
package/modules/data/types.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare namespace DataService {
|
|
|
20
20
|
/** 用户id */
|
|
21
21
|
userId: string;
|
|
22
22
|
/** 任务id */
|
|
23
|
-
|
|
23
|
+
taskIds: string[];
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* 用户行为报告
|
|
@@ -72,8 +72,8 @@ export declare namespace DataService {
|
|
|
72
72
|
/** 用户id */
|
|
73
73
|
userId: string;
|
|
74
74
|
/** 查询类型 */
|
|
75
|
-
/**
|
|
76
|
-
duration: number
|
|
75
|
+
/** 观看时长,单位毫秒 */
|
|
76
|
+
duration: Record<string, number>;
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
79
|
* 根据用户id查询所在直播间信息响应
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -40,8 +40,6 @@ export interface Room {
|
|
|
40
40
|
coverImage: string;
|
|
41
41
|
/** 分享封面,用于门店分享 */
|
|
42
42
|
shareCover: string;
|
|
43
|
-
/** 直播间的小程序分享二维码 */
|
|
44
|
-
shareUrl: string;
|
|
45
43
|
/** 竖屏直播的封面图 URL。若未设置该参数值,则默认读取 CoverImage 的值。若通过控制台配置竖屏直播封面图且配置成功,则封面图的 URL 无协议头。若通过调用 API 接口配置竖屏直播封面图,则封面图的 URL 有协议头。 */
|
|
46
44
|
verticalCoverImage: string;
|
|
47
45
|
/** 是否开启答题重现功能。默认值为 0。取值如下:0:不开启、1:开启。直播中发送的答题和简答,将在直播回放的对应时间点自动弹出重现 */
|