@be-link/ecommerce-trade-service-node-sdk 0.1.53 → 0.1.54
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.
|
@@ -501,6 +501,8 @@ export declare namespace PosOrderQueryService {
|
|
|
501
501
|
};
|
|
502
502
|
/** 任务活动信息 */
|
|
503
503
|
taskActivity?: {
|
|
504
|
+
/** **/
|
|
505
|
+
type: 'PAY_GIFT' | 'FULL_GIFT';
|
|
504
506
|
/** 优惠券列表 */
|
|
505
507
|
coupon: {
|
|
506
508
|
/** 券模板名称 */
|
|
@@ -510,7 +512,7 @@ export declare namespace PosOrderQueryService {
|
|
|
510
512
|
}[];
|
|
511
513
|
/** 积分数 */
|
|
512
514
|
pointNum: number;
|
|
513
|
-
};
|
|
515
|
+
}[];
|
|
514
516
|
}
|
|
515
517
|
}
|
|
516
518
|
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