@be-link/pos-cli-nodejs 0.0.87 → 0.0.88

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.87",
3
+ "version": "0.0.88",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -519,10 +519,16 @@ export declare namespace Service {
519
519
  }[];
520
520
  }
521
521
  interface queryPartyOrderInfo {
522
+ /** 门店ID */
523
+ storeId: string;
524
+ /** 商品ID */
525
+ itemId: string;
522
526
  /** skuId */
523
527
  skuId: string;
524
- /** 订单id列表 */
525
- orderIdList: string[];
528
+ /** 订单数量 */
529
+ orderCount: number;
530
+ /** 出行时间 */
531
+ departureDate: number;
526
532
  /** 当前份数 */
527
533
  remainQuantity: number;
528
534
  }