@openvoy/openvoy-typescriptmodels 0.0.2281 → 0.0.2301
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 -2
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export interface Attraction {
|
|
|
19
19
|
attractionId?: string;
|
|
20
20
|
countryIsoCode?: string;
|
|
21
21
|
details?: AttractionDetails;
|
|
22
|
+
providerAliases?: string[];
|
|
22
23
|
providerDetails?: { [index: string]: AttractionProviderDetails };
|
|
23
24
|
}
|
|
24
25
|
|
|
@@ -229,8 +230,11 @@ export interface DateRange extends Comparable<DateRange> {
|
|
|
229
230
|
start?: string;
|
|
230
231
|
}
|
|
231
232
|
|
|
232
|
-
export interface DeleteAttraction {
|
|
233
|
-
|
|
233
|
+
export interface DeleteAttraction extends AttractionCommand {
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export interface DeleteAttractions {
|
|
237
|
+
batchSize?: number;
|
|
234
238
|
}
|
|
235
239
|
|
|
236
240
|
export interface DeleteTour {
|
|
@@ -791,6 +795,10 @@ export interface UpsertCountry extends CountryUpdate {
|
|
|
791
795
|
providerDetails?: CountryProviderDetails;
|
|
792
796
|
}
|
|
793
797
|
|
|
798
|
+
export interface UpsertFeaturedCountriesFromRefData {
|
|
799
|
+
refData?: Supplier<CountryDetails[]>;
|
|
800
|
+
}
|
|
801
|
+
|
|
794
802
|
/**
|
|
795
803
|
* @deprecated for removal
|
|
796
804
|
*/
|
package/package.json
CHANGED