@be-link/pos-cli-nodejs 0.0.39 → 0.0.41
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
|
@@ -153,11 +153,13 @@ export declare namespace Service {
|
|
|
153
153
|
}
|
|
154
154
|
interface queryItineraryList {
|
|
155
155
|
/** 商品id列表 */
|
|
156
|
-
itemIdList
|
|
156
|
+
itemIdList?: string[];
|
|
157
|
+
/** 二级类目列表 */
|
|
158
|
+
categoryTwoList?: string[];
|
|
157
159
|
/** 页面下标 */
|
|
158
|
-
pageIndex
|
|
160
|
+
pageIndex?: number;
|
|
159
161
|
/** 页面条数 */
|
|
160
|
-
pageSize
|
|
162
|
+
pageSize?: number;
|
|
161
163
|
}
|
|
162
164
|
interface getItineraryCount {
|
|
163
165
|
/** 商品id列表 */
|
|
@@ -319,7 +321,7 @@ export declare namespace Service {
|
|
|
319
321
|
}
|
|
320
322
|
interface getStoreOrderCount {
|
|
321
323
|
/** 状态 */
|
|
322
|
-
|
|
324
|
+
statusList?: string[];
|
|
323
325
|
/** 购买人姓名 */
|
|
324
326
|
contactName?: string;
|
|
325
327
|
/** 购买人手机号 */
|
|
@@ -331,7 +333,7 @@ export declare namespace Service {
|
|
|
331
333
|
/** 订单创建时间筛选 */
|
|
332
334
|
createdAtRange?: [number, number];
|
|
333
335
|
/** 门店列表 */
|
|
334
|
-
storeIdList
|
|
336
|
+
storeIdList: string[];
|
|
335
337
|
}
|
|
336
338
|
interface getOrderCount {
|
|
337
339
|
/** 状态 */
|