@be-link/pos-cli-nodejs 0.0.92 → 0.0.94

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.92",
3
+ "version": "0.0.94",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,6 +17,8 @@ export declare namespace Service {
17
17
  categoryTwoList?: string[];
18
18
  /** 履约时间 */
19
19
  fulfillAt?: number;
20
+ /** skuId */
21
+ skuIdList?: string[];
20
22
  }
21
23
  interface queryOrderByIdList<K> {
22
24
  /** 订单id列表 */
@@ -142,6 +144,10 @@ export declare namespace Service {
142
144
  interface queryOrderBySkuIdList<K> {
143
145
  /** skuId列表 */
144
146
  skuIdList: string[];
147
+ /** 履约时间 */
148
+ fulfillAt?: number;
149
+ /** 履约时间比较条件 */
150
+ fulfillAtComparer?: 'LT' | 'EQ' | 'GT' | 'LTE' | 'GTE';
145
151
  /** 订单状态列表 */
146
152
  statusList?: PosConstants.TradeOrderStatusEnum[];
147
153
  /** 需要查询的块 */