@be-link/pos-cli-nodejs 0.0.175 → 0.0.176

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "0.0.175",
3
+ "version": "0.0.176",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -10,8 +10,8 @@ declare class QueryBySupplierService extends BaseService implements Service.Quer
10
10
  mgetOrderQuantity(request: {
11
11
  orderIdList: string[];
12
12
  }): Promise<Record<string, number>>;
13
- queryDepatureGroupList(request: Service.Request.queryDepatureGroupList): Promise<Service.Response.queryDepartureGroupList[]>;
14
- getDepatureGroupCount(request: Service.Request.getDepatureGroupCount): Promise<number>;
13
+ queryDepartureGroupList(request: Service.Request.queryDepartureGroupList): Promise<Service.Response.queryDepartureGroupList[]>;
14
+ getDepartureGroupCount(request: Service.Request.getDepartureGroupCount): Promise<number>;
15
15
  }
16
16
  declare const queryByStoreService: QueryBySupplierService;
17
17
  export default queryByStoreService;
@@ -25,11 +25,11 @@ class QueryBySupplierService extends service_1.default {
25
25
  mgetOrderQuantity(request) {
26
26
  return (0, http_1.callApi)(this.getApiUrl(this.mgetOrderQuantity), request);
27
27
  }
28
- queryDepatureGroupList(request) {
29
- return (0, http_1.callApi)(this.getApiUrl(this.queryDepatureGroupList), request);
28
+ queryDepartureGroupList(request) {
29
+ return (0, http_1.callApi)(this.getApiUrl(this.queryDepartureGroupList), request);
30
30
  }
31
- getDepatureGroupCount(request) {
32
- return (0, http_1.callApi)(this.getApiUrl(this.getDepatureGroupCount), request);
31
+ getDepartureGroupCount(request) {
32
+ return (0, http_1.callApi)(this.getApiUrl(this.getDepartureGroupCount), request);
33
33
  }
34
34
  }
35
35
  const queryByStoreService = new QueryBySupplierService();
@@ -228,7 +228,7 @@ export declare namespace Service {
228
228
  /** 二级类目列表 */
229
229
  categoryTwoList?: string[];
230
230
  }
231
- interface queryDepatureGroupList {
231
+ interface queryDepartureGroupList {
232
232
  /** 供应商id */
233
233
  supplierIdList?: string[];
234
234
  /** 商品id列表 */
@@ -242,7 +242,7 @@ export declare namespace Service {
242
242
  /** 页面条数 */
243
243
  pageSize?: number;
244
244
  }
245
- interface getDepatureGroupCount {
245
+ interface getDepartureGroupCount {
246
246
  /** 供应商id */
247
247
  supplierIdList?: string[];
248
248
  /** 履约时间 */
@@ -939,13 +939,13 @@ export declare namespace Service {
939
939
  * 获取行程单列表,按照履约时间升序
940
940
  * @path /query/supplier/query-departure-group-list
941
941
  */
942
- queryDepatureGroupList(request: Request.queryDepatureGroupList): Promise<Response.queryDepartureGroupList[]>;
942
+ queryDepartureGroupList(request: Request.queryDepartureGroupList): Promise<Response.queryDepartureGroupList[]>;
943
943
  /**
944
944
  * 获取行程单总数
945
945
  * @return 行程单总数
946
946
  * @path /query/supplier/get-departure-group-count
947
947
  */
948
- getDepatureGroupCount(request: Request.getDepatureGroupCount): Promise<number>;
948
+ getDepartureGroupCount(request: Request.getDepartureGroupCount): Promise<number>;
949
949
  }
950
950
  /** web查询 */
951
951
  interface QueryByWebController {