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