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