@openvoy/openvoy-typescriptmodels 0.0.1121 → 0.0.1141
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 +21 -8
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -234,8 +234,7 @@ export interface FindCitiesByName {
|
|
|
234
234
|
export interface FindCityInfos extends FacetedSearch<CityInfo> {
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
export interface
|
|
238
|
-
continent?: Continent;
|
|
237
|
+
export interface FindContinentInfos extends FacetedSearch<ContinentInfo> {
|
|
239
238
|
}
|
|
240
239
|
|
|
241
240
|
export interface FindCountries extends FacetedSearch<Country> {
|
|
@@ -250,20 +249,17 @@ export interface FindCountryCities {
|
|
|
250
249
|
countryId?: string;
|
|
251
250
|
}
|
|
252
251
|
|
|
253
|
-
export interface
|
|
254
|
-
countryId?: string;
|
|
252
|
+
export interface FindCountryInfos extends FacetedSearch<CountryInfo> {
|
|
255
253
|
}
|
|
256
254
|
|
|
257
|
-
export interface
|
|
258
|
-
regionId?: string;
|
|
255
|
+
export interface FindRegionInfos extends FacetedSearch<RegionInfo> {
|
|
259
256
|
}
|
|
260
257
|
|
|
261
258
|
export interface FindRegisteredEmailAddresses {
|
|
262
259
|
from?: string;
|
|
263
260
|
}
|
|
264
261
|
|
|
265
|
-
export interface
|
|
266
|
-
subContinentId?: string;
|
|
262
|
+
export interface FindSubContinentInfos extends FacetedSearch<SubContinentInfo> {
|
|
267
263
|
}
|
|
268
264
|
|
|
269
265
|
export interface FindTagCities {
|
|
@@ -329,6 +325,10 @@ export interface GetCityInfo {
|
|
|
329
325
|
cityId?: string;
|
|
330
326
|
}
|
|
331
327
|
|
|
328
|
+
export interface GetContinentInfo {
|
|
329
|
+
continent?: Continent;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
332
|
export interface GetCountriesForHomePage {
|
|
333
333
|
}
|
|
334
334
|
|
|
@@ -342,6 +342,10 @@ export interface GetCountryForProvider {
|
|
|
342
342
|
providerId?: CountryProviderId;
|
|
343
343
|
}
|
|
344
344
|
|
|
345
|
+
export interface GetCountryInfo {
|
|
346
|
+
countryId?: string;
|
|
347
|
+
}
|
|
348
|
+
|
|
345
349
|
export interface GetCountryOfCity {
|
|
346
350
|
countryCode?: string;
|
|
347
351
|
name?: string;
|
|
@@ -356,10 +360,18 @@ export interface GetPublicKey {
|
|
|
356
360
|
userId?: UserId;
|
|
357
361
|
}
|
|
358
362
|
|
|
363
|
+
export interface GetRegionInfo {
|
|
364
|
+
regionId?: string;
|
|
365
|
+
}
|
|
366
|
+
|
|
359
367
|
export interface GetSender {
|
|
360
368
|
userId?: UserId;
|
|
361
369
|
}
|
|
362
370
|
|
|
371
|
+
export interface GetSubContinentInfo {
|
|
372
|
+
subContinentId?: string;
|
|
373
|
+
}
|
|
374
|
+
|
|
363
375
|
export interface GetTagInfo {
|
|
364
376
|
tagId?: string;
|
|
365
377
|
}
|
|
@@ -454,6 +466,7 @@ export interface SubContinentInfo {
|
|
|
454
466
|
alias?: string;
|
|
455
467
|
continent?: Continent;
|
|
456
468
|
countries?: { [index: string]: CountryDetails };
|
|
469
|
+
imageUrls?: string[];
|
|
457
470
|
subContinentId?: string;
|
|
458
471
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
459
472
|
timestampOfTourCount?: string;
|
package/package.json
CHANGED