@be-link/pos-cli-nodejs 0.0.46 → 0.0.48

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.46",
3
+ "version": "0.0.48",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -191,11 +191,13 @@ export declare namespace Service {
191
191
  /** 类目 */
192
192
  categoryTwo?: string;
193
193
  /** 履约时间 */
194
- fulfillAt?: number;
195
- /** 商品名称 */
196
- itemName?: string;
194
+ fulfillAt: number;
195
+ /** 履约时间比较条件, 大于等于, 小于, 等于 */
196
+ fulfillAtComparer: 'GTE' | 'LT' | 'EQ';
197
+ /** 商品ID列表 */
198
+ itemIdList?: string[];
197
199
  /** 订单状态 */
198
- status?: PosConstants.TradeOrderStatusEnum;
200
+ statusList?: PosConstants.TradeOrderStatusEnum[];
199
201
  }
200
202
  interface queryOrderList<K> {
201
203
  /** 条件 */
@@ -429,10 +431,10 @@ export declare namespace Service {
429
431
  remainQuantity: number;
430
432
  }
431
433
  interface queryPeriodTradeOrderList {
432
- /** 商品名称 */
433
- itemName: string;
434
- /** 酒店名称 */
435
- storeName: string;
434
+ /** 商品Id */
435
+ itemId: string;
436
+ /** 酒店Id */
437
+ storeId: string;
436
438
  /** 销量 */
437
439
  total: number;
438
440
  }