@openvoy/openvoy-typescriptmodels 0.0.2221 → 0.0.2251
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 +5 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export interface AttractionInfo {
|
|
|
50
50
|
countryId?: string;
|
|
51
51
|
details?: AttractionDetails;
|
|
52
52
|
primaryCity?: CityDetails;
|
|
53
|
+
primaryCityId?: string;
|
|
53
54
|
regionId?: string;
|
|
54
55
|
subContinent?: string;
|
|
55
56
|
timestampOfTourCount?: string;
|
|
@@ -366,6 +367,10 @@ export interface GenerateApiKey {
|
|
|
366
367
|
export interface GenerateKeyPair {
|
|
367
368
|
}
|
|
368
369
|
|
|
370
|
+
export interface GetAttractionInfo {
|
|
371
|
+
alias?: string;
|
|
372
|
+
}
|
|
373
|
+
|
|
369
374
|
export interface GetCategory {
|
|
370
375
|
categoryId?: string;
|
|
371
376
|
}
|
package/package.json
CHANGED