@openvoy/openvoy-typescriptmodels 0.0.1361 → 0.0.1381

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 +9 -1
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -490,6 +490,7 @@ export interface SystemUserKey {
490
490
 
491
491
  export interface Tag {
492
492
  details?: TagDetails;
493
+ internalDetails?: TagInternalDetails;
493
494
  parentTags?: { [index: string]: TagDetails };
494
495
  providerAlias?: string;
495
496
  providerDetails?: TagProviderDetails;
@@ -503,15 +504,21 @@ export interface TagDetails {
503
504
  }
504
505
 
505
506
  export interface TagInfo {
507
+ active?: boolean;
506
508
  bestTour?: TourInfo;
507
- childTags?: { [index: string]: TagDetails };
508
509
  details?: TagDetails;
510
+ internalDetails?: TagInternalDetails;
511
+ parentTags?: { [index: string]: TagDetails };
509
512
  root?: boolean;
510
513
  tagId?: string;
511
514
  timestampOfTourCount?: string;
512
515
  tours?: { [index: string]: TourInfo };
513
516
  }
514
517
 
518
+ export interface TagInternalDetails {
519
+ hiddenOnWebsite?: boolean;
520
+ }
521
+
515
522
  export interface TagProviderDetails {
516
523
  alias?: TagProviderId;
517
524
  provider?: TourProvider;
@@ -643,6 +650,7 @@ export interface UpsertPublicKey extends UserUpdate {
643
650
 
644
651
  export interface UpsertTag {
645
652
  details?: TagDetails;
653
+ internalDetails?: TagInternalDetails;
646
654
  providerDetails?: TagProviderDetails;
647
655
  tagId?: string;
648
656
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.1361",
3
+ "version": "0.0.1381",
4
4
  "types": "core.d.ts"
5
5
  }