@be-link/pos-cli-nodejs 0.0.172 → 0.0.174
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/package.json
CHANGED
|
@@ -146,6 +146,19 @@ export declare namespace Service {
|
|
|
146
146
|
categoryTwoList?: string[];
|
|
147
147
|
/** 商品id */
|
|
148
148
|
itemIdList?: string[];
|
|
149
|
+
/** 页码. 如果不传就查询所有 */
|
|
150
|
+
pageIndex?: number;
|
|
151
|
+
/** 页目条数 */
|
|
152
|
+
pageSize?: number;
|
|
153
|
+
/** 排序规则 */
|
|
154
|
+
sort?: {
|
|
155
|
+
/** 出团日期 */
|
|
156
|
+
fulfillAt?: 'ASC' | 'DESC';
|
|
157
|
+
/** 支付时间 */
|
|
158
|
+
paidAt?: 'ASC' | 'DESC';
|
|
159
|
+
/** 订单创建时间 */
|
|
160
|
+
createdAt?: 'ASC' | 'DESC';
|
|
161
|
+
};
|
|
149
162
|
/** 查询块 */
|
|
150
163
|
needBlocks: K;
|
|
151
164
|
}
|
|
@@ -396,7 +409,7 @@ export declare namespace Service {
|
|
|
396
409
|
/** 订单创建时间筛选 */
|
|
397
410
|
createdAtRange?: [number, number];
|
|
398
411
|
/** 供应商列表 */
|
|
399
|
-
supplierIdList
|
|
412
|
+
supplierIdList?: string[];
|
|
400
413
|
};
|
|
401
414
|
/** 查询块 */
|
|
402
415
|
needBlocks: K;
|
|
@@ -459,7 +472,7 @@ export declare namespace Service {
|
|
|
459
472
|
/** 订单创建时间筛选 */
|
|
460
473
|
createdAtRange?: [number, number];
|
|
461
474
|
/** 供应商列表 */
|
|
462
|
-
supplierIdList
|
|
475
|
+
supplierIdList?: string[];
|
|
463
476
|
/** 页面条数 */
|
|
464
477
|
pageSize?: number;
|
|
465
478
|
/** 页面下标 */
|
|
@@ -567,7 +580,7 @@ export declare namespace Service {
|
|
|
567
580
|
/** 订单创建时间筛选 */
|
|
568
581
|
createdAtRange?: [number, number];
|
|
569
582
|
/** 供应商列表 */
|
|
570
|
-
supplierIdList
|
|
583
|
+
supplierIdList?: string[];
|
|
571
584
|
}
|
|
572
585
|
interface getOrderCount {
|
|
573
586
|
/** 状态 */
|