@openvoy/openvoy-typescriptmodels 0.0.6401 → 0.0.6411
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.
- package/core.d.ts +7 -2
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -489,7 +489,7 @@ export interface GetAttractionSummary {
|
|
|
489
489
|
alias?: string;
|
|
490
490
|
}
|
|
491
491
|
|
|
492
|
-
export interface
|
|
492
|
+
export interface GetAttractionTagSummary {
|
|
493
493
|
tagId?: string;
|
|
494
494
|
}
|
|
495
495
|
|
|
@@ -569,7 +569,7 @@ export interface GetTagInfo {
|
|
|
569
569
|
tagId?: string;
|
|
570
570
|
}
|
|
571
571
|
|
|
572
|
-
export interface
|
|
572
|
+
export interface GetTagSummariesById {
|
|
573
573
|
destinationType?: DestinationType;
|
|
574
574
|
ids?: string[];
|
|
575
575
|
}
|
|
@@ -580,6 +580,11 @@ export interface GetTagSummary {
|
|
|
580
580
|
type?: DestinationType;
|
|
581
581
|
}
|
|
582
582
|
|
|
583
|
+
export interface GetTagSummaryById {
|
|
584
|
+
tagId?: string;
|
|
585
|
+
type?: DestinationType;
|
|
586
|
+
}
|
|
587
|
+
|
|
583
588
|
export interface GetTourProvider {
|
|
584
589
|
code?: string;
|
|
585
590
|
}
|
package/package.json
CHANGED