@openvoy/openvoy-typescriptmodels 0.0.4001 → 0.0.4021

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.
Files changed (2) hide show
  1. package/core.d.ts +4 -0
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -18,6 +18,7 @@ export interface Attraction {
18
18
  alias?: string;
19
19
  attractionId?: string;
20
20
  cityId?: string;
21
+ contentDetails?: ContentDetails;
21
22
  countryId?: string;
22
23
  countryIsoCode?: string;
23
24
  details?: AttractionDetails;
@@ -47,6 +48,7 @@ export interface AttractionDetails {
47
48
  export interface AttractionInfo {
48
49
  alias?: string;
49
50
  attractionId?: string;
51
+ contentDetails?: ContentDetails;
50
52
  countryDetails?: CountryDetails;
51
53
  destinationIds?: DestinationIds;
52
54
  details?: AttractionDetails;
@@ -69,6 +71,7 @@ export interface AttractionProviderId {
69
71
  export interface AttractionSummary {
70
72
  alias?: string;
71
73
  attractionId?: string;
74
+ contentDetails?: ContentDetails;
72
75
  countryDetails?: CountryDetails;
73
76
  destinationIds?: DestinationIds;
74
77
  details?: AttractionDetails;
@@ -910,6 +913,7 @@ export interface UpdateUser extends UserUpdate {
910
913
 
911
914
  export interface UpsertAttraction extends UpsertAttractionCommand {
912
915
  cityId?: string;
916
+ contentDetails?: ContentDetails;
913
917
  }
914
918
 
915
919
  export interface UpsertAttractionCommand extends AttractionCommand {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.4001",
3
+ "version": "0.0.4021",
4
4
  "types": "core.d.ts"
5
5
  }