@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.51 → 0.0.52

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/enum.d.ts CHANGED
@@ -87,7 +87,7 @@ export declare namespace ENUM {
87
87
  enum DELIVERY_MODE_CHINESE {
88
88
  UNCONFIGURED = "\u672A\u914D\u7F6E",
89
89
  EXPRESS_DELIVERY = "\u5FEB\u9012\u5230\u5E97",
90
- WAREHOUSE_DELIVERY = "\u4ED3\u914D\u5230\u5E97"
90
+ WAREHOUSE_DELIVERY = "\u57CE\u914D\u5230\u5E97"
91
91
  }
92
92
  /** 配送模式映射 */
93
93
  const DELIVERY_MODE_MAP: {
package/enum.js CHANGED
@@ -103,7 +103,7 @@ var ENUM;
103
103
  (function (DELIVERY_MODE_CHINESE) {
104
104
  DELIVERY_MODE_CHINESE["UNCONFIGURED"] = "\u672A\u914D\u7F6E";
105
105
  DELIVERY_MODE_CHINESE["EXPRESS_DELIVERY"] = "\u5FEB\u9012\u5230\u5E97";
106
- DELIVERY_MODE_CHINESE["WAREHOUSE_DELIVERY"] = "\u4ED3\u914D\u5230\u5E97";
106
+ DELIVERY_MODE_CHINESE["WAREHOUSE_DELIVERY"] = "\u57CE\u914D\u5230\u5E97";
107
107
  })(DELIVERY_MODE_CHINESE = STORE_WAREHOUSE_ENUM.DELIVERY_MODE_CHINESE || (STORE_WAREHOUSE_ENUM.DELIVERY_MODE_CHINESE = {}));
108
108
  /** 配送模式映射 */
109
109
  STORE_WAREHOUSE_ENUM.DELIVERY_MODE_MAP = {
@@ -144,6 +144,7 @@ export declare namespace PreAllocationOrderTypes {
144
144
  storeIds?: string[];
145
145
  warehouseIds?: string[];
146
146
  productIds?: string[];
147
+ skuIds?: string[];
147
148
  skuCodes?: string[];
148
149
  deliveryModes?: number[];
149
150
  sourceTypes?: number[];
@@ -158,6 +159,7 @@ export declare namespace PreAllocationOrderTypes {
158
159
  storeIds?: string[];
159
160
  warehouseIds?: string[];
160
161
  productIds?: string[];
162
+ skuIds?: string[];
161
163
  skuCodes?: string[];
162
164
  deliveryModes?: number[];
163
165
  sourceTypes?: number[];
@@ -335,18 +337,20 @@ export declare namespace PreAllocationOrderTypes {
335
337
  pageIndex: number;
336
338
  pageSize: number;
337
339
  batchNo?: string;
340
+ storeIds?: string[];
338
341
  productIds?: string[];
339
342
  skuCodes?: string[];
340
343
  skuIds?: string[];
341
344
  createdAtStart?: number;
342
345
  createdAtEnd?: number;
343
346
  }
344
- /** 导出预配货路由失败记录 */
347
+ /** 导出预配货路由失败记录(分页拉取,与 queryRoutingFailureList 筛选一致) */
345
348
  interface ExportRoutingFailure {
346
- taskId?: string;
349
+ pageIndex: number;
350
+ pageSize: number;
347
351
  batchNo?: string;
352
+ storeIds?: string[];
348
353
  productIds?: string[];
349
- productName?: string;
350
354
  skuCodes?: string[];
351
355
  skuIds?: string[];
352
356
  createdAtStart?: number;
@@ -544,6 +548,8 @@ export declare namespace PreAllocationOrderTypes {
544
548
  }>;
545
549
  data: Entity.RoutingFailureExportRow[];
546
550
  total: number;
551
+ pageIndex: number;
552
+ pageSize: number;
547
553
  }
548
554
  }
549
555
  /** PreAllocationOrder Controller 接口定义 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-plan-allocation-service-node-sdk",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "description": "EcommercePlanAllocationService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",