@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.43 → 0.0.45

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.
@@ -199,7 +199,15 @@ export declare namespace PurchaseOrderTypes {
199
199
  status: ENUM.PURCHASE_ORDER_ENUM.STATUS;
200
200
  }
201
201
  /** 采购单明细列表项 */
202
- interface DetailItem extends Entity.PurchaseOrderDetailWithProduct {
202
+ interface DetailItem extends Entity.PurchaseOrderDetail {
203
+ productName: string;
204
+ productImage: string;
205
+ imgList: string[];
206
+ specName: string;
207
+ storageMethod: string;
208
+ classification: string;
209
+ supplierName: string;
210
+ destinationName: string;
203
211
  }
204
212
  /** 查询采购单详情响应(含明细列表) */
205
213
  interface GetDetail {
@@ -39,6 +39,8 @@ export declare namespace StoreStockInTypes {
39
39
  /** 入库单明细(含商品信息) */
40
40
  interface StoreStockInOrderDetailWithProduct extends StoreStockInOrderDetail {
41
41
  productName: string;
42
+ productImage: string;
43
+ imgList: string[];
42
44
  specName: string;
43
45
  storageMethod: string;
44
46
  classification: string;
@@ -87,7 +87,7 @@ export declare namespace WarehouseStockInTypes {
87
87
  expectedTimeStart?: number;
88
88
  expectedTimeEnd?: number;
89
89
  productIds?: string[];
90
- skuCode?: string;
90
+ skuCodes?: string[];
91
91
  skuIds?: string[];
92
92
  warehouseIds?: string[];
93
93
  status?: string;
@@ -99,7 +99,7 @@ export declare namespace WarehouseStockInTypes {
99
99
  pageSize: number;
100
100
  productIds?: string[];
101
101
  skuIds?: string[];
102
- skuCode?: string;
102
+ skuCodes?: string[];
103
103
  expectedTimeStart?: number;
104
104
  expectedTimeEnd?: number;
105
105
  minRemainingQuantity?: number;
@@ -142,7 +142,7 @@ export declare namespace WarehouseStockInTypes {
142
142
  expectedTimeStart?: number;
143
143
  expectedTimeEnd?: number;
144
144
  productIds?: string[];
145
- skuCode?: string;
145
+ skuCodes?: string[];
146
146
  skuIds?: string[];
147
147
  warehouseIds?: string[];
148
148
  status?: string;
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.43",
3
+ "version": "0.0.45",
4
4
  "description": "EcommercePlanAllocationService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",