@openvoy/openvoy-typescriptmodels 0.0.2381 → 0.0.2391

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 -5
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -336,7 +336,7 @@ export interface FindTagCities {
336
336
  tagId?: string;
337
337
  }
338
338
 
339
- export interface FindTagInfos extends FacetedSearch<any> {
339
+ export interface FindTagInfos extends FacetedSearch<TagInfo> {
340
340
  }
341
341
 
342
342
  export interface FindTags extends FacetedSearch<Tag> {
@@ -628,20 +628,16 @@ export interface TagDetailsInfo extends Comparable<TagDetailsInfo> {
628
628
  }
629
629
 
630
630
  export interface TagInfo {
631
- active?: boolean;
632
631
  alias?: string;
633
632
  associationTags?: string[];
634
633
  bestTour?: TourInfo;
635
634
  childTagIds?: string[];
636
635
  childTags?: { [index: string]: TagDetails };
637
636
  details?: TagDetails;
638
- enabled?: boolean;
639
- hasChildren?: boolean;
640
637
  internalDetails?: TagInternalDetails;
641
638
  parentTagIds?: string[];
642
639
  parentTags?: { [index: string]: TagDetails };
643
640
  root?: boolean;
644
- showOnHomePage?: boolean;
645
641
  tagId?: string;
646
642
  timestampOfTourCount?: string;
647
643
  totalScore?: number;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.2381",
3
+ "version": "0.0.2391",
4
4
  "types": "core.d.ts"
5
5
  }