@openvoy/openvoy-typescriptmodels 0.0.4231 → 0.0.4241
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 +12 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -903,6 +903,18 @@ export interface TourProviderId {
|
|
|
903
903
|
type?: any;
|
|
904
904
|
}
|
|
905
905
|
|
|
906
|
+
export interface TourSummary {
|
|
907
|
+
cityId?: string;
|
|
908
|
+
continent?: Continent;
|
|
909
|
+
countryId?: string;
|
|
910
|
+
details?: TourDetails;
|
|
911
|
+
pricing?: { [index: string]: TourPricing };
|
|
912
|
+
regionId?: string;
|
|
913
|
+
subContinent?: string;
|
|
914
|
+
tourId?: TourId;
|
|
915
|
+
tourScore?: number;
|
|
916
|
+
}
|
|
917
|
+
|
|
906
918
|
export interface TourUpdate {
|
|
907
919
|
countryId?: string;
|
|
908
920
|
tourId?: TourId;
|
package/package.json
CHANGED