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

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