@be-link/pos-cli-nodejs 1.0.5 → 1.0.6
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,12 +245,19 @@ 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 */
|