@openvoy/openvoy-typescriptmodels 0.0.2271 → 0.0.2291

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 +6 -2
  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
- attractionId?: string;
233
+ export interface DeleteAttraction extends AttractionCommand {
234
+ }
235
+
236
+ export interface DeleteAttractions {
237
+ batchSize?: number;
234
238
  }
235
239
 
236
240
  export interface DeleteTour {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.2271",
3
+ "version": "0.0.2291",
4
4
  "types": "core.d.ts"
5
5
  }