@openvoy/openvoy-typescriptmodels 0.0.3541 → 0.0.3561
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 +9 -0
- 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
|
}
|
|
@@ -332,9 +336,14 @@ export interface FindCountriesByCategory extends FacetedSearch<DestinationSummar
|
|
|
332
336
|
}
|
|
333
337
|
|
|
334
338
|
export interface FindDestinations extends FacetedSearch<DestinationSummary> {
|
|
339
|
+
term?: string;
|
|
335
340
|
type?: DestinationType;
|
|
336
341
|
}
|
|
337
342
|
|
|
343
|
+
export interface FindRegions extends FacetedSearch<Region> {
|
|
344
|
+
term?: string;
|
|
345
|
+
}
|
|
346
|
+
|
|
338
347
|
export interface FindRegisteredEmailAddresses {
|
|
339
348
|
from?: string;
|
|
340
349
|
}
|
package/package.json
CHANGED