@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.48 → 0.0.49

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
@@ -192,6 +192,7 @@ export declare namespace ENUM {
192
192
  readonly STOCK_IN_ORDER_DETAIL_NOT_FOUND: "入库单中未找到对应的SKU明细";
193
193
  readonly APPLY_FAILED: "补货申请失败,请稍后重试";
194
194
  readonly ALREADY_APPLIED: "该入库单已经申请过补货,无法再次发起申请";
195
+ readonly STOCK_IN_ORDER_NOT_RECEIVED: "入库单未收货,无法申请补货";
195
196
  };
196
197
  }
197
198
  namespace PRE_ALLOCATION_ORDER_ENUM {
package/enum.js CHANGED
@@ -218,6 +218,7 @@ var ENUM;
218
218
  STOCK_IN_ORDER_DETAIL_NOT_FOUND: '入库单中未找到对应的SKU明细',
219
219
  APPLY_FAILED: '补货申请失败,请稍后重试',
220
220
  ALREADY_APPLIED: '该入库单已经申请过补货,无法再次发起申请',
221
+ STOCK_IN_ORDER_NOT_RECEIVED: '入库单未收货,无法申请补货',
221
222
  };
222
223
  })(STORE_REPLENISH_ORDER_ENUM = ENUM.STORE_REPLENISH_ORDER_ENUM || (ENUM.STORE_REPLENISH_ORDER_ENUM = {}));
223
224
  let PRE_ALLOCATION_ORDER_ENUM;
@@ -181,8 +181,8 @@ export declare namespace PreAllocationOrderTypes {
181
181
  storeIds?: string[];
182
182
  productIds?: string[];
183
183
  skuCodes?: string[];
184
- deliveryMode?: number;
185
- sourceType?: number;
184
+ deliveryModes?: number[];
185
+ sourceTypes?: number[];
186
186
  }
187
187
  /** 查询任务进度 */
188
188
  interface GetTaskProgress {
@@ -262,8 +262,8 @@ export declare namespace PreAllocationOrderTypes {
262
262
  storeIds?: string[];
263
263
  productIds?: string[];
264
264
  skuCodes?: string[];
265
- deliveryMode?: number;
266
- sourceType?: number;
265
+ deliveryModes?: number[];
266
+ sourceTypes?: number[];
267
267
  batchStatus?: number;
268
268
  status?: number;
269
269
  };
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.48",
3
+ "version": "0.0.49",
4
4
  "description": "EcommercePlanAllocationService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",