@openvoy/openvoy-typescriptmodels 0.0.6041 → 0.0.6061

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.
Files changed (2) hide show
  1. package/core.d.ts +11 -15
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -179,12 +179,7 @@ export interface CountryUpdate {
179
179
  }
180
180
 
181
181
  export interface CreateTour extends TourDetailsUpdate {
182
- attractionId?: string;
183
- cityId?: string;
184
- continent?: Continent;
185
182
  providerDetails?: TourProviderDetails;
186
- regionId?: string;
187
- subContinent?: string;
188
183
  }
189
184
 
190
185
  export interface CreateUser extends UserUpdate {
@@ -974,7 +969,12 @@ export interface TourDetails {
974
969
  }
975
970
 
976
971
  export interface TourDetailsUpdate extends TourUpdate {
972
+ attractionId?: string;
973
+ cityId?: string;
974
+ continent?: Continent;
977
975
  details?: TourDetails;
976
+ regionId?: string;
977
+ subContinent?: string;
978
978
  }
979
979
 
980
980
  export interface TourId {
@@ -1039,12 +1039,7 @@ export interface UiUpdate {
1039
1039
  }
1040
1040
 
1041
1041
  export interface UpdateTour extends TourDetailsUpdate {
1042
- attractionId?: string;
1043
- cityId?: string;
1044
- continent?: Continent;
1045
1042
  providerDetails?: TourProviderDetails;
1046
- regionId?: string;
1047
- subContinent?: string;
1048
1043
  }
1049
1044
 
1050
1045
  export interface UpdateTourPricing {
@@ -1058,6 +1053,9 @@ export interface UpdateTourPricing {
1058
1053
  tourId?: TourId;
1059
1054
  }
1060
1055
 
1056
+ /**
1057
+ * @deprecated for removal
1058
+ */
1061
1059
  export interface UpdateTourRating extends TourUpdate {
1062
1060
  cityId?: string;
1063
1061
  continent?: Continent;
@@ -1066,6 +1064,9 @@ export interface UpdateTourRating extends TourUpdate {
1066
1064
  subContinent?: string;
1067
1065
  }
1068
1066
 
1067
+ /**
1068
+ * @deprecated for removal
1069
+ */
1069
1070
  export interface UpdateTourRelationships extends TourUpdate {
1070
1071
  cityId?: string;
1071
1072
  continent?: Continent;
@@ -1178,12 +1179,7 @@ export interface UpsertTagRelationships extends TagUpdate {
1178
1179
  }
1179
1180
 
1180
1181
  export interface UpsertTour extends TourDetailsUpdate {
1181
- attractionId?: string;
1182
- cityId?: string;
1183
- continent?: Continent;
1184
1182
  providerDetails?: TourProviderDetails;
1185
- regionId?: string;
1186
- subContinent?: string;
1187
1183
  }
1188
1184
 
1189
1185
  export interface UpsertTourAttraction extends TourUpdate {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.6041",
3
+ "version": "0.0.6061",
4
4
  "types": "core.d.ts"
5
5
  }