@be-link/pos-cli-nodejs 0.0.40 → 0.0.42

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "0.0.40",
3
+ "version": "0.0.42",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -153,15 +153,19 @@ export declare namespace Service {
153
153
  }
154
154
  interface queryItineraryList {
155
155
  /** 商品id列表 */
156
- itemIdList: string[];
156
+ itemIdList?: string[];
157
+ /** 二级类目列表 */
158
+ categoryTwoList?: string[];
157
159
  /** 页面下标 */
158
- pageIndex: number;
160
+ pageIndex?: number;
159
161
  /** 页面条数 */
160
- pageSize: number;
162
+ pageSize?: number;
161
163
  }
162
164
  interface getItineraryCount {
163
165
  /** 商品id列表 */
164
- itemIdList: string[];
166
+ itemIdList?: string[];
167
+ /** 二级类目列表 */
168
+ categoryTwoList?: string[];
165
169
  }
166
170
  interface queryOrderMergeRecordByOrderId {
167
171
  /** 订单id */