@be-link/pos-cli-nodejs 1.0.38 → 1.0.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -258,8 +258,8 @@ export declare namespace Service {
258
258
  }
259
259
  interface IUpdateOrderAttribute {
260
260
  /** 订单ID */
261
- orderId: string;
262
- attributes: Omit<DTO.IPositiveAttributes, 'id' | 'createdAt' | 'updatedAt'>;
261
+ orderIds: string[];
262
+ attributes: Partial<Omit<DTO.IPositiveAttributes, 'id' | 'createdAt' | 'updatedAt'>>;
263
263
  }
264
264
  }
265
265
  namespace Response {