@be-link/pos-cli-nodejs 0.0.91 → 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
|
@@ -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
|
/** 需要查询的块 */
|
|
@@ -502,6 +506,8 @@ export declare namespace Service {
|
|
|
502
506
|
itemId: string;
|
|
503
507
|
/** skuId */
|
|
504
508
|
skuId: string;
|
|
509
|
+
/** 履约时间 */
|
|
510
|
+
fulfillAt: number;
|
|
505
511
|
/** 小队名称 */
|
|
506
512
|
groupName: string;
|
|
507
513
|
/** 订单数量 */
|