@openvoy/openvoy-typescriptmodels 0.0.3531 → 0.0.3551

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 +8 -0
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -319,6 +319,10 @@ export interface FetchString {
319
319
  export interface FindAttractionSummaries extends FacetedSearch<AttractionSummary> {
320
320
  }
321
321
 
322
+ export interface FindCities extends FacetedSearch<City> {
323
+ term?: string;
324
+ }
325
+
322
326
  export interface FindCitiesByName {
323
327
  name?: string;
324
328
  }
@@ -335,6 +339,10 @@ export interface FindDestinations extends FacetedSearch<DestinationSummary> {
335
339
  type?: DestinationType;
336
340
  }
337
341
 
342
+ export interface FindRegions extends FacetedSearch<Region> {
343
+ term?: string;
344
+ }
345
+
338
346
  export interface FindRegisteredEmailAddresses {
339
347
  from?: string;
340
348
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.3531",
3
+ "version": "0.0.3551",
4
4
  "types": "core.d.ts"
5
5
  }