@openvoy/openvoy-typescriptmodels 0.0.2551 → 0.0.2581

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 -0
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -337,6 +337,7 @@ export interface FindRegisteredEmailAddresses {
337
337
  }
338
338
 
339
339
  export interface FindTagSummaries extends FacetedSearch<TagSummary> {
340
+ attractionId?: string;
340
341
  destinationId?: string;
341
342
  type?: DestinationType;
342
343
  }
@@ -381,6 +382,10 @@ export interface GetAttractionSummary {
381
382
  alias?: string;
382
383
  }
383
384
 
385
+ export interface GetAttractionTagInfo {
386
+ tagId?: TagInfoId;
387
+ }
388
+
384
389
  export interface GetCategory {
385
390
  categoryId?: string;
386
391
  }
@@ -625,6 +630,7 @@ export interface TagDetailsInfo extends Comparable<TagDetailsInfo> {
625
630
  export interface TagInfo {
626
631
  alias?: string;
627
632
  associationTags?: string[];
633
+ attractionId?: string;
628
634
  bestTour?: TourInfo;
629
635
  childTags?: { [index: string]: TagDetails };
630
636
  destinationId?: string;
@@ -661,6 +667,7 @@ export interface TagProviderId {
661
667
 
662
668
  export interface TagSummary {
663
669
  alias?: string;
670
+ attractionId?: string;
664
671
  bestTour?: TourInfo;
665
672
  childTags?: string[];
666
673
  destinationId?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.2551",
3
+ "version": "0.0.2581",
4
4
  "types": "core.d.ts"
5
5
  }