@be-link/ecommerce-trade-service-node-sdk 0.1.26 → 0.1.27
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.
|
@@ -18,8 +18,10 @@ export declare namespace PosOrderQueryService {
|
|
|
18
18
|
liveStreamRoomId: string;
|
|
19
19
|
storeId: string;
|
|
20
20
|
userId: string;
|
|
21
|
-
/**
|
|
22
|
-
source:
|
|
21
|
+
/** 订单来源 */
|
|
22
|
+
source: ENUM.OrderSource;
|
|
23
|
+
/** 状态:0-直播、1-回放 */
|
|
24
|
+
status: number;
|
|
23
25
|
/** UNKNOWN/APP/H5/MINI */
|
|
24
26
|
platform: ENUM.OrderPlatform;
|
|
25
27
|
/** UNKNOWN/IOS/ANDROID/HARMONY/PC */
|
|
@@ -499,6 +501,8 @@ export declare namespace PosOrderQueryService {
|
|
|
499
501
|
source: ENUM.OrderSource;
|
|
500
502
|
/** 积分数 */
|
|
501
503
|
pointNum: number;
|
|
504
|
+
/** 兑换券数量(积分商城订单) */
|
|
505
|
+
exchangeCouponNum?: number;
|
|
502
506
|
};
|
|
503
507
|
/** 商品信息 */
|
|
504
508
|
product: {
|
|
@@ -179,6 +179,8 @@ export declare namespace RosOrderQueryService {
|
|
|
179
179
|
arrivalTime?: number;
|
|
180
180
|
/** 操作人昵称 */
|
|
181
181
|
operatorNickname?: string;
|
|
182
|
+
/** 上传的图片/视频附件 */
|
|
183
|
+
attachments?: string[];
|
|
182
184
|
};
|
|
183
185
|
/** 正向订单信息 */
|
|
184
186
|
positiveOrder: {
|
|
@@ -336,6 +338,10 @@ export declare namespace RosOrderQueryService {
|
|
|
336
338
|
createdAt: number;
|
|
337
339
|
/** 上传的附件 */
|
|
338
340
|
attachments: string[];
|
|
341
|
+
/** 退款积分数 */
|
|
342
|
+
pointNum: number;
|
|
343
|
+
/** 拒绝原因(状态为拒绝时返回) */
|
|
344
|
+
rejectReason?: string;
|
|
339
345
|
};
|
|
340
346
|
/** 商品信息 */
|
|
341
347
|
product: {
|