@be-link/pos-cli-nodejs 1.0.0 → 1.0.2
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
|
@@ -137,9 +137,11 @@ export declare namespace Service {
|
|
|
137
137
|
}
|
|
138
138
|
interface queryOrderInDepartureDate<K> {
|
|
139
139
|
/** 开始出团日期 */
|
|
140
|
-
startTime
|
|
140
|
+
startTime?: number;
|
|
141
141
|
/** 结束出团日期 */
|
|
142
|
-
endTime
|
|
142
|
+
endTime?: number;
|
|
143
|
+
/** 返团时间范围 */
|
|
144
|
+
fulfillEndAtRange?: [number, number];
|
|
143
145
|
/** 订单状态列表 */
|
|
144
146
|
statusList?: PosConstants.TradeOrderStatusEnum[];
|
|
145
147
|
/** 二级类目列表 */
|