@be-link/pos-cli-nodejs 1.0.5 → 1.0.7
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
|
@@ -245,18 +245,27 @@ export declare namespace Service {
|
|
|
245
245
|
itemIdList?: string[];
|
|
246
246
|
/** 履约时间 */
|
|
247
247
|
fulfillAtRange?: [number, number];
|
|
248
|
+
/** 返回时间 */
|
|
249
|
+
fulfillEndAtRange?: [number, number];
|
|
248
250
|
/** 二级类目列表 */
|
|
249
251
|
categoryTwoList?: string[];
|
|
250
252
|
/** 页面下标 */
|
|
251
253
|
pageIndex?: number;
|
|
252
254
|
/** 页面条数 */
|
|
253
255
|
pageSize?: number;
|
|
256
|
+
/** 排序 */
|
|
257
|
+
sort?: {
|
|
258
|
+
/** 出团时间 */
|
|
259
|
+
fulfillAt?: 'ASC' | 'DESC';
|
|
260
|
+
};
|
|
254
261
|
}
|
|
255
262
|
interface getDepartureGroupCount {
|
|
256
263
|
/** 供应商id */
|
|
257
264
|
supplierIdList?: string[];
|
|
258
265
|
/** 履约时间 */
|
|
259
266
|
fulfillAtRange?: [number, number];
|
|
267
|
+
/** 返回时间 */
|
|
268
|
+
fulfillEndAtRange?: [number, number];
|
|
260
269
|
/** 商品id列表 */
|
|
261
270
|
itemIdList?: string[];
|
|
262
271
|
/** 二级类目列表 */
|