@openvoy/openvoy-typescriptmodels 0.0.1111 → 0.0.1131
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 +28 -10
- 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,12 +231,10 @@ 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
|
-
export interface
|
|
237
|
-
continent?: Continent;
|
|
237
|
+
export interface FindContinentInfos extends FacetedSearch<ContinentInfo> {
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
export interface FindCountries extends FacetedSearch<Country> {
|
|
@@ -249,20 +249,17 @@ export interface FindCountryCities {
|
|
|
249
249
|
countryId?: string;
|
|
250
250
|
}
|
|
251
251
|
|
|
252
|
-
export interface
|
|
253
|
-
countryId?: string;
|
|
252
|
+
export interface FindCountryInfos extends FacetedSearch<CountryInfo> {
|
|
254
253
|
}
|
|
255
254
|
|
|
256
|
-
export interface
|
|
257
|
-
regionId?: string;
|
|
255
|
+
export interface FindRegionInfos extends FacetedSearch<RegionInfo> {
|
|
258
256
|
}
|
|
259
257
|
|
|
260
258
|
export interface FindRegisteredEmailAddresses {
|
|
261
259
|
from?: string;
|
|
262
260
|
}
|
|
263
261
|
|
|
264
|
-
export interface
|
|
265
|
-
subContinentId?: string;
|
|
262
|
+
export interface FindSubContinentInfos extends FacetedSearch<SubContinentInfo> {
|
|
266
263
|
}
|
|
267
264
|
|
|
268
265
|
export interface FindTagCities {
|
|
@@ -324,6 +321,14 @@ export interface GetCityForProvider {
|
|
|
324
321
|
providerId?: CityProviderId;
|
|
325
322
|
}
|
|
326
323
|
|
|
324
|
+
export interface GetCityInfo {
|
|
325
|
+
cityId?: string;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
export interface GetContinentInfo {
|
|
329
|
+
continent?: Continent;
|
|
330
|
+
}
|
|
331
|
+
|
|
327
332
|
export interface GetCountriesForHomePage {
|
|
328
333
|
}
|
|
329
334
|
|
|
@@ -337,6 +342,10 @@ export interface GetCountryForProvider {
|
|
|
337
342
|
providerId?: CountryProviderId;
|
|
338
343
|
}
|
|
339
344
|
|
|
345
|
+
export interface GetCountryInfo {
|
|
346
|
+
countryId?: string;
|
|
347
|
+
}
|
|
348
|
+
|
|
340
349
|
export interface GetCountryOfCity {
|
|
341
350
|
countryCode?: string;
|
|
342
351
|
name?: string;
|
|
@@ -351,10 +360,18 @@ export interface GetPublicKey {
|
|
|
351
360
|
userId?: UserId;
|
|
352
361
|
}
|
|
353
362
|
|
|
363
|
+
export interface GetRegionInfo {
|
|
364
|
+
regionId?: string;
|
|
365
|
+
}
|
|
366
|
+
|
|
354
367
|
export interface GetSender {
|
|
355
368
|
userId?: UserId;
|
|
356
369
|
}
|
|
357
370
|
|
|
371
|
+
export interface GetSubContinentInfo {
|
|
372
|
+
subContinentId?: string;
|
|
373
|
+
}
|
|
374
|
+
|
|
358
375
|
export interface GetTagInfo {
|
|
359
376
|
tagId?: string;
|
|
360
377
|
}
|
|
@@ -449,6 +466,7 @@ export interface SubContinentInfo {
|
|
|
449
466
|
alias?: string;
|
|
450
467
|
continent?: Continent;
|
|
451
468
|
countries?: { [index: string]: CountryDetails };
|
|
469
|
+
imageUrls?: string[];
|
|
452
470
|
subContinentId?: string;
|
|
453
471
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
454
472
|
timestampOfTourCount?: string;
|
package/package.json
CHANGED