@openvoy/openvoy-typescriptmodels 0.0.3571 → 0.0.3582
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 +2 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -317,6 +317,7 @@ export interface FetchString {
|
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
export interface FindAttractionSummaries extends FacetedSearch<AttractionSummary> {
|
|
320
|
+
term?: string;
|
|
320
321
|
}
|
|
321
322
|
|
|
322
323
|
export interface FindCities extends FacetedSearch<City> {
|
|
@@ -351,6 +352,7 @@ export interface FindRegisteredEmailAddresses {
|
|
|
351
352
|
export interface FindTagSummaries extends FacetedSearch<TagSummary> {
|
|
352
353
|
attractionId?: string;
|
|
353
354
|
destinationId?: string;
|
|
355
|
+
term?: string;
|
|
354
356
|
type?: DestinationType;
|
|
355
357
|
}
|
|
356
358
|
|
package/package.json
CHANGED