@be-link/pos-cli-nodejs 0.0.45 → 0.0.46
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
|
@@ -176,8 +176,8 @@ export declare namespace Service {
|
|
|
176
176
|
categoryTwo?: string;
|
|
177
177
|
/** 履约时间 */
|
|
178
178
|
fulfillAt: number;
|
|
179
|
-
/**
|
|
180
|
-
fulfillAtComparer: 'GTE' | 'LT';
|
|
179
|
+
/** 履约时间比较条件, 大于等于, 小于, 等于 */
|
|
180
|
+
fulfillAtComparer: 'GTE' | 'LT' | 'EQ';
|
|
181
181
|
/** 商品Id列表 */
|
|
182
182
|
itemIdList?: string[];
|
|
183
183
|
/** 页面下标 */
|
|
@@ -425,6 +425,8 @@ export declare namespace Service {
|
|
|
425
425
|
skuId: string;
|
|
426
426
|
/** 订单id列表 */
|
|
427
427
|
orderIdList: string[];
|
|
428
|
+
/** 当前份数 */
|
|
429
|
+
remainQuantity: number;
|
|
428
430
|
}
|
|
429
431
|
interface queryPeriodTradeOrderList {
|
|
430
432
|
/** 商品名称 */
|