@openvoy/openvoy-typescriptmodels 0.0.2201 → 0.0.2221
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 +4 -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;
|
|
@@ -852,6 +855,7 @@ export const enum CategoryType {
|
|
|
852
855
|
country = "country",
|
|
853
856
|
region = "region",
|
|
854
857
|
city = "city",
|
|
858
|
+
attraction = "attraction",
|
|
855
859
|
tag = "tag",
|
|
856
860
|
tour = "tour",
|
|
857
861
|
}
|
package/package.json
CHANGED