@be-link/pos-cli-nodejs 0.0.72 → 0.0.74
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
|
@@ -32,6 +32,7 @@ declare class OrderFulfillService extends BaseService implements Service.orderFu
|
|
|
32
32
|
markItineraryRead(request: Service.Request.markItineraryRead): Promise<void>;
|
|
33
33
|
markServiceNoticeAuth(request: Service.Request.markServiceNoticeAuth): Promise<void>;
|
|
34
34
|
mgetSkuChangeCount(request: string[]): Promise<Record<string, number>>;
|
|
35
|
+
mgetShuttleBusSupplierName(request: string[]): Promise<Record<string, string>>;
|
|
35
36
|
}
|
|
36
37
|
declare const orderFulfillService: OrderFulfillService;
|
|
37
38
|
export default orderFulfillService;
|
|
@@ -97,6 +97,9 @@ class OrderFulfillService extends service_1.default {
|
|
|
97
97
|
mgetSkuChangeCount(request) {
|
|
98
98
|
return (0, http_1.callApi)(this.getApiUrl(this.mgetSkuChangeCount), request);
|
|
99
99
|
}
|
|
100
|
+
mgetShuttleBusSupplierName(request) {
|
|
101
|
+
return (0, http_1.callApi)(this.getApiUrl(this.mgetShuttleBusSupplierName), request);
|
|
102
|
+
}
|
|
100
103
|
}
|
|
101
104
|
const orderFulfillService = new OrderFulfillService();
|
|
102
105
|
exports.default = orderFulfillService;
|
|
@@ -44,9 +44,9 @@ export declare namespace Service {
|
|
|
44
44
|
/** 司机电话 */
|
|
45
45
|
driverPhone?: string;
|
|
46
46
|
};
|
|
47
|
+
/** 去程 */
|
|
48
|
+
DEPARTURE?: batchUpsertItineraryInfo['upsertParam']['RETURN'];
|
|
47
49
|
};
|
|
48
|
-
/** 去程 */
|
|
49
|
-
DEPARTURE?: batchUpsertItineraryInfo['upsertParam']['RETURN'];
|
|
50
50
|
}
|
|
51
51
|
interface importPreCheck {
|
|
52
52
|
/** 商品id */
|
|
@@ -437,5 +437,7 @@ export declare namespace Service {
|
|
|
437
437
|
* @path /fulfill/mget-sku-change-count
|
|
438
438
|
*/
|
|
439
439
|
mgetSkuChangeCount(request: string[]): Promise<Record<string, number>>;
|
|
440
|
+
/** 根据班车供应商ID列表查询班车名称 */
|
|
441
|
+
mgetShuttleBusSupplierName(request: string[]): Promise<Record<string, string>>;
|
|
440
442
|
}
|
|
441
443
|
}
|