@openvoy/openvoy-typescriptmodels 0.0.6541 → 0.0.6561
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 -3
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -590,6 +590,11 @@ export interface GetTagSummaryById {
|
|
|
590
590
|
type?: DestinationType;
|
|
591
591
|
}
|
|
592
592
|
|
|
593
|
+
export interface GetTagUsingProvider {
|
|
594
|
+
code?: string;
|
|
595
|
+
id?: string;
|
|
596
|
+
}
|
|
597
|
+
|
|
593
598
|
export interface GetTourProvider {
|
|
594
599
|
code?: string;
|
|
595
600
|
}
|
|
@@ -845,7 +850,7 @@ export interface StackTraceElement extends Serializable {
|
|
|
845
850
|
export interface Supplier<T> {
|
|
846
851
|
}
|
|
847
852
|
|
|
848
|
-
export interface
|
|
853
|
+
export interface SyncAllTagSummaries {
|
|
849
854
|
}
|
|
850
855
|
|
|
851
856
|
export interface SyncDestinationTours {
|
|
@@ -859,8 +864,7 @@ export interface SyncDestinationTours {
|
|
|
859
864
|
type?: DestinationType;
|
|
860
865
|
}
|
|
861
866
|
|
|
862
|
-
export interface
|
|
863
|
-
syncChildren?: boolean;
|
|
867
|
+
export interface SyncTagSummaryWithTours {
|
|
864
868
|
tagId?: string;
|
|
865
869
|
}
|
|
866
870
|
|
package/package.json
CHANGED