@be-link/cs-cli-nodejs 0.0.47 → 0.0.49

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.
@@ -44,7 +44,10 @@ export declare namespace ServiceVenue {
44
44
  city: string;
45
45
  province: string;
46
46
  address: string;
47
- gis: string;
47
+ gis: {
48
+ x: number;
49
+ y: number;
50
+ };
48
51
  };
49
52
  basicInfo?: {
50
53
  address: string;
@@ -193,7 +196,10 @@ export declare namespace ServiceVenue {
193
196
  city: string;
194
197
  province: string;
195
198
  address: string;
196
- gis: string;
199
+ gis: {
200
+ x: number;
201
+ y: number;
202
+ };
197
203
  };
198
204
  pics: string[];
199
205
  type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -10,9 +10,9 @@ export interface QueryBlockDataMap {
10
10
  /** 酒店商品 */
11
11
  hotelItemInfo: IHotelItemInfo;
12
12
  /** 基础套餐 */
13
- combo: IItemCombo;
13
+ combo: IItemCombo[];
14
14
  /** 基础套餐快捷方式 */
15
- comboShortcut: IItemComboShortcut;
15
+ comboShortcut: IItemComboShortcut[];
16
16
  /** 商品销售描述 */
17
17
  salesDescription: IItemSalesDescription;
18
18
  }