@openvoy/openvoy-typescriptmodels 0.0.6971 → 0.0.6981
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 +9 -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
|
|
|
@@ -1181,6 +1185,11 @@ export interface TourUpdate {
|
|
|
1181
1185
|
tourId?: TourId;
|
|
1182
1186
|
}
|
|
1183
1187
|
|
|
1188
|
+
export interface TourWithSummary {
|
|
1189
|
+
summary?: TourSummary;
|
|
1190
|
+
tour?: Tour;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1184
1193
|
export interface ToursUpdater {
|
|
1185
1194
|
}
|
|
1186
1195
|
|
package/package.json
CHANGED