@be-link/pos-cli-nodejs 0.0.68 → 0.0.70
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
|
@@ -31,6 +31,7 @@ declare class OrderFulfillService extends BaseService implements Service.orderFu
|
|
|
31
31
|
markServiceNoticeRead(request: Service.Request.markServiceNoticeRead): Promise<void>;
|
|
32
32
|
markItineraryRead(request: Service.Request.markItineraryRead): Promise<void>;
|
|
33
33
|
markServiceNoticeAuth(request: Service.Request.markServiceNoticeAuth): Promise<void>;
|
|
34
|
+
mgetSkuChangeCount(request: string[]): Promise<Record<string, number>>;
|
|
34
35
|
}
|
|
35
36
|
declare const orderFulfillService: OrderFulfillService;
|
|
36
37
|
export default orderFulfillService;
|
|
@@ -94,6 +94,9 @@ class OrderFulfillService extends service_1.default {
|
|
|
94
94
|
markServiceNoticeAuth(request) {
|
|
95
95
|
return (0, http_1.callApi)(this.getApiUrl(this.markServiceNoticeAuth), request);
|
|
96
96
|
}
|
|
97
|
+
mgetSkuChangeCount(request) {
|
|
98
|
+
return (0, http_1.callApi)(this.getApiUrl(this.mgetSkuChangeCount), request);
|
|
99
|
+
}
|
|
97
100
|
}
|
|
98
101
|
const orderFulfillService = new OrderFulfillService();
|
|
99
102
|
exports.default = orderFulfillService;
|
|
@@ -432,5 +432,10 @@ export declare namespace Service {
|
|
|
432
432
|
* @path /fulfill/mark-order-purchase-insurance
|
|
433
433
|
*/
|
|
434
434
|
markOrderPurchaseInsurance(request: Request.markOrderPurchaseInsurance): Promise<void>;
|
|
435
|
+
/**
|
|
436
|
+
* 批量获取订单改期次数
|
|
437
|
+
* @path /fulfill/mget-sku-change-count
|
|
438
|
+
*/
|
|
439
|
+
mgetSkuChangeCount(request: string[]): Promise<Record<string, number>>;
|
|
435
440
|
}
|
|
436
441
|
}
|
|
@@ -248,6 +248,8 @@ export declare namespace Service {
|
|
|
248
248
|
isFirstTradeOrder?: boolean;
|
|
249
249
|
/** 是否未完成备注 */
|
|
250
250
|
isNotFinishedNote?: boolean;
|
|
251
|
+
/** 是否排除已合并的订单 */
|
|
252
|
+
isExcludeMerged?: boolean;
|
|
251
253
|
/** 页面条数 */
|
|
252
254
|
pageSize: number;
|
|
253
255
|
/** 页面下标 */
|
|
@@ -392,6 +394,8 @@ export declare namespace Service {
|
|
|
392
394
|
isFirstTradeOrder?: boolean;
|
|
393
395
|
/** 是否未完成备注 */
|
|
394
396
|
isNotFinishedNote?: boolean;
|
|
397
|
+
/** 是否排除已合并的订单 */
|
|
398
|
+
isExcludeMerged?: boolean;
|
|
395
399
|
}
|
|
396
400
|
interface queryRejectReasons {
|
|
397
401
|
/** 订单Id */
|