@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.10 → 0.0.12

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.
@@ -109,14 +109,10 @@ export declare namespace Service {
109
109
  }
110
110
  /** 配货单运单号 */
111
111
  interface WayBill {
112
- /** 配货单ID */
113
- allocationOrderId: string;
114
112
  /** 快递单号 */
115
113
  num: string;
116
114
  /** 快递公司编码 */
117
115
  carrier: number;
118
- /** 操作类型:0-未操作、1-新增、2-删除 */
119
- action?: number;
120
116
  }
121
117
  namespace Request {
122
118
  /** 批量导入运货单 */
@@ -142,9 +138,15 @@ export declare namespace Service {
142
138
  subscribeStatus?: number;
143
139
  /** 操作人 */
144
140
  operator?: string;
141
+ /** 执行时间-介于开始时间 */
142
+ start?: number;
143
+ /** 执行时间-介于结束时间 */
144
+ end?: number;
145
145
  }
146
146
  /** 配货单单独写入运货单 */
147
147
  interface WriteWaybill {
148
+ /** 配货单ID */
149
+ allocationOrderId: string;
148
150
  /** 编辑运单号 */
149
151
  wayBill: WayBill[];
150
152
  }
@@ -205,6 +207,8 @@ export declare namespace Service {
205
207
  successAllocationOrderIds: string[];
206
208
  /** 系统中不存在(或不满足条件)的配货单ID列表 */
207
209
  failedAllocationOrderIds: string[];
210
+ /** Excel解析错误信息列表 */
211
+ errors: string[];
208
212
  }
209
213
  /** 运货单列表 */
210
214
  interface GetWaybillList {
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.10",
3
+ "version": "0.0.12",
4
4
  "description": "EcommercePlanAllocationService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",