@openvoy/openvoy-typescriptmodels 0.0.2021 → 0.0.2041

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.
Files changed (2) hide show
  1. package/core.d.ts +1 -23
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -54,10 +54,8 @@ export interface CityInfo {
54
54
  newTours?: { [index: string]: number };
55
55
  regionId?: string;
56
56
  subContinent?: string;
57
- tags?: { [index: string]: TagDetailsInfo };
58
57
  timestampOfTourCount?: string;
59
58
  tourWithImageForCity?: Tour;
60
- tours?: TourInfo[];
61
59
  }
62
60
 
63
61
  export interface CityProviderDetails {
@@ -93,9 +91,7 @@ export interface ContinentInfo {
93
91
  newTags?: { [index: string]: TagScoreInfo };
94
92
  newTours?: { [index: string]: number };
95
93
  subContinents?: string[];
96
- tags?: { [index: string]: TagDetailsInfo };
97
94
  timestampOfTourCount?: string;
98
- tours?: TourInfo[];
99
95
  }
100
96
 
101
97
  export interface Country {
@@ -130,9 +126,7 @@ export interface CountryInfo {
130
126
  newTags?: { [index: string]: TagScoreInfo };
131
127
  newTours?: { [index: string]: number };
132
128
  regions?: Region[];
133
- tags?: { [index: string]: TagDetailsInfo };
134
129
  timestampOfTourCount?: string;
135
- tours?: TourInfo[];
136
130
  }
137
131
 
138
132
  export interface CountryProviderDetails {
@@ -418,19 +412,6 @@ export interface LatLong {
418
412
  longitude?: number;
419
413
  }
420
414
 
421
- export interface MigrateAllDestinationData {
422
- type?: CategoryType;
423
- }
424
-
425
- export interface MigrateDestinationData {
426
- cityId?: string;
427
- continent?: Continent;
428
- countryId?: string;
429
- regionId?: string;
430
- resetOriginal?: boolean;
431
- subContinentId?: string;
432
- }
433
-
434
415
  export interface Pagination {
435
416
  count?: number;
436
417
  from?: number;
@@ -461,9 +442,7 @@ export interface RegionInfo {
461
442
  newTags?: { [index: string]: TagScoreInfo };
462
443
  newTours?: { [index: string]: number };
463
444
  regionId?: string;
464
- tags?: { [index: string]: TagDetailsInfo };
465
445
  timestampOfTourCount?: string;
466
- tours?: TourInfo[];
467
446
  }
468
447
 
469
448
  export interface RegisterEmailAddress {
@@ -502,9 +481,7 @@ export interface SubContinentInfo {
502
481
  newTags?: { [index: string]: TagScoreInfo };
503
482
  newTours?: { [index: string]: number };
504
483
  subContinentId?: string;
505
- tags?: { [index: string]: TagDetailsInfo };
506
484
  timestampOfTourCount?: string;
507
- tours?: TourInfo[];
508
485
  }
509
486
 
510
487
  export interface Supplier<T> {
@@ -540,6 +517,7 @@ export interface TagCommand {
540
517
  }
541
518
 
542
519
  export interface TagDetails {
520
+ alias?: string;
543
521
  name?: string;
544
522
  namesByLocale?: { [index: string]: string };
545
523
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.2021",
3
+ "version": "0.0.2041",
4
4
  "types": "core.d.ts"
5
5
  }