@openvoy/openvoy-typescriptmodels 0.0.1111 → 0.0.1121
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/core.d.ts +7 -2
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -42,10 +42,12 @@ export interface CityDetails {
|
|
|
42
42
|
export interface CityInfo {
|
|
43
43
|
alias?: string;
|
|
44
44
|
cityId?: string;
|
|
45
|
+
continent?: Continent;
|
|
45
46
|
countryDetails?: CountryDetails;
|
|
46
47
|
countryId?: string;
|
|
47
48
|
details?: CityDetails;
|
|
48
49
|
regionId?: string;
|
|
50
|
+
subContinent?: string;
|
|
49
51
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
50
52
|
timestampOfTourCount?: string;
|
|
51
53
|
tours?: TourInfo[];
|
|
@@ -229,8 +231,7 @@ export interface FindCitiesByName {
|
|
|
229
231
|
name?: string;
|
|
230
232
|
}
|
|
231
233
|
|
|
232
|
-
export interface
|
|
233
|
-
cityId?: string;
|
|
234
|
+
export interface FindCityInfos extends FacetedSearch<CityInfo> {
|
|
234
235
|
}
|
|
235
236
|
|
|
236
237
|
export interface FindContinentInfo {
|
|
@@ -324,6 +325,10 @@ export interface GetCityForProvider {
|
|
|
324
325
|
providerId?: CityProviderId;
|
|
325
326
|
}
|
|
326
327
|
|
|
328
|
+
export interface GetCityInfo {
|
|
329
|
+
cityId?: string;
|
|
330
|
+
}
|
|
331
|
+
|
|
327
332
|
export interface GetCountriesForHomePage {
|
|
328
333
|
}
|
|
329
334
|
|
package/package.json
CHANGED