@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.
- package/cs/modules/serviceVenue/types.d.ts +8 -2
- package/package.json +1 -1
- package/types.d.ts +2 -2
|
@@ -44,7 +44,10 @@ export declare namespace ServiceVenue {
|
|
|
44
44
|
city: string;
|
|
45
45
|
province: string;
|
|
46
46
|
address: string;
|
|
47
|
-
gis:
|
|
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:
|
|
199
|
+
gis: {
|
|
200
|
+
x: number;
|
|
201
|
+
y: number;
|
|
202
|
+
};
|
|
197
203
|
};
|
|
198
204
|
pics: string[];
|
|
199
205
|
type: string;
|
package/package.json
CHANGED
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
|
}
|