@openvoy/openvoy-typescriptmodels 0.0.2211 → 0.0.2241
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 +8 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export interface AttractionDetails {
|
|
|
34
34
|
images?: Image[];
|
|
35
35
|
name?: string;
|
|
36
36
|
openingHours?: string;
|
|
37
|
+
primaryCity?: string;
|
|
37
38
|
provider?: TourProvider;
|
|
38
39
|
providerUrl?: string;
|
|
39
40
|
reviews?: ReviewDetails;
|
|
@@ -45,8 +46,10 @@ export interface AttractionInfo {
|
|
|
45
46
|
attractionId?: string;
|
|
46
47
|
cities?: string[];
|
|
47
48
|
continent?: Continent;
|
|
49
|
+
countryDetails?: CountryDetails;
|
|
48
50
|
countryId?: string;
|
|
49
51
|
details?: AttractionDetails;
|
|
52
|
+
primaryCity?: CityDetails;
|
|
50
53
|
regionId?: string;
|
|
51
54
|
subContinent?: string;
|
|
52
55
|
timestampOfTourCount?: string;
|
|
@@ -363,6 +366,10 @@ export interface GenerateApiKey {
|
|
|
363
366
|
export interface GenerateKeyPair {
|
|
364
367
|
}
|
|
365
368
|
|
|
369
|
+
export interface GetAttractionInfo {
|
|
370
|
+
alias?: string;
|
|
371
|
+
}
|
|
372
|
+
|
|
366
373
|
export interface GetCategory {
|
|
367
374
|
categoryId?: string;
|
|
368
375
|
}
|
|
@@ -852,6 +859,7 @@ export const enum CategoryType {
|
|
|
852
859
|
country = "country",
|
|
853
860
|
region = "region",
|
|
854
861
|
city = "city",
|
|
862
|
+
attraction = "attraction",
|
|
855
863
|
tag = "tag",
|
|
856
864
|
tour = "tour",
|
|
857
865
|
}
|
package/package.json
CHANGED