@openvoy/openvoy-typescriptmodels 0.0.3632 → 0.0.3651

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 +56 -2
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -102,6 +102,7 @@ export interface City {
102
102
  alias?: string;
103
103
  attractions?: Attraction[];
104
104
  cityId?: string;
105
+ contentDetails?: ContentDetails;
105
106
  countryIsoCode?: string;
106
107
  details?: CityDetails;
107
108
  providerAliases?: string[];
@@ -134,16 +135,22 @@ export interface CityTourDetails {
134
135
 
135
136
  export interface CityUpdate extends CountryUpdate {
136
137
  cityId?: string;
137
- details?: CityDetails;
138
138
  }
139
139
 
140
140
  export interface Comparable<T> {
141
141
  }
142
142
 
143
+ export interface ContentDetails {
144
+ promotionalText?: string;
145
+ promotionalTitle?: string;
146
+ seoSettings?: SeoSettings;
147
+ }
148
+
143
149
  export interface Country {
144
150
  alias?: string;
145
151
  attractions?: Attraction[];
146
152
  cities?: City[];
153
+ contentDetails?: ContentDetails;
147
154
  countryId?: string;
148
155
  details?: CountryDetails;
149
156
  featured?: boolean;
@@ -234,6 +241,7 @@ export interface DestinationInfo {
234
241
  alias?: string;
235
242
  bestTour?: TourInfo;
236
243
  cityDetails?: DestinationCityDetails;
244
+ contentDetails?: ContentDetails;
237
245
  continentDetails?: DestinationContinentDetails;
238
246
  countryDetails?: DestinationCountryDetails;
239
247
  destinationId?: string;
@@ -259,6 +267,7 @@ export interface DestinationSummary {
259
267
  alias?: string;
260
268
  bestTour?: TourInfo;
261
269
  cityDetails?: DestinationCityDetails;
270
+ contentDetails?: ContentDetails;
262
271
  continentDetails?: DestinationContinentDetails;
263
272
  countryDetails?: DestinationCountryDetails;
264
273
  destinationId?: string;
@@ -552,6 +561,7 @@ export interface RefreshSitemaps {
552
561
  }
553
562
 
554
563
  export interface Region {
564
+ contentDetails?: ContentDetails;
555
565
  countryIsoCode?: string;
556
566
  details?: RegionDetails;
557
567
  providerDetails?: { [index: string]: RegionProviderDetails };
@@ -573,7 +583,6 @@ export interface RegionProviderId {
573
583
  }
574
584
 
575
585
  export interface RegionUpdate extends CountryUpdate {
576
- details?: RegionDetails;
577
586
  regionId?: string;
578
587
  }
579
588
 
@@ -610,6 +619,14 @@ export interface Secret {
610
619
  export interface SendWebRequest {
611
620
  }
612
621
 
622
+ export interface SeoSettings {
623
+ index?: boolean;
624
+ metaDescription?: string;
625
+ pageDescription?: string;
626
+ pageHeader?: string;
627
+ seoTitle?: string;
628
+ }
629
+
613
630
  export interface SetUserRole extends UserUpdate {
614
631
  userRole?: Role;
615
632
  }
@@ -652,6 +669,7 @@ export interface SystemUserKey {
652
669
  export interface Tag {
653
670
  alias?: string;
654
671
  childTags?: { [index: string]: TagDetails };
672
+ contentDetails?: ContentDetails;
655
673
  details?: TagDetails;
656
674
  enabled?: boolean;
657
675
  internalDetails?: TagInternalDetails;
@@ -685,6 +703,7 @@ export interface TagInfo {
685
703
  attractionId?: string;
686
704
  bestTour?: TourInfo;
687
705
  childTags?: { [index: string]: TagDetails };
706
+ contentDetails?: ContentDetails;
688
707
  destinationAlias?: string;
689
708
  destinationId?: string;
690
709
  destinationIds?: DestinationIds;
@@ -719,6 +738,7 @@ export interface TagSummary {
719
738
  attractionId?: string;
720
739
  bestTour?: TourInfo;
721
740
  childTags?: string[];
741
+ contentDetails?: ContentDetails;
722
742
  destinationAlias?: string;
723
743
  destinationId?: string;
724
744
  destinationIds?: DestinationIds;
@@ -867,9 +887,14 @@ export interface UpsertAttractionForCountry extends UpsertAttractionCommand {
867
887
  }
868
888
 
869
889
  export interface UpsertCity extends CityUpdate {
890
+ details?: CityDetails;
870
891
  providerDetails?: CityProviderDetails;
871
892
  }
872
893
 
894
+ export interface UpsertCityContentDetails extends CityUpdate {
895
+ contentDetails?: ContentDetails;
896
+ }
897
+
873
898
  export interface UpsertCountriesFromRefData {
874
899
  refData?: Supplier<CountryDetails[]>;
875
900
  }
@@ -879,6 +904,16 @@ export interface UpsertCountry extends CountryUpdate {
879
904
  providerDetails?: CountryProviderDetails;
880
905
  }
881
906
 
907
+ export interface UpsertCountryContentDetails extends CountryUpdate {
908
+ contentDetails?: ContentDetails;
909
+ }
910
+
911
+ export interface UpsertDestinationContentDetails {
912
+ contentDetails?: ContentDetails;
913
+ continent?: Continent;
914
+ subContinentId?: string;
915
+ }
916
+
882
917
  export interface UpsertFeaturedCountriesFromRefData {
883
918
  refData?: Supplier<CountryDetails[]>;
884
919
  }
@@ -897,15 +932,34 @@ export interface UpsertPublicKey extends UserUpdate {
897
932
  }
898
933
 
899
934
  export interface UpsertRegion extends RegionUpdate {
935
+ details?: RegionDetails;
900
936
  providerDetails?: RegionProviderDetails;
901
937
  }
902
938
 
939
+ export interface UpsertRegionContentDetails extends RegionUpdate {
940
+ contentDetails?: ContentDetails;
941
+ }
942
+
903
943
  export interface UpsertTag extends TagCommand {
904
944
  details?: TagDetails;
905
945
  internalDetails?: TagInternalDetails;
906
946
  providerDetails?: TagProviderDetails;
907
947
  }
908
948
 
949
+ export interface UpsertTagContentDetails extends TagUpdate {
950
+ contentDetails?: ContentDetails;
951
+ }
952
+
953
+ export interface UpsertTagInfoContentDetails {
954
+ attractionId?: string;
955
+ contentDetails?: ContentDetails;
956
+ continent?: Continent;
957
+ countryId?: string;
958
+ destinationType?: DestinationType;
959
+ subContinentId?: string;
960
+ tagInfoId?: string;
961
+ }
962
+
909
963
  export interface UpsertTagRelationships extends TagUpdate {
910
964
  childTags?: { [index: string]: TagDetails };
911
965
  parentTags?: { [index: string]: TagDetails };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.3632",
3
+ "version": "0.0.3651",
4
4
  "types": "core.d.ts"
5
5
  }