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

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[];
@@ -209,6 +211,7 @@ export declare namespace PreAllocationOrderTypes {
209
211
  operator: string;
210
212
  storeIds?: string[];
211
213
  productIds?: string[];
214
+ skuIds?: string[];
212
215
  skuCodes?: string[];
213
216
  deliveryModes?: number[];
214
217
  sourceTypes?: number[];
@@ -235,6 +238,7 @@ export declare namespace PreAllocationOrderTypes {
235
238
  batchNos?: string[];
236
239
  preAllocationOrderIds?: string[];
237
240
  productIds?: string[];
241
+ skuIds?: string[];
238
242
  skuCodes?: string[];
239
243
  pageIndex?: number;
240
244
  pageSize?: number;
@@ -257,6 +261,7 @@ export declare namespace PreAllocationOrderTypes {
257
261
  warehouseId: string;
258
262
  batchNos?: string[];
259
263
  preAllocationOrderIds?: string[];
264
+ skuIds?: string[];
260
265
  pickingRemark: string;
261
266
  operator: string;
262
267
  }
@@ -335,18 +340,20 @@ export declare namespace PreAllocationOrderTypes {
335
340
  pageIndex: number;
336
341
  pageSize: number;
337
342
  batchNo?: string;
343
+ storeIds?: string[];
338
344
  productIds?: string[];
339
345
  skuCodes?: string[];
340
346
  skuIds?: string[];
341
347
  createdAtStart?: number;
342
348
  createdAtEnd?: number;
343
349
  }
344
- /** 导出预配货路由失败记录 */
350
+ /** 导出预配货路由失败记录(分页拉取,与 queryRoutingFailureList 筛选一致) */
345
351
  interface ExportRoutingFailure {
346
- taskId?: string;
352
+ pageIndex: number;
353
+ pageSize: number;
347
354
  batchNo?: string;
355
+ storeIds?: string[];
348
356
  productIds?: string[];
349
- productName?: string;
350
357
  skuCodes?: string[];
351
358
  skuIds?: string[];
352
359
  createdAtStart?: number;
@@ -544,6 +551,8 @@ export declare namespace PreAllocationOrderTypes {
544
551
  }>;
545
552
  data: Entity.RoutingFailureExportRow[];
546
553
  total: number;
554
+ pageIndex: number;
555
+ pageSize: number;
547
556
  }
548
557
  }
549
558
  /** 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.53",
4
4
  "description": "EcommercePlanAllocationService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",