@be-link/cs-cli-nodejs 0.1.64 → 0.1.65

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.
@@ -86,7 +86,9 @@ export declare namespace Facility {
86
86
  }[];
87
87
  }[];
88
88
  }
89
- type MgetRelatedFacilities = Record<string, DTO.FacilityRelation[]>;
89
+ type MgetRelatedFacilities = Record<string, DTO.FacilityRelation[] & {
90
+ name: string;
91
+ }>;
90
92
  }
91
93
  interface Controller {
92
94
  /** 查询子类目列表 */
@@ -20,6 +20,7 @@ export declare namespace ManageByItemCombo {
20
20
  maxNightNum?: number;
21
21
  isOnlyDoubleQuantity?: boolean;
22
22
  mealMenuPics?: string[];
23
+ mealMenuDesc?: string;
23
24
  isCanShowEntertainmentInfo?: boolean;
24
25
  };
25
26
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -203,6 +203,8 @@ export interface IItemCombo {
203
203
  isOnlyDoubleQuantity: boolean;
204
204
  /** 餐饮菜单图片 */
205
205
  mealMenuPics: string[];
206
+ /** 餐饮菜单描述 */
207
+ mealMenuDesc: string;
206
208
  /** 是否展示娱乐信息 */
207
209
  isCanShowEntertainmentInfo: boolean;
208
210
  };