@be-link/ecommerce-client-backend-service-node-sdk 0.1.1 → 0.1.2
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/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查询所在直播间信息响应
|