@be-link/ecommerce-trade-service-node-sdk 0.1.53 → 0.1.55
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.
|
@@ -312,6 +312,7 @@ export declare namespace PosOrderQueryService {
|
|
|
312
312
|
};
|
|
313
313
|
user: {
|
|
314
314
|
userId: string;
|
|
315
|
+
unionId: string;
|
|
315
316
|
memberLevel?: string;
|
|
316
317
|
receiverName: string;
|
|
317
318
|
receiverPhone: string;
|
|
@@ -326,6 +327,7 @@ export declare namespace PosOrderQueryService {
|
|
|
326
327
|
};
|
|
327
328
|
userDetail: {
|
|
328
329
|
userId: string;
|
|
330
|
+
unionId: string;
|
|
329
331
|
memberLevel?: string;
|
|
330
332
|
receiverName: string;
|
|
331
333
|
receiverPhone: string;
|
|
@@ -501,6 +503,8 @@ export declare namespace PosOrderQueryService {
|
|
|
501
503
|
};
|
|
502
504
|
/** 任务活动信息 */
|
|
503
505
|
taskActivity?: {
|
|
506
|
+
/** **/
|
|
507
|
+
type: 'PAY_GIFT' | 'FULL_GIFT';
|
|
504
508
|
/** 优惠券列表 */
|
|
505
509
|
coupon: {
|
|
506
510
|
/** 券模板名称 */
|
|
@@ -510,7 +514,7 @@ export declare namespace PosOrderQueryService {
|
|
|
510
514
|
}[];
|
|
511
515
|
/** 积分数 */
|
|
512
516
|
pointNum: number;
|
|
513
|
-
};
|
|
517
|
+
}[];
|
|
514
518
|
}
|
|
515
519
|
}
|
|
516
520
|
interface QueryController {
|
|
@@ -6,16 +6,35 @@ export declare namespace RosOrderQueryService {
|
|
|
6
6
|
interface IOrderList {
|
|
7
7
|
/** 查询条件 */
|
|
8
8
|
conditions?: {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
9
|
+
/** 下单时间范围 */
|
|
10
|
+
createdAt?: {
|
|
11
|
+
start?: number;
|
|
12
|
+
end?: number;
|
|
13
|
+
};
|
|
14
|
+
/** 退款操作时间范围 */
|
|
15
|
+
operateTime?: {
|
|
16
|
+
start?: number;
|
|
17
|
+
end?: number;
|
|
18
|
+
};
|
|
19
|
+
/** 退款申请时间范围 */
|
|
20
|
+
orderTime?: {
|
|
21
|
+
start?: number;
|
|
22
|
+
end?: number;
|
|
23
|
+
};
|
|
24
|
+
/** 退款订单状态列表 */
|
|
25
|
+
statusList?: ENUM.ReverseOrderStatus[];
|
|
26
|
+
/** 退款到账状态列表 */
|
|
27
|
+
arrivalStatusList?: ENUM.ReverseArrivalStatus[];
|
|
28
|
+
/** 退款方式列表 */
|
|
29
|
+
wayList?: ENUM.ReverseRefundWay[];
|
|
30
|
+
/** 退款类型列表 */
|
|
31
|
+
typeList?: ENUM.ReverseRefundType[];
|
|
32
|
+
/** 用户ID列表 */
|
|
33
|
+
userIds?: string[];
|
|
34
|
+
/** 正向订单ID列表 */
|
|
35
|
+
orderIds?: string[];
|
|
36
|
+
/** 门店ID列表 */
|
|
37
|
+
storeIds?: string[];
|
|
19
38
|
};
|
|
20
39
|
/** 分页 */
|
|
21
40
|
pagination: {
|
package/package.json
CHANGED