@be-link/cs-cli-nodejs 0.0.154 → 0.0.155

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.
@@ -68,24 +68,26 @@ export declare namespace RoomStockNamespace {
68
68
  bizId: string;
69
69
  /** 供应商ID */
70
70
  supplierId: string;
71
- /** 房间ID列表 */
72
- roomIds: string[];
73
71
  /** 日期列表 */
74
72
  dates: number[];
75
- /** 数量 */
76
- count: number;
73
+ /** 库存信息 */
74
+ stockInfo: {
75
+ /** 房间Id : 库存数量 */
76
+ [roomId: string]: number;
77
+ };
77
78
  }
78
79
  interface IRollbackStock {
79
80
  /** 业务流水 */
80
81
  bizId: string;
81
82
  /** 供应商ID */
82
83
  supplierId: string;
83
- /** 房间ID列表 */
84
- roomIds: string[];
85
84
  /** 日期列表 */
86
85
  dates: number[];
87
- /** 数量 */
88
- count: number;
86
+ /** 库存信息 */
87
+ stockInfo: {
88
+ /** 房间Id : 库存数量 */
89
+ [roomId: string]: number;
90
+ };
89
91
  }
90
92
  interface IQuery {
91
93
  /** 供应商ID */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.154",
3
+ "version": "0.0.155",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {