@openvoy/openvoy-typescriptmodels 0.0.6971 → 0.0.6991
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 +10 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -638,6 +638,10 @@ export interface GetTourProvider {
|
|
|
638
638
|
export interface GetTourProviders {
|
|
639
639
|
}
|
|
640
640
|
|
|
641
|
+
export interface GetTourWithSummary {
|
|
642
|
+
tourId?: TourId;
|
|
643
|
+
}
|
|
644
|
+
|
|
641
645
|
export interface GetUserProfile {
|
|
642
646
|
}
|
|
643
647
|
|
|
@@ -1050,6 +1054,7 @@ export interface TourDetails {
|
|
|
1050
1054
|
additionalInfo?: string[];
|
|
1051
1055
|
ageRange?: TourAgeRange;
|
|
1052
1056
|
bestSeller?: boolean;
|
|
1057
|
+
bookingUrl?: string;
|
|
1053
1058
|
cancellationPolicy?: CancellationPolicy;
|
|
1054
1059
|
certified?: boolean;
|
|
1055
1060
|
description?: string;
|
|
@@ -1181,6 +1186,11 @@ export interface TourUpdate {
|
|
|
1181
1186
|
tourId?: TourId;
|
|
1182
1187
|
}
|
|
1183
1188
|
|
|
1189
|
+
export interface TourWithSummary {
|
|
1190
|
+
summary?: TourSummary;
|
|
1191
|
+
tour?: Tour;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1184
1194
|
export interface ToursUpdater {
|
|
1185
1195
|
}
|
|
1186
1196
|
|
package/package.json
CHANGED