@openvoy/openvoy-typescriptmodels 0.0.2342 → 0.0.2361
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 +27 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -762,6 +762,33 @@ export interface UpdateTour extends TourDetailsUpdate {
|
|
|
762
762
|
subContinent?: string;
|
|
763
763
|
}
|
|
764
764
|
|
|
765
|
+
export interface UpdateTourPricing extends TourUpdate {
|
|
766
|
+
cityId?: string;
|
|
767
|
+
continent?: Continent;
|
|
768
|
+
countryId?: string;
|
|
769
|
+
pricing?: { [index: string]: TourPricing };
|
|
770
|
+
regionId?: string;
|
|
771
|
+
subContinent?: string;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
export interface UpdateTourRating extends TourUpdate {
|
|
775
|
+
cityId?: string;
|
|
776
|
+
continent?: Continent;
|
|
777
|
+
countryId?: string;
|
|
778
|
+
ratingDetails?: RatingDetails;
|
|
779
|
+
regionId?: string;
|
|
780
|
+
subContinent?: string;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
export interface UpdateTourRelationships extends TourUpdate {
|
|
784
|
+
cityId?: string;
|
|
785
|
+
continent?: Continent;
|
|
786
|
+
countryId?: string;
|
|
787
|
+
regionId?: string;
|
|
788
|
+
subContinent?: string;
|
|
789
|
+
tags?: string[];
|
|
790
|
+
}
|
|
791
|
+
|
|
765
792
|
export interface UpdateUser extends UserUpdate {
|
|
766
793
|
details?: UserDetails;
|
|
767
794
|
}
|
package/package.json
CHANGED