@be-link/pos-cli-nodejs 0.0.37 → 0.0.39
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
|
@@ -251,7 +251,7 @@ export declare namespace Service {
|
|
|
251
251
|
/** 条件 */
|
|
252
252
|
conditions: {
|
|
253
253
|
/** 状态 */
|
|
254
|
-
|
|
254
|
+
statusList?: string[];
|
|
255
255
|
/** 购买人姓名 */
|
|
256
256
|
contactName?: string;
|
|
257
257
|
/** 购买人手机号 */
|
|
@@ -263,11 +263,11 @@ export declare namespace Service {
|
|
|
263
263
|
/** 订单创建时间筛选 */
|
|
264
264
|
createdAtRange?: [number, number];
|
|
265
265
|
/** 门店列表 */
|
|
266
|
-
storeIdList
|
|
266
|
+
storeIdList: string[];
|
|
267
267
|
/** 页面条数 */
|
|
268
|
-
pageSize
|
|
268
|
+
pageSize?: number;
|
|
269
269
|
/** 页面下标 */
|
|
270
|
-
pageIndex
|
|
270
|
+
pageIndex?: number;
|
|
271
271
|
};
|
|
272
272
|
/** 排序 */
|
|
273
273
|
sort: {
|