@be-link/ecommerce-client-backend-service-node-sdk 0.1.71 → 0.1.72
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/room/types.d.ts
CHANGED
|
@@ -279,6 +279,8 @@ export declare namespace RoomService {
|
|
|
279
279
|
liveStartTime: string;
|
|
280
280
|
/** 看播时长 (格式 "X小时X分" 或 "X分钟") */
|
|
281
281
|
watchDuration: string;
|
|
282
|
+
/** 回放时长 (格式 "X小时X分" 或 "X分钟") */
|
|
283
|
+
replayWatchDuration: string;
|
|
282
284
|
/** 首次进入时间 (格式 "YYYY-MM-DD HH:mm:ss") */
|
|
283
285
|
firstEntryTime: string;
|
|
284
286
|
/** 最后进入时间 (格式 "YYYY-MM-DD HH:mm:ss") */
|
|
@@ -61,6 +61,8 @@ export declare namespace UserDataService {
|
|
|
61
61
|
storeIds?: string[];
|
|
62
62
|
/** 用户ID */
|
|
63
63
|
userId?: string;
|
|
64
|
+
/** 用户ID列表 */
|
|
65
|
+
userIds?: string[];
|
|
64
66
|
/** 用户昵称(支持模糊匹配) */
|
|
65
67
|
nickname?: string;
|
|
66
68
|
/** 会员等级 */
|
|
@@ -80,6 +82,8 @@ export declare namespace UserDataService {
|
|
|
80
82
|
storeIds?: string[];
|
|
81
83
|
/** 用户ID */
|
|
82
84
|
userId?: string;
|
|
85
|
+
/** 用户ID列表 */
|
|
86
|
+
userIds?: string[];
|
|
83
87
|
/** 用户昵称(支持模糊匹配) */
|
|
84
88
|
nickname?: string;
|
|
85
89
|
/** 会员等级 */
|