@openvoy/openvoy-typescriptmodels 0.0.3641 → 0.0.3661

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 +58 -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,18 +887,35 @@ export interface UpsertAttractionForCountry extends UpsertAttractionCommand {
867
887
  }
868
888
 
869
889
  export interface UpsertCity extends CityUpdate {
890
+ contentDetails?: ContentDetails;
891
+ details?: CityDetails;
870
892
  providerDetails?: CityProviderDetails;
871
893
  }
872
894
 
895
+ export interface UpsertCityContentDetails extends CityUpdate {
896
+ contentDetails?: ContentDetails;
897
+ }
898
+
873
899
  export interface UpsertCountriesFromRefData {
874
900
  refData?: Supplier<CountryDetails[]>;
875
901
  }
876
902
 
877
903
  export interface UpsertCountry extends CountryUpdate {
904
+ contentDetails?: ContentDetails;
878
905
  details?: CountryDetails;
879
906
  providerDetails?: CountryProviderDetails;
880
907
  }
881
908
 
909
+ export interface UpsertCountryContentDetails extends CountryUpdate {
910
+ contentDetails?: ContentDetails;
911
+ }
912
+
913
+ export interface UpsertDestinationContentDetails {
914
+ contentDetails?: ContentDetails;
915
+ continent?: Continent;
916
+ subContinentId?: string;
917
+ }
918
+
882
919
  export interface UpsertFeaturedCountriesFromRefData {
883
920
  refData?: Supplier<CountryDetails[]>;
884
921
  }
@@ -897,15 +934,34 @@ export interface UpsertPublicKey extends UserUpdate {
897
934
  }
898
935
 
899
936
  export interface UpsertRegion extends RegionUpdate {
937
+ details?: RegionDetails;
900
938
  providerDetails?: RegionProviderDetails;
901
939
  }
902
940
 
941
+ export interface UpsertRegionContentDetails extends RegionUpdate {
942
+ contentDetails?: ContentDetails;
943
+ }
944
+
903
945
  export interface UpsertTag extends TagCommand {
904
946
  details?: TagDetails;
905
947
  internalDetails?: TagInternalDetails;
906
948
  providerDetails?: TagProviderDetails;
907
949
  }
908
950
 
951
+ export interface UpsertTagContentDetails extends TagUpdate {
952
+ contentDetails?: ContentDetails;
953
+ }
954
+
955
+ export interface UpsertTagInfoContentDetails {
956
+ attractionId?: string;
957
+ contentDetails?: ContentDetails;
958
+ continent?: Continent;
959
+ countryId?: string;
960
+ destinationType?: DestinationType;
961
+ subContinentId?: string;
962
+ tagInfoId?: string;
963
+ }
964
+
909
965
  export interface UpsertTagRelationships extends TagUpdate {
910
966
  childTags?: { [index: string]: TagDetails };
911
967
  parentTags?: { [index: string]: TagDetails };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.3641",
3
+ "version": "0.0.3661",
4
4
  "types": "core.d.ts"
5
5
  }