@be-link/pos-cli-nodejs 0.0.68 → 0.0.69
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
|
}
|