@be-link/cs-cli-nodejs 0.0.108 → 0.0.109

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.
@@ -19,7 +19,30 @@ export declare namespace QueryByItemCombo {
19
19
  statusList?: CommodityEnums.CommonSaleStatus[];
20
20
  }
21
21
  }
22
- namespace Response { }
22
+ namespace Response {
23
+ interface IItemCombo {
24
+ /** 套餐ID */
25
+ id: string;
26
+ /** 套餐名称 */
27
+ name: string;
28
+ /** 房型ID列表 */
29
+ roomList: string[];
30
+ /** 状态 */
31
+ status: string;
32
+ mealBitmap: string;
33
+ isCanModifyMeal: boolean;
34
+ }
35
+ type IMGet = IItemCombo;
36
+ interface IMGetShortcut {
37
+ /** 套餐ID */
38
+ id: string;
39
+ /** 套餐名称 */
40
+ name: string;
41
+ /** 状态 */
42
+ status: string;
43
+ basicCombo: IItemCombo[];
44
+ }
45
+ }
23
46
  interface Controller {
24
47
  get(request: QueryByItemCombo.Request.IGet): Promise<GDto.IItemCombo>;
25
48
  getShortcut(request: QueryByItemCombo.Request.IGetForShortcut): Promise<GDto.IItemComboShortcut>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.108",
3
+ "version": "0.0.109",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {