@openvoy/openvoy-typescriptmodels 0.0.1621 → 0.0.1641
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 +113 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -229,14 +229,67 @@ export interface FeatureCountry extends CountryUpdate {
|
|
|
229
229
|
export interface FetchString {
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
+
export interface FindCities extends FacetedSearch<City> {
|
|
233
|
+
term?: string;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export interface FindCitiesByName {
|
|
237
|
+
name?: string;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface FindCityInfos extends FacetedSearch<CityInfo> {
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export interface FindContinentInfos extends FacetedSearch<ContinentInfo> {
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface FindCountries extends FacetedSearch<Country> {
|
|
247
|
+
term?: string;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export interface FindCountriesByCategory {
|
|
251
|
+
category?: string;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
export interface FindCountryInfos extends FacetedSearch<CountryInfo> {
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface FindRegionInfos extends FacetedSearch<RegionInfo> {
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface FindRegisteredEmailAddresses {
|
|
261
|
+
from?: string;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export interface FindSubContinentInfos extends FacetedSearch<SubContinentInfo> {
|
|
265
|
+
}
|
|
266
|
+
|
|
232
267
|
export interface FindTagCities {
|
|
233
268
|
tagId?: string;
|
|
234
269
|
}
|
|
235
270
|
|
|
271
|
+
export interface FindTagInfos extends FacetedSearch<TagInfo> {
|
|
272
|
+
}
|
|
273
|
+
|
|
236
274
|
export interface FindTags extends FacetedSearch<Tag> {
|
|
237
275
|
term?: string;
|
|
238
276
|
}
|
|
239
277
|
|
|
278
|
+
export interface FindTours extends FacetedSearch<Tour> {
|
|
279
|
+
term?: string;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
export interface FindToursForDestination extends FacetedSearch<Tour> {
|
|
283
|
+
cityId?: string;
|
|
284
|
+
continent?: Continent;
|
|
285
|
+
countryId?: string;
|
|
286
|
+
regionId?: string;
|
|
287
|
+
subContinentId?: string;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
export interface Function<T, R> {
|
|
291
|
+
}
|
|
292
|
+
|
|
240
293
|
export interface GenerateApiKey {
|
|
241
294
|
issuedAt?: string;
|
|
242
295
|
keyId?: string;
|
|
@@ -246,35 +299,85 @@ export interface GenerateApiKey {
|
|
|
246
299
|
export interface GenerateKeyPair {
|
|
247
300
|
}
|
|
248
301
|
|
|
302
|
+
export interface GetCategory {
|
|
303
|
+
categoryId?: string;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
export interface GetCategoryByCode {
|
|
307
|
+
categoryType?: CategoryType;
|
|
308
|
+
code?: string;
|
|
309
|
+
}
|
|
310
|
+
|
|
249
311
|
export interface GetCategoryEntity {
|
|
250
312
|
categoryId?: string;
|
|
251
313
|
}
|
|
252
314
|
|
|
315
|
+
export interface GetCity {
|
|
316
|
+
cityId?: string;
|
|
317
|
+
code?: string;
|
|
318
|
+
}
|
|
319
|
+
|
|
253
320
|
export interface GetCityForProvider {
|
|
254
321
|
countryCode?: string;
|
|
255
322
|
name?: string;
|
|
256
323
|
providerId?: CityProviderId;
|
|
257
324
|
}
|
|
258
325
|
|
|
326
|
+
export interface GetCityInfo {
|
|
327
|
+
cityId?: string;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
export interface GetContinentInfo {
|
|
331
|
+
continent?: Continent;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export interface GetCountriesForHomePage {
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
export interface GetCountry {
|
|
338
|
+
code?: string;
|
|
339
|
+
countryId?: string;
|
|
340
|
+
}
|
|
341
|
+
|
|
259
342
|
export interface GetCountryForProvider {
|
|
260
343
|
countryName?: string;
|
|
261
344
|
providerId?: CountryProviderId;
|
|
262
345
|
}
|
|
263
346
|
|
|
347
|
+
export interface GetCountryInfo {
|
|
348
|
+
countryId?: string;
|
|
349
|
+
}
|
|
350
|
+
|
|
264
351
|
export interface GetCountryOfCity {
|
|
265
352
|
countryCode?: string;
|
|
266
353
|
name?: string;
|
|
267
354
|
providerId?: CityProviderId;
|
|
268
355
|
}
|
|
269
356
|
|
|
357
|
+
export interface GetFacets extends FacetableRequest {
|
|
358
|
+
query?: FacetableRequest;
|
|
359
|
+
}
|
|
360
|
+
|
|
270
361
|
export interface GetPublicKey {
|
|
271
362
|
userId?: UserId;
|
|
272
363
|
}
|
|
273
364
|
|
|
365
|
+
export interface GetRegionInfo {
|
|
366
|
+
regionId?: string;
|
|
367
|
+
}
|
|
368
|
+
|
|
274
369
|
export interface GetSender {
|
|
275
370
|
userId?: UserId;
|
|
276
371
|
}
|
|
277
372
|
|
|
373
|
+
export interface GetSubContinentInfo {
|
|
374
|
+
subContinentId?: string;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
export interface GetTagInfo {
|
|
378
|
+
tagId?: string;
|
|
379
|
+
}
|
|
380
|
+
|
|
278
381
|
export interface GetTourProvider {
|
|
279
382
|
code?: string;
|
|
280
383
|
}
|
|
@@ -336,11 +439,21 @@ export interface RegionInfo {
|
|
|
336
439
|
tours?: TourInfo[];
|
|
337
440
|
}
|
|
338
441
|
|
|
442
|
+
export interface RegisterEmailAddress {
|
|
443
|
+
emailAddress?: Email;
|
|
444
|
+
}
|
|
445
|
+
|
|
339
446
|
export interface RegisteredEmailAddress {
|
|
340
447
|
createdAt?: string;
|
|
341
448
|
emailAddress?: Email;
|
|
342
449
|
}
|
|
343
450
|
|
|
451
|
+
export interface SearchCategories {
|
|
452
|
+
converter?: Function<any, Category>;
|
|
453
|
+
term?: string;
|
|
454
|
+
terms?: string[];
|
|
455
|
+
}
|
|
456
|
+
|
|
344
457
|
export interface Secret {
|
|
345
458
|
secret?: string;
|
|
346
459
|
}
|
package/package.json
CHANGED