@openvoy/openvoy-typescriptmodels 0.0.1671 → 0.0.1692

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 +7 -1
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -374,8 +374,12 @@ export interface GetSubContinentInfo {
374
374
  subContinentId?: string;
375
375
  }
376
376
 
377
+ export interface GetTagByAlias {
378
+ alias?: string;
379
+ }
380
+
377
381
  export interface GetTagInfo {
378
- tagId?: string;
382
+ alias?: string;
379
383
  }
380
384
 
381
385
  export interface GetTourProvider {
@@ -486,6 +490,7 @@ export interface SystemUserKey {
486
490
  }
487
491
 
488
492
  export interface Tag {
493
+ alias?: string;
489
494
  childTags?: { [index: string]: TagDetails };
490
495
  details?: TagDetails;
491
496
  internalDetails?: TagInternalDetails;
@@ -507,6 +512,7 @@ export interface TagDetails {
507
512
 
508
513
  export interface TagInfo {
509
514
  active?: boolean;
515
+ alias?: string;
510
516
  bestTour?: TourInfo;
511
517
  childTagIds?: string[];
512
518
  childTags?: { [index: string]: TagDetails };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.1671",
3
+ "version": "0.0.1692",
4
4
  "types": "core.d.ts"
5
5
  }