@be-link/ecommerce-client-backend-service-node-sdk 0.1.17 → 0.1.18
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 +2 -4
- package/package.json +1 -1
package/modules/data/types.d.ts
CHANGED
|
@@ -165,10 +165,6 @@ export interface Audience {
|
|
|
165
165
|
telePhone: string;
|
|
166
166
|
/** 累计直播观看时长,毫秒时间戳 */
|
|
167
167
|
cumulativeViewDuration: number;
|
|
168
|
-
/** 当场直播获得总积分 */
|
|
169
|
-
points: number;
|
|
170
|
-
/** 当场直播获得总券数量 */
|
|
171
|
-
couponNum: number;
|
|
172
168
|
/** 首次进入时间,毫秒时间戳 */
|
|
173
169
|
firstTime: number;
|
|
174
170
|
/** 最后一次进入时间,毫秒时间戳 */
|
|
@@ -214,6 +210,8 @@ export interface Product {
|
|
|
214
210
|
productImage: string;
|
|
215
211
|
/** 商品SKU ID */
|
|
216
212
|
skuId: string;
|
|
213
|
+
/** 价格 */
|
|
214
|
+
price: number;
|
|
217
215
|
/** 商品SKU名称 */
|
|
218
216
|
attrs: Attr[];
|
|
219
217
|
/** 销售量 */
|