@glidevvr/storage-payload-types-pkg 1.0.224 → 1.0.225
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/package.json +1 -1
- package/payload-types.ts +336 -334
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -559,7 +559,7 @@ export interface Market {
|
|
|
559
559
|
id: string;
|
|
560
560
|
tenant?: (string | null) | Tenant;
|
|
561
561
|
title: string;
|
|
562
|
-
marketType: 'state' | 'city' | 'amenity' | 'allFacilities';
|
|
562
|
+
marketType: 'state' | 'city' | 'amenity' | 'selectFacilities' | 'allFacilities';
|
|
563
563
|
/**
|
|
564
564
|
* Advanced Unit Table Coming Soon
|
|
565
565
|
*/
|
|
@@ -567,10 +567,11 @@ export interface Market {
|
|
|
567
567
|
unitCategories?: string[];
|
|
568
568
|
unitFeatures?: string[];
|
|
569
569
|
facilityFeatures?: (string | FacilityFeature)[] | null;
|
|
570
|
-
|
|
570
|
+
facilitySelect?: (string | Facility)[] | null;
|
|
571
|
+
country?: ('USA' | 'Canada') | null;
|
|
571
572
|
state?: string | null;
|
|
572
573
|
city?: string | null;
|
|
573
|
-
sort
|
|
574
|
+
sort?: 'facility_title' | null;
|
|
574
575
|
/**
|
|
575
576
|
* This is the H1 heading located at the top of the market page.
|
|
576
577
|
*/
|
|
@@ -639,10 +640,116 @@ export interface FacilityFeature {
|
|
|
639
640
|
}
|
|
640
641
|
/**
|
|
641
642
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
642
|
-
* via the `definition` "
|
|
643
|
+
* via the `definition` "facilities".
|
|
643
644
|
*/
|
|
644
|
-
export interface
|
|
645
|
-
|
|
645
|
+
export interface Facility {
|
|
646
|
+
id: string;
|
|
647
|
+
tenant?: (string | null) | Tenant;
|
|
648
|
+
/**
|
|
649
|
+
* This is the facility name displayed on the front-end of the website.
|
|
650
|
+
*/
|
|
651
|
+
title: string;
|
|
652
|
+
seFacilityId?: number | null;
|
|
653
|
+
comingSoon?: boolean | null;
|
|
654
|
+
/**
|
|
655
|
+
* Please enter the Google Place ID for the valid business listing.
|
|
656
|
+
*/
|
|
657
|
+
googlePlaceId?: string | null;
|
|
658
|
+
/**
|
|
659
|
+
* If unset, the branding will default to the company's default brand.
|
|
660
|
+
*/
|
|
661
|
+
brandSelection?: (string | null) | Brand;
|
|
662
|
+
/**
|
|
663
|
+
* Select multiple features related to this facility.
|
|
664
|
+
*/
|
|
665
|
+
facilityFeatures?: (string | FacilityFeature)[] | null;
|
|
666
|
+
facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
|
|
667
|
+
/**
|
|
668
|
+
* The first image selected is displayed on market pages. For best results, use images with a 16:9 aspect ratio that are at least 1477x831 pixels wide.
|
|
669
|
+
*/
|
|
670
|
+
gallery?: (string | Media)[] | null;
|
|
671
|
+
contentTabs?: ContentTabs;
|
|
672
|
+
unitTableSettings: {
|
|
673
|
+
/**
|
|
674
|
+
* When enabled, use Cubby for unit table display instead of the standard settings.
|
|
675
|
+
*/
|
|
676
|
+
useCubbyUnitTable?: boolean | null;
|
|
677
|
+
/**
|
|
678
|
+
* Enter the facility slug for Cubby integration.
|
|
679
|
+
*/
|
|
680
|
+
cubbyFacilitySlug?: string | null;
|
|
681
|
+
/**
|
|
682
|
+
* Select the layout style for displaying units.
|
|
683
|
+
*/
|
|
684
|
+
cubbyUnitLayout?: ('list' | 'grid' | 'carousel') | null;
|
|
685
|
+
selectedFacilities?: string[];
|
|
686
|
+
tableLayout: 'row' | 'grid';
|
|
687
|
+
buttonLayout: 'separate' | 'combined';
|
|
688
|
+
vacancyNotice: boolean;
|
|
689
|
+
/**
|
|
690
|
+
* At how many units left to show the urgency notice.
|
|
691
|
+
*/
|
|
692
|
+
vacancyThreshold?: number | null;
|
|
693
|
+
showAppliedPromoPrice: boolean;
|
|
694
|
+
unavailableUnits: boolean;
|
|
695
|
+
disableRental: boolean;
|
|
696
|
+
disableReservation: boolean;
|
|
697
|
+
/**
|
|
698
|
+
* A soft reservation does not remove a unit from inventory.
|
|
699
|
+
*/
|
|
700
|
+
disableSoftReservation: boolean;
|
|
701
|
+
rentalAppLocation: 'external';
|
|
702
|
+
/**
|
|
703
|
+
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
704
|
+
*/
|
|
705
|
+
rentalAppExternalUrl?: string | null;
|
|
706
|
+
/**
|
|
707
|
+
* If the buttons are combined, the reservation app location will default to the location of the rental app.
|
|
708
|
+
*/
|
|
709
|
+
reservationAppLocation?: 'external' | null;
|
|
710
|
+
/**
|
|
711
|
+
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
712
|
+
*/
|
|
713
|
+
reservationAppExternalUrl?: string | null;
|
|
714
|
+
softReservationAppLocation: 'external';
|
|
715
|
+
/**
|
|
716
|
+
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
717
|
+
*/
|
|
718
|
+
softReservationAppExternalUrl?: string | null;
|
|
719
|
+
allowedCategories: string[];
|
|
720
|
+
allowedFeatures: string[];
|
|
721
|
+
/**
|
|
722
|
+
* Drag to prioritize - the first listed will have the highest priority. The default sorting is Available (desc), Area (asc), Width (asc), Display Rate (asc).
|
|
723
|
+
*/
|
|
724
|
+
sort?:
|
|
725
|
+
| (
|
|
726
|
+
| 'area'
|
|
727
|
+
| 'area:desc'
|
|
728
|
+
| 'available'
|
|
729
|
+
| 'available:desc'
|
|
730
|
+
| 'length'
|
|
731
|
+
| 'length:desc'
|
|
732
|
+
| 'unit_type_id'
|
|
733
|
+
| 'unit_type_id:desc'
|
|
734
|
+
| 'width'
|
|
735
|
+
| 'width:desc'
|
|
736
|
+
| 'display_rate'
|
|
737
|
+
| 'display_rate:desc'
|
|
738
|
+
)[]
|
|
739
|
+
| null;
|
|
740
|
+
/**
|
|
741
|
+
* Drag to prioritize - the first listed will have the highest priority. The default grouping is Width, Length, Unit Type ID, Display Rate.
|
|
742
|
+
*/
|
|
743
|
+
groupBy?: ('width' | 'length' | 'unit_type_id' | 'display_Rate' | 'floor')[] | null;
|
|
744
|
+
};
|
|
745
|
+
/**
|
|
746
|
+
* Notify customers about a promotion or announcement. Displays above the facility tabs.
|
|
747
|
+
*/
|
|
748
|
+
facilityBanner?: FacilityBannerBlock[] | null;
|
|
749
|
+
/**
|
|
750
|
+
* Notify customers about a promotion or announcement. Displays in a square block at the top of the page.
|
|
751
|
+
*/
|
|
752
|
+
facilityNotice?: {
|
|
646
753
|
root: {
|
|
647
754
|
type: string;
|
|
648
755
|
children: {
|
|
@@ -657,42 +764,16 @@ export interface ArchiveBlock {
|
|
|
657
764
|
};
|
|
658
765
|
[k: string]: unknown;
|
|
659
766
|
} | null;
|
|
660
|
-
populateBy: 'collection' | 'selection';
|
|
661
|
-
relationTo?: 'posts' | null;
|
|
662
|
-
/**
|
|
663
|
-
* If no categories are selected, the 4 most recent posts will be shown.
|
|
664
|
-
*/
|
|
665
|
-
categories?: (string | Category)[] | null;
|
|
666
767
|
/**
|
|
667
|
-
*
|
|
768
|
+
* Short callout about a promotion (i.e 50% OFF First Months Rent!). This displays on market pages.
|
|
668
769
|
*/
|
|
669
|
-
|
|
770
|
+
marketNotice?: string | null;
|
|
670
771
|
/**
|
|
671
|
-
*
|
|
772
|
+
* Background color for the notice box. Text color will be automatically selected for optimal contrast.
|
|
672
773
|
*/
|
|
673
|
-
|
|
674
|
-
|
|
|
675
|
-
relationTo: 'posts';
|
|
676
|
-
value: string | Post;
|
|
677
|
-
}[]
|
|
774
|
+
backgroundColor?:
|
|
775
|
+
| ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
|
|
678
776
|
| null;
|
|
679
|
-
/**
|
|
680
|
-
* The text for the button that links to the blog index page.
|
|
681
|
-
*/
|
|
682
|
-
buttonText?: string | null;
|
|
683
|
-
id?: string | null;
|
|
684
|
-
blockName?: string | null;
|
|
685
|
-
blockType: 'archive';
|
|
686
|
-
}
|
|
687
|
-
/**
|
|
688
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
689
|
-
* via the `definition` "categories".
|
|
690
|
-
*/
|
|
691
|
-
export interface Category {
|
|
692
|
-
id: string;
|
|
693
|
-
tenant?: (string | null) | Tenant;
|
|
694
|
-
title: string;
|
|
695
|
-
description?: string | null;
|
|
696
777
|
meta?: {
|
|
697
778
|
title?: string | null;
|
|
698
779
|
description?: string | null;
|
|
@@ -702,60 +783,47 @@ export interface Category {
|
|
|
702
783
|
indexable?: boolean | null;
|
|
703
784
|
};
|
|
704
785
|
slug: string;
|
|
786
|
+
parent?: (string | null) | Market;
|
|
705
787
|
createdBy?: string | null;
|
|
706
788
|
updatedBy?: string | null;
|
|
789
|
+
breadcrumbs?:
|
|
790
|
+
| {
|
|
791
|
+
doc?: (string | null) | Facility;
|
|
792
|
+
url?: string | null;
|
|
793
|
+
label?: string | null;
|
|
794
|
+
id?: string | null;
|
|
795
|
+
}[]
|
|
796
|
+
| null;
|
|
707
797
|
updatedAt: string;
|
|
708
798
|
createdAt: string;
|
|
709
799
|
_status?: ('draft' | 'published') | null;
|
|
710
800
|
}
|
|
711
801
|
/**
|
|
712
802
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
713
|
-
* via the `definition` "
|
|
803
|
+
* via the `definition` "brands".
|
|
714
804
|
*/
|
|
715
|
-
export interface
|
|
805
|
+
export interface Brand {
|
|
716
806
|
id: string;
|
|
717
807
|
tenant?: (string | null) | Tenant;
|
|
718
|
-
|
|
719
|
-
content: {
|
|
720
|
-
root: {
|
|
721
|
-
type: string;
|
|
722
|
-
children: {
|
|
723
|
-
type: string;
|
|
724
|
-
version: number;
|
|
725
|
-
[k: string]: unknown;
|
|
726
|
-
}[];
|
|
727
|
-
direction: ('ltr' | 'rtl') | null;
|
|
728
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
729
|
-
indent: number;
|
|
730
|
-
version: number;
|
|
731
|
-
};
|
|
732
|
-
[k: string]: unknown;
|
|
733
|
-
};
|
|
734
|
-
meta?: {
|
|
735
|
-
title?: string | null;
|
|
736
|
-
description?: string | null;
|
|
737
|
-
/**
|
|
738
|
-
* Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
|
|
739
|
-
*/
|
|
740
|
-
indexable?: boolean | null;
|
|
741
|
-
};
|
|
742
|
-
slug: string;
|
|
743
|
-
author?: string | null;
|
|
744
|
-
publishedAt?: string | null;
|
|
808
|
+
name: string;
|
|
745
809
|
/**
|
|
746
|
-
*
|
|
810
|
+
* For best results, choose an image with a horizontal aspect ratio that's at least 200x52 pixels.
|
|
747
811
|
*/
|
|
748
|
-
|
|
812
|
+
logo: string | Media;
|
|
749
813
|
/**
|
|
750
|
-
* Defaults to the
|
|
814
|
+
* Defaults to the header logo if not provided. For best results, choose an image with a horizontal aspect ratio that's at least 200x53 pixels.
|
|
751
815
|
*/
|
|
752
|
-
|
|
753
|
-
|
|
816
|
+
footerLogo?: (string | null) | Media;
|
|
817
|
+
primaryColor: string;
|
|
818
|
+
secondaryColor: string;
|
|
819
|
+
/**
|
|
820
|
+
* If checked, the secondary color will be used instead of the primary color for buttons and links. If selecting a neutral color, it is suggested to use the theme's mediumd gray #6F6F6F or dark gray #212529
|
|
821
|
+
*/
|
|
822
|
+
useSecondaryColor?: boolean | null;
|
|
754
823
|
createdBy?: string | null;
|
|
755
824
|
updatedBy?: string | null;
|
|
756
825
|
updatedAt: string;
|
|
757
826
|
createdAt: string;
|
|
758
|
-
_status?: ('draft' | 'published') | null;
|
|
759
827
|
}
|
|
760
828
|
/**
|
|
761
829
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -859,268 +927,6 @@ export interface Media {
|
|
|
859
927
|
};
|
|
860
928
|
};
|
|
861
929
|
}
|
|
862
|
-
/**
|
|
863
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
864
|
-
* via the `definition` "CallToActionBlock".
|
|
865
|
-
*/
|
|
866
|
-
export interface CallToActionBlock {
|
|
867
|
-
richText?: {
|
|
868
|
-
root: {
|
|
869
|
-
type: string;
|
|
870
|
-
children: {
|
|
871
|
-
type: string;
|
|
872
|
-
version: number;
|
|
873
|
-
[k: string]: unknown;
|
|
874
|
-
}[];
|
|
875
|
-
direction: ('ltr' | 'rtl') | null;
|
|
876
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
877
|
-
indent: number;
|
|
878
|
-
version: number;
|
|
879
|
-
};
|
|
880
|
-
[k: string]: unknown;
|
|
881
|
-
} | null;
|
|
882
|
-
links?:
|
|
883
|
-
| {
|
|
884
|
-
link: {
|
|
885
|
-
type?: ('reference' | 'custom') | null;
|
|
886
|
-
newTab?: boolean | null;
|
|
887
|
-
reference?:
|
|
888
|
-
| ({
|
|
889
|
-
relationTo: 'pages';
|
|
890
|
-
value: string | Page;
|
|
891
|
-
} | null)
|
|
892
|
-
| ({
|
|
893
|
-
relationTo: 'posts';
|
|
894
|
-
value: string | Post;
|
|
895
|
-
} | null)
|
|
896
|
-
| ({
|
|
897
|
-
relationTo: 'facilities';
|
|
898
|
-
value: string | Facility;
|
|
899
|
-
} | null)
|
|
900
|
-
| ({
|
|
901
|
-
relationTo: 'markets';
|
|
902
|
-
value: string | Market;
|
|
903
|
-
} | null)
|
|
904
|
-
| ({
|
|
905
|
-
relationTo: 'categories';
|
|
906
|
-
value: string | Category;
|
|
907
|
-
} | null);
|
|
908
|
-
url?: string | null;
|
|
909
|
-
label: string;
|
|
910
|
-
/**
|
|
911
|
-
* Choose how the link should be rendered.
|
|
912
|
-
*/
|
|
913
|
-
appearance?:
|
|
914
|
-
| (
|
|
915
|
-
| 'default'
|
|
916
|
-
| 'primary'
|
|
917
|
-
| 'primary-light'
|
|
918
|
-
| 'outline-primary'
|
|
919
|
-
| 'secondary'
|
|
920
|
-
| 'secondary-light'
|
|
921
|
-
| 'outline-secondary'
|
|
922
|
-
| 'destructive'
|
|
923
|
-
| 'link'
|
|
924
|
-
| 'white'
|
|
925
|
-
| 'ghost'
|
|
926
|
-
| 'gray'
|
|
927
|
-
)
|
|
928
|
-
| null;
|
|
929
|
-
};
|
|
930
|
-
id?: string | null;
|
|
931
|
-
}[]
|
|
932
|
-
| null;
|
|
933
|
-
id?: string | null;
|
|
934
|
-
blockName?: string | null;
|
|
935
|
-
blockType: 'cta';
|
|
936
|
-
}
|
|
937
|
-
/**
|
|
938
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
939
|
-
* via the `definition` "facilities".
|
|
940
|
-
*/
|
|
941
|
-
export interface Facility {
|
|
942
|
-
id: string;
|
|
943
|
-
tenant?: (string | null) | Tenant;
|
|
944
|
-
/**
|
|
945
|
-
* This is the facility name displayed on the front-end of the website.
|
|
946
|
-
*/
|
|
947
|
-
title: string;
|
|
948
|
-
seFacilityId?: number | null;
|
|
949
|
-
comingSoon?: boolean | null;
|
|
950
|
-
/**
|
|
951
|
-
* Please enter the Google Place ID for the valid business listing.
|
|
952
|
-
*/
|
|
953
|
-
googlePlaceId?: string | null;
|
|
954
|
-
/**
|
|
955
|
-
* If unset, the branding will default to the company's default brand.
|
|
956
|
-
*/
|
|
957
|
-
brandSelection?: (string | null) | Brand;
|
|
958
|
-
/**
|
|
959
|
-
* Select multiple features related to this facility.
|
|
960
|
-
*/
|
|
961
|
-
facilityFeatures?: (string | FacilityFeature)[] | null;
|
|
962
|
-
facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
|
|
963
|
-
/**
|
|
964
|
-
* The first image selected is displayed on market pages. For best results, use images with a 16:9 aspect ratio that are at least 1477x831 pixels wide.
|
|
965
|
-
*/
|
|
966
|
-
gallery?: (string | Media)[] | null;
|
|
967
|
-
contentTabs?: ContentTabs;
|
|
968
|
-
unitTableSettings: {
|
|
969
|
-
/**
|
|
970
|
-
* When enabled, use Cubby for unit table display instead of the standard settings.
|
|
971
|
-
*/
|
|
972
|
-
useCubbyUnitTable?: boolean | null;
|
|
973
|
-
/**
|
|
974
|
-
* Enter the facility slug for Cubby integration.
|
|
975
|
-
*/
|
|
976
|
-
cubbyFacilitySlug?: string | null;
|
|
977
|
-
/**
|
|
978
|
-
* Select the layout style for displaying units.
|
|
979
|
-
*/
|
|
980
|
-
cubbyUnitLayout?: ('list' | 'grid' | 'carousel') | null;
|
|
981
|
-
selectedFacilities?: string[];
|
|
982
|
-
tableLayout: 'row' | 'grid';
|
|
983
|
-
buttonLayout: 'separate' | 'combined';
|
|
984
|
-
vacancyNotice: boolean;
|
|
985
|
-
/**
|
|
986
|
-
* At how many units left to show the urgency notice.
|
|
987
|
-
*/
|
|
988
|
-
vacancyThreshold?: number | null;
|
|
989
|
-
showAppliedPromoPrice: boolean;
|
|
990
|
-
unavailableUnits: boolean;
|
|
991
|
-
disableRental: boolean;
|
|
992
|
-
disableReservation: boolean;
|
|
993
|
-
/**
|
|
994
|
-
* A soft reservation does not remove a unit from inventory.
|
|
995
|
-
*/
|
|
996
|
-
disableSoftReservation: boolean;
|
|
997
|
-
rentalAppLocation: 'external';
|
|
998
|
-
/**
|
|
999
|
-
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
1000
|
-
*/
|
|
1001
|
-
rentalAppExternalUrl?: string | null;
|
|
1002
|
-
/**
|
|
1003
|
-
* If the buttons are combined, the reservation app location will default to the location of the rental app.
|
|
1004
|
-
*/
|
|
1005
|
-
reservationAppLocation?: 'external' | null;
|
|
1006
|
-
/**
|
|
1007
|
-
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
1008
|
-
*/
|
|
1009
|
-
reservationAppExternalUrl?: string | null;
|
|
1010
|
-
softReservationAppLocation: 'external';
|
|
1011
|
-
/**
|
|
1012
|
-
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
1013
|
-
*/
|
|
1014
|
-
softReservationAppExternalUrl?: string | null;
|
|
1015
|
-
allowedCategories: string[];
|
|
1016
|
-
allowedFeatures: string[];
|
|
1017
|
-
/**
|
|
1018
|
-
* Drag to prioritize - the first listed will have the highest priority. The default sorting is Available (desc), Area (asc), Width (asc), Display Rate (asc).
|
|
1019
|
-
*/
|
|
1020
|
-
sort?:
|
|
1021
|
-
| (
|
|
1022
|
-
| 'area'
|
|
1023
|
-
| 'area:desc'
|
|
1024
|
-
| 'available'
|
|
1025
|
-
| 'available:desc'
|
|
1026
|
-
| 'length'
|
|
1027
|
-
| 'length:desc'
|
|
1028
|
-
| 'unit_type_id'
|
|
1029
|
-
| 'unit_type_id:desc'
|
|
1030
|
-
| 'width'
|
|
1031
|
-
| 'width:desc'
|
|
1032
|
-
| 'display_rate'
|
|
1033
|
-
| 'display_rate:desc'
|
|
1034
|
-
)[]
|
|
1035
|
-
| null;
|
|
1036
|
-
/**
|
|
1037
|
-
* Drag to prioritize - the first listed will have the highest priority. The default grouping is Width, Length, Unit Type ID, Display Rate.
|
|
1038
|
-
*/
|
|
1039
|
-
groupBy?: ('width' | 'length' | 'unit_type_id' | 'display_Rate' | 'floor')[] | null;
|
|
1040
|
-
};
|
|
1041
|
-
/**
|
|
1042
|
-
* Notify customers about a promotion or announcement. Displays above the facility tabs.
|
|
1043
|
-
*/
|
|
1044
|
-
facilityBanner?: FacilityBannerBlock[] | null;
|
|
1045
|
-
/**
|
|
1046
|
-
* Notify customers about a promotion or announcement. Displays in a square block at the top of the page.
|
|
1047
|
-
*/
|
|
1048
|
-
facilityNotice?: {
|
|
1049
|
-
root: {
|
|
1050
|
-
type: string;
|
|
1051
|
-
children: {
|
|
1052
|
-
type: string;
|
|
1053
|
-
version: number;
|
|
1054
|
-
[k: string]: unknown;
|
|
1055
|
-
}[];
|
|
1056
|
-
direction: ('ltr' | 'rtl') | null;
|
|
1057
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1058
|
-
indent: number;
|
|
1059
|
-
version: number;
|
|
1060
|
-
};
|
|
1061
|
-
[k: string]: unknown;
|
|
1062
|
-
} | null;
|
|
1063
|
-
/**
|
|
1064
|
-
* Short callout about a promotion (i.e 50% OFF First Months Rent!). This displays on market pages.
|
|
1065
|
-
*/
|
|
1066
|
-
marketNotice?: string | null;
|
|
1067
|
-
/**
|
|
1068
|
-
* Background color for the notice box. Text color will be automatically selected for optimal contrast.
|
|
1069
|
-
*/
|
|
1070
|
-
backgroundColor?:
|
|
1071
|
-
| ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
|
|
1072
|
-
| null;
|
|
1073
|
-
meta?: {
|
|
1074
|
-
title?: string | null;
|
|
1075
|
-
description?: string | null;
|
|
1076
|
-
/**
|
|
1077
|
-
* Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
|
|
1078
|
-
*/
|
|
1079
|
-
indexable?: boolean | null;
|
|
1080
|
-
};
|
|
1081
|
-
slug: string;
|
|
1082
|
-
parent?: (string | null) | Market;
|
|
1083
|
-
createdBy?: string | null;
|
|
1084
|
-
updatedBy?: string | null;
|
|
1085
|
-
breadcrumbs?:
|
|
1086
|
-
| {
|
|
1087
|
-
doc?: (string | null) | Facility;
|
|
1088
|
-
url?: string | null;
|
|
1089
|
-
label?: string | null;
|
|
1090
|
-
id?: string | null;
|
|
1091
|
-
}[]
|
|
1092
|
-
| null;
|
|
1093
|
-
updatedAt: string;
|
|
1094
|
-
createdAt: string;
|
|
1095
|
-
_status?: ('draft' | 'published') | null;
|
|
1096
|
-
}
|
|
1097
|
-
/**
|
|
1098
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
1099
|
-
* via the `definition` "brands".
|
|
1100
|
-
*/
|
|
1101
|
-
export interface Brand {
|
|
1102
|
-
id: string;
|
|
1103
|
-
tenant?: (string | null) | Tenant;
|
|
1104
|
-
name: string;
|
|
1105
|
-
/**
|
|
1106
|
-
* For best results, choose an image with a horizontal aspect ratio that's at least 200x52 pixels.
|
|
1107
|
-
*/
|
|
1108
|
-
logo: string | Media;
|
|
1109
|
-
/**
|
|
1110
|
-
* Defaults to the header logo if not provided. For best results, choose an image with a horizontal aspect ratio that's at least 200x53 pixels.
|
|
1111
|
-
*/
|
|
1112
|
-
footerLogo?: (string | null) | Media;
|
|
1113
|
-
primaryColor: string;
|
|
1114
|
-
secondaryColor: string;
|
|
1115
|
-
/**
|
|
1116
|
-
* If checked, the secondary color will be used instead of the primary color for buttons and links. If selecting a neutral color, it is suggested to use the theme's mediumd gray #6F6F6F or dark gray #212529
|
|
1117
|
-
*/
|
|
1118
|
-
useSecondaryColor?: boolean | null;
|
|
1119
|
-
createdBy?: string | null;
|
|
1120
|
-
updatedBy?: string | null;
|
|
1121
|
-
updatedAt: string;
|
|
1122
|
-
createdAt: string;
|
|
1123
|
-
}
|
|
1124
930
|
/**
|
|
1125
931
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1126
932
|
* via the `definition` "ContentTabs".
|
|
@@ -1329,6 +1135,201 @@ export interface FacilityBannerBlock {
|
|
|
1329
1135
|
blockName?: string | null;
|
|
1330
1136
|
blockType: 'facilityBanner';
|
|
1331
1137
|
}
|
|
1138
|
+
/**
|
|
1139
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1140
|
+
* via the `definition` "ArchiveBlock".
|
|
1141
|
+
*/
|
|
1142
|
+
export interface ArchiveBlock {
|
|
1143
|
+
introContent?: {
|
|
1144
|
+
root: {
|
|
1145
|
+
type: string;
|
|
1146
|
+
children: {
|
|
1147
|
+
type: string;
|
|
1148
|
+
version: number;
|
|
1149
|
+
[k: string]: unknown;
|
|
1150
|
+
}[];
|
|
1151
|
+
direction: ('ltr' | 'rtl') | null;
|
|
1152
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1153
|
+
indent: number;
|
|
1154
|
+
version: number;
|
|
1155
|
+
};
|
|
1156
|
+
[k: string]: unknown;
|
|
1157
|
+
} | null;
|
|
1158
|
+
populateBy: 'collection' | 'selection';
|
|
1159
|
+
relationTo?: 'posts' | null;
|
|
1160
|
+
/**
|
|
1161
|
+
* If no categories are selected, the 4 most recent posts will be shown.
|
|
1162
|
+
*/
|
|
1163
|
+
categories?: (string | Category)[] | null;
|
|
1164
|
+
/**
|
|
1165
|
+
* Select the number of published posts to display (limit of 4 max.).
|
|
1166
|
+
*/
|
|
1167
|
+
limit?: ('1' | '2' | '3' | '4') | null;
|
|
1168
|
+
/**
|
|
1169
|
+
* Select up to 4 posts
|
|
1170
|
+
*/
|
|
1171
|
+
selectedDocs?:
|
|
1172
|
+
| {
|
|
1173
|
+
relationTo: 'posts';
|
|
1174
|
+
value: string | Post;
|
|
1175
|
+
}[]
|
|
1176
|
+
| null;
|
|
1177
|
+
/**
|
|
1178
|
+
* The text for the button that links to the blog index page.
|
|
1179
|
+
*/
|
|
1180
|
+
buttonText?: string | null;
|
|
1181
|
+
id?: string | null;
|
|
1182
|
+
blockName?: string | null;
|
|
1183
|
+
blockType: 'archive';
|
|
1184
|
+
}
|
|
1185
|
+
/**
|
|
1186
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1187
|
+
* via the `definition` "categories".
|
|
1188
|
+
*/
|
|
1189
|
+
export interface Category {
|
|
1190
|
+
id: string;
|
|
1191
|
+
tenant?: (string | null) | Tenant;
|
|
1192
|
+
title: string;
|
|
1193
|
+
description?: string | null;
|
|
1194
|
+
meta?: {
|
|
1195
|
+
title?: string | null;
|
|
1196
|
+
description?: string | null;
|
|
1197
|
+
/**
|
|
1198
|
+
* Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
|
|
1199
|
+
*/
|
|
1200
|
+
indexable?: boolean | null;
|
|
1201
|
+
};
|
|
1202
|
+
slug: string;
|
|
1203
|
+
createdBy?: string | null;
|
|
1204
|
+
updatedBy?: string | null;
|
|
1205
|
+
updatedAt: string;
|
|
1206
|
+
createdAt: string;
|
|
1207
|
+
_status?: ('draft' | 'published') | null;
|
|
1208
|
+
}
|
|
1209
|
+
/**
|
|
1210
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1211
|
+
* via the `definition` "posts".
|
|
1212
|
+
*/
|
|
1213
|
+
export interface Post {
|
|
1214
|
+
id: string;
|
|
1215
|
+
tenant?: (string | null) | Tenant;
|
|
1216
|
+
title: string;
|
|
1217
|
+
content: {
|
|
1218
|
+
root: {
|
|
1219
|
+
type: string;
|
|
1220
|
+
children: {
|
|
1221
|
+
type: string;
|
|
1222
|
+
version: number;
|
|
1223
|
+
[k: string]: unknown;
|
|
1224
|
+
}[];
|
|
1225
|
+
direction: ('ltr' | 'rtl') | null;
|
|
1226
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1227
|
+
indent: number;
|
|
1228
|
+
version: number;
|
|
1229
|
+
};
|
|
1230
|
+
[k: string]: unknown;
|
|
1231
|
+
};
|
|
1232
|
+
meta?: {
|
|
1233
|
+
title?: string | null;
|
|
1234
|
+
description?: string | null;
|
|
1235
|
+
/**
|
|
1236
|
+
* Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
|
|
1237
|
+
*/
|
|
1238
|
+
indexable?: boolean | null;
|
|
1239
|
+
};
|
|
1240
|
+
slug: string;
|
|
1241
|
+
author?: string | null;
|
|
1242
|
+
publishedAt?: string | null;
|
|
1243
|
+
/**
|
|
1244
|
+
* Images should have a horizontal aspect ratio and be at least 1280px wide.
|
|
1245
|
+
*/
|
|
1246
|
+
featuredImage?: (string | null) | Media;
|
|
1247
|
+
/**
|
|
1248
|
+
* Defaults to the beginning of your post content if not entered.
|
|
1249
|
+
*/
|
|
1250
|
+
excerpt?: string | null;
|
|
1251
|
+
categories?: (string | Category)[] | null;
|
|
1252
|
+
createdBy?: string | null;
|
|
1253
|
+
updatedBy?: string | null;
|
|
1254
|
+
updatedAt: string;
|
|
1255
|
+
createdAt: string;
|
|
1256
|
+
_status?: ('draft' | 'published') | null;
|
|
1257
|
+
}
|
|
1258
|
+
/**
|
|
1259
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1260
|
+
* via the `definition` "CallToActionBlock".
|
|
1261
|
+
*/
|
|
1262
|
+
export interface CallToActionBlock {
|
|
1263
|
+
richText?: {
|
|
1264
|
+
root: {
|
|
1265
|
+
type: string;
|
|
1266
|
+
children: {
|
|
1267
|
+
type: string;
|
|
1268
|
+
version: number;
|
|
1269
|
+
[k: string]: unknown;
|
|
1270
|
+
}[];
|
|
1271
|
+
direction: ('ltr' | 'rtl') | null;
|
|
1272
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1273
|
+
indent: number;
|
|
1274
|
+
version: number;
|
|
1275
|
+
};
|
|
1276
|
+
[k: string]: unknown;
|
|
1277
|
+
} | null;
|
|
1278
|
+
links?:
|
|
1279
|
+
| {
|
|
1280
|
+
link: {
|
|
1281
|
+
type?: ('reference' | 'custom') | null;
|
|
1282
|
+
newTab?: boolean | null;
|
|
1283
|
+
reference?:
|
|
1284
|
+
| ({
|
|
1285
|
+
relationTo: 'pages';
|
|
1286
|
+
value: string | Page;
|
|
1287
|
+
} | null)
|
|
1288
|
+
| ({
|
|
1289
|
+
relationTo: 'posts';
|
|
1290
|
+
value: string | Post;
|
|
1291
|
+
} | null)
|
|
1292
|
+
| ({
|
|
1293
|
+
relationTo: 'facilities';
|
|
1294
|
+
value: string | Facility;
|
|
1295
|
+
} | null)
|
|
1296
|
+
| ({
|
|
1297
|
+
relationTo: 'markets';
|
|
1298
|
+
value: string | Market;
|
|
1299
|
+
} | null)
|
|
1300
|
+
| ({
|
|
1301
|
+
relationTo: 'categories';
|
|
1302
|
+
value: string | Category;
|
|
1303
|
+
} | null);
|
|
1304
|
+
url?: string | null;
|
|
1305
|
+
label: string;
|
|
1306
|
+
/**
|
|
1307
|
+
* Choose how the link should be rendered.
|
|
1308
|
+
*/
|
|
1309
|
+
appearance?:
|
|
1310
|
+
| (
|
|
1311
|
+
| 'default'
|
|
1312
|
+
| 'primary'
|
|
1313
|
+
| 'primary-light'
|
|
1314
|
+
| 'outline-primary'
|
|
1315
|
+
| 'secondary'
|
|
1316
|
+
| 'secondary-light'
|
|
1317
|
+
| 'outline-secondary'
|
|
1318
|
+
| 'destructive'
|
|
1319
|
+
| 'link'
|
|
1320
|
+
| 'white'
|
|
1321
|
+
| 'ghost'
|
|
1322
|
+
| 'gray'
|
|
1323
|
+
)
|
|
1324
|
+
| null;
|
|
1325
|
+
};
|
|
1326
|
+
id?: string | null;
|
|
1327
|
+
}[]
|
|
1328
|
+
| null;
|
|
1329
|
+
id?: string | null;
|
|
1330
|
+
blockName?: string | null;
|
|
1331
|
+
blockType: 'cta';
|
|
1332
|
+
}
|
|
1332
1333
|
/**
|
|
1333
1334
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1334
1335
|
* via the `definition` "ContentBlock".
|
|
@@ -3002,6 +3003,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
3002
3003
|
unitCategories?: T;
|
|
3003
3004
|
unitFeatures?: T;
|
|
3004
3005
|
facilityFeatures?: T;
|
|
3006
|
+
facilitySelect?: T;
|
|
3005
3007
|
country?: T;
|
|
3006
3008
|
state?: T;
|
|
3007
3009
|
city?: T;
|