@glidevvr/storage-payload-types-pkg 1.0.223 → 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 +424 -307
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
|
*/
|
|
@@ -637,303 +638,6 @@ export interface FacilityFeature {
|
|
|
637
638
|
updatedAt: string;
|
|
638
639
|
createdAt: string;
|
|
639
640
|
}
|
|
640
|
-
/**
|
|
641
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
642
|
-
* via the `definition` "ArchiveBlock".
|
|
643
|
-
*/
|
|
644
|
-
export interface ArchiveBlock {
|
|
645
|
-
introContent?: {
|
|
646
|
-
root: {
|
|
647
|
-
type: string;
|
|
648
|
-
children: {
|
|
649
|
-
type: string;
|
|
650
|
-
version: number;
|
|
651
|
-
[k: string]: unknown;
|
|
652
|
-
}[];
|
|
653
|
-
direction: ('ltr' | 'rtl') | null;
|
|
654
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
655
|
-
indent: number;
|
|
656
|
-
version: number;
|
|
657
|
-
};
|
|
658
|
-
[k: string]: unknown;
|
|
659
|
-
} | 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
|
-
/**
|
|
667
|
-
* Select the number of published posts to display (limit of 4 max.).
|
|
668
|
-
*/
|
|
669
|
-
limit?: ('1' | '2' | '3' | '4') | null;
|
|
670
|
-
/**
|
|
671
|
-
* Select up to 4 posts
|
|
672
|
-
*/
|
|
673
|
-
selectedDocs?:
|
|
674
|
-
| {
|
|
675
|
-
relationTo: 'posts';
|
|
676
|
-
value: string | Post;
|
|
677
|
-
}[]
|
|
678
|
-
| 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
|
-
meta?: {
|
|
697
|
-
title?: string | null;
|
|
698
|
-
description?: string | null;
|
|
699
|
-
/**
|
|
700
|
-
* Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
|
|
701
|
-
*/
|
|
702
|
-
indexable?: boolean | null;
|
|
703
|
-
};
|
|
704
|
-
slug: string;
|
|
705
|
-
createdBy?: string | null;
|
|
706
|
-
updatedBy?: string | null;
|
|
707
|
-
updatedAt: string;
|
|
708
|
-
createdAt: string;
|
|
709
|
-
_status?: ('draft' | 'published') | null;
|
|
710
|
-
}
|
|
711
|
-
/**
|
|
712
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
713
|
-
* via the `definition` "posts".
|
|
714
|
-
*/
|
|
715
|
-
export interface Post {
|
|
716
|
-
id: string;
|
|
717
|
-
tenant?: (string | null) | Tenant;
|
|
718
|
-
title: string;
|
|
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;
|
|
745
|
-
/**
|
|
746
|
-
* Images should have a horizontal aspect ratio and be at least 1280px wide.
|
|
747
|
-
*/
|
|
748
|
-
featuredImage?: (string | null) | Media;
|
|
749
|
-
/**
|
|
750
|
-
* Defaults to the beginning of your post content if not entered.
|
|
751
|
-
*/
|
|
752
|
-
excerpt?: string | null;
|
|
753
|
-
categories?: (string | Category)[] | null;
|
|
754
|
-
createdBy?: string | null;
|
|
755
|
-
updatedBy?: string | null;
|
|
756
|
-
updatedAt: string;
|
|
757
|
-
createdAt: string;
|
|
758
|
-
_status?: ('draft' | 'published') | null;
|
|
759
|
-
}
|
|
760
|
-
/**
|
|
761
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
762
|
-
* via the `definition` "media".
|
|
763
|
-
*/
|
|
764
|
-
export interface Media {
|
|
765
|
-
id: string;
|
|
766
|
-
tenant?: (string | null) | Tenant;
|
|
767
|
-
/**
|
|
768
|
-
* Check this if this image will be used as a hero image. Hero images can be up to 300KB (preferably under 150KB), while regular images are optimized to 100KB or less. Note: The system generates responsive sizes (thumbnail: 150px, small: 320px, medium: 500px, large: 1024px, hero: 1920px) but will only create sizes smaller than your original image - it will not upscale.
|
|
769
|
-
*/
|
|
770
|
-
isHeroImage?: boolean | null;
|
|
771
|
-
/**
|
|
772
|
-
* Many screen readers will cut off alt text at 125 characters, so try to limit your alt text to below 100 characters when possible.
|
|
773
|
-
*/
|
|
774
|
-
alt: string;
|
|
775
|
-
caption?: {
|
|
776
|
-
root: {
|
|
777
|
-
type: string;
|
|
778
|
-
children: {
|
|
779
|
-
type: string;
|
|
780
|
-
version: number;
|
|
781
|
-
[k: string]: unknown;
|
|
782
|
-
}[];
|
|
783
|
-
direction: ('ltr' | 'rtl') | null;
|
|
784
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
785
|
-
indent: number;
|
|
786
|
-
version: number;
|
|
787
|
-
};
|
|
788
|
-
[k: string]: unknown;
|
|
789
|
-
} | null;
|
|
790
|
-
createdBy?: string | null;
|
|
791
|
-
updatedBy?: string | null;
|
|
792
|
-
updatedAt: string;
|
|
793
|
-
createdAt: string;
|
|
794
|
-
url?: string | null;
|
|
795
|
-
thumbnailURL?: string | null;
|
|
796
|
-
filename: string;
|
|
797
|
-
mimeType: string;
|
|
798
|
-
filesize: number;
|
|
799
|
-
width: number;
|
|
800
|
-
height: number;
|
|
801
|
-
focalX: number;
|
|
802
|
-
focalY: number;
|
|
803
|
-
sizes?: {
|
|
804
|
-
thumbnail?: {
|
|
805
|
-
url?: string | null;
|
|
806
|
-
width?: number | null;
|
|
807
|
-
height?: number | null;
|
|
808
|
-
mimeType?: string | null;
|
|
809
|
-
filesize?: number | null;
|
|
810
|
-
filename?: string | null;
|
|
811
|
-
};
|
|
812
|
-
small?: {
|
|
813
|
-
url?: string | null;
|
|
814
|
-
width?: number | null;
|
|
815
|
-
height?: number | null;
|
|
816
|
-
mimeType?: string | null;
|
|
817
|
-
filesize?: number | null;
|
|
818
|
-
filename?: string | null;
|
|
819
|
-
};
|
|
820
|
-
medium?: {
|
|
821
|
-
url?: string | null;
|
|
822
|
-
width?: number | null;
|
|
823
|
-
height?: number | null;
|
|
824
|
-
mimeType?: string | null;
|
|
825
|
-
filesize?: number | null;
|
|
826
|
-
filename?: string | null;
|
|
827
|
-
};
|
|
828
|
-
large?: {
|
|
829
|
-
url?: string | null;
|
|
830
|
-
width?: number | null;
|
|
831
|
-
height?: number | null;
|
|
832
|
-
mimeType?: string | null;
|
|
833
|
-
filesize?: number | null;
|
|
834
|
-
filename?: string | null;
|
|
835
|
-
};
|
|
836
|
-
'x-large'?: {
|
|
837
|
-
url?: string | null;
|
|
838
|
-
width?: number | null;
|
|
839
|
-
height?: number | null;
|
|
840
|
-
mimeType?: string | null;
|
|
841
|
-
filesize?: number | null;
|
|
842
|
-
filename?: string | null;
|
|
843
|
-
};
|
|
844
|
-
'2x-large'?: {
|
|
845
|
-
url?: string | null;
|
|
846
|
-
width?: number | null;
|
|
847
|
-
height?: number | null;
|
|
848
|
-
mimeType?: string | null;
|
|
849
|
-
filesize?: number | null;
|
|
850
|
-
filename?: string | null;
|
|
851
|
-
};
|
|
852
|
-
hero?: {
|
|
853
|
-
url?: string | null;
|
|
854
|
-
width?: number | null;
|
|
855
|
-
height?: number | null;
|
|
856
|
-
mimeType?: string | null;
|
|
857
|
-
filesize?: number | null;
|
|
858
|
-
filename?: string | null;
|
|
859
|
-
};
|
|
860
|
-
};
|
|
861
|
-
}
|
|
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
641
|
/**
|
|
938
642
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
939
643
|
* via the `definition` "facilities".
|
|
@@ -1121,14 +825,184 @@ export interface Brand {
|
|
|
1121
825
|
updatedAt: string;
|
|
1122
826
|
createdAt: string;
|
|
1123
827
|
}
|
|
828
|
+
/**
|
|
829
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
830
|
+
* via the `definition` "media".
|
|
831
|
+
*/
|
|
832
|
+
export interface Media {
|
|
833
|
+
id: string;
|
|
834
|
+
tenant?: (string | null) | Tenant;
|
|
835
|
+
/**
|
|
836
|
+
* Check this if this image will be used as a hero image. Hero images can be up to 300KB (preferably under 150KB), while regular images are optimized to 100KB or less. Note: The system generates responsive sizes (thumbnail: 150px, small: 320px, medium: 500px, large: 1024px, hero: 1920px) but will only create sizes smaller than your original image - it will not upscale.
|
|
837
|
+
*/
|
|
838
|
+
isHeroImage?: boolean | null;
|
|
839
|
+
/**
|
|
840
|
+
* Many screen readers will cut off alt text at 125 characters, so try to limit your alt text to below 100 characters when possible.
|
|
841
|
+
*/
|
|
842
|
+
alt: string;
|
|
843
|
+
caption?: {
|
|
844
|
+
root: {
|
|
845
|
+
type: string;
|
|
846
|
+
children: {
|
|
847
|
+
type: string;
|
|
848
|
+
version: number;
|
|
849
|
+
[k: string]: unknown;
|
|
850
|
+
}[];
|
|
851
|
+
direction: ('ltr' | 'rtl') | null;
|
|
852
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
853
|
+
indent: number;
|
|
854
|
+
version: number;
|
|
855
|
+
};
|
|
856
|
+
[k: string]: unknown;
|
|
857
|
+
} | null;
|
|
858
|
+
createdBy?: string | null;
|
|
859
|
+
updatedBy?: string | null;
|
|
860
|
+
updatedAt: string;
|
|
861
|
+
createdAt: string;
|
|
862
|
+
url?: string | null;
|
|
863
|
+
thumbnailURL?: string | null;
|
|
864
|
+
filename: string;
|
|
865
|
+
mimeType: string;
|
|
866
|
+
filesize: number;
|
|
867
|
+
width: number;
|
|
868
|
+
height: number;
|
|
869
|
+
focalX: number;
|
|
870
|
+
focalY: number;
|
|
871
|
+
sizes?: {
|
|
872
|
+
thumbnail?: {
|
|
873
|
+
url?: string | null;
|
|
874
|
+
width?: number | null;
|
|
875
|
+
height?: number | null;
|
|
876
|
+
mimeType?: string | null;
|
|
877
|
+
filesize?: number | null;
|
|
878
|
+
filename?: string | null;
|
|
879
|
+
};
|
|
880
|
+
small?: {
|
|
881
|
+
url?: string | null;
|
|
882
|
+
width?: number | null;
|
|
883
|
+
height?: number | null;
|
|
884
|
+
mimeType?: string | null;
|
|
885
|
+
filesize?: number | null;
|
|
886
|
+
filename?: string | null;
|
|
887
|
+
};
|
|
888
|
+
medium?: {
|
|
889
|
+
url?: string | null;
|
|
890
|
+
width?: number | null;
|
|
891
|
+
height?: number | null;
|
|
892
|
+
mimeType?: string | null;
|
|
893
|
+
filesize?: number | null;
|
|
894
|
+
filename?: string | null;
|
|
895
|
+
};
|
|
896
|
+
large?: {
|
|
897
|
+
url?: string | null;
|
|
898
|
+
width?: number | null;
|
|
899
|
+
height?: number | null;
|
|
900
|
+
mimeType?: string | null;
|
|
901
|
+
filesize?: number | null;
|
|
902
|
+
filename?: string | null;
|
|
903
|
+
};
|
|
904
|
+
'x-large'?: {
|
|
905
|
+
url?: string | null;
|
|
906
|
+
width?: number | null;
|
|
907
|
+
height?: number | null;
|
|
908
|
+
mimeType?: string | null;
|
|
909
|
+
filesize?: number | null;
|
|
910
|
+
filename?: string | null;
|
|
911
|
+
};
|
|
912
|
+
'2x-large'?: {
|
|
913
|
+
url?: string | null;
|
|
914
|
+
width?: number | null;
|
|
915
|
+
height?: number | null;
|
|
916
|
+
mimeType?: string | null;
|
|
917
|
+
filesize?: number | null;
|
|
918
|
+
filename?: string | null;
|
|
919
|
+
};
|
|
920
|
+
hero?: {
|
|
921
|
+
url?: string | null;
|
|
922
|
+
width?: number | null;
|
|
923
|
+
height?: number | null;
|
|
924
|
+
mimeType?: string | null;
|
|
925
|
+
filesize?: number | null;
|
|
926
|
+
filename?: string | null;
|
|
927
|
+
};
|
|
928
|
+
};
|
|
929
|
+
}
|
|
1124
930
|
/**
|
|
1125
931
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1126
932
|
* via the `definition` "ContentTabs".
|
|
1127
933
|
*/
|
|
1128
934
|
export interface ContentTabs {
|
|
935
|
+
/**
|
|
936
|
+
* Select which tab should be open when users first land on the facility page. Only enabled tabs can be selected.
|
|
937
|
+
*/
|
|
938
|
+
defaultTab?: ('findUnit' | 'features' | 'about' | 'map' | 'customTab1' | 'customTab2') | null;
|
|
1129
939
|
findUnit?: {
|
|
1130
940
|
/**
|
|
1131
|
-
*
|
|
941
|
+
* Show or hide the "Find a unit" tab on the facility page.
|
|
942
|
+
*/
|
|
943
|
+
enabled?: boolean | null;
|
|
944
|
+
/**
|
|
945
|
+
* Customize the tab name (20 character limit).
|
|
946
|
+
*/
|
|
947
|
+
label?: string | null;
|
|
948
|
+
/**
|
|
949
|
+
* This content is displayed below the unit grid, or before the coming soon form if the facility is coming soon.
|
|
950
|
+
*/
|
|
951
|
+
content?: {
|
|
952
|
+
root: {
|
|
953
|
+
type: string;
|
|
954
|
+
children: {
|
|
955
|
+
type: string;
|
|
956
|
+
version: number;
|
|
957
|
+
[k: string]: unknown;
|
|
958
|
+
}[];
|
|
959
|
+
direction: ('ltr' | 'rtl') | null;
|
|
960
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
961
|
+
indent: number;
|
|
962
|
+
version: number;
|
|
963
|
+
};
|
|
964
|
+
[k: string]: unknown;
|
|
965
|
+
} | null;
|
|
966
|
+
};
|
|
967
|
+
features?: {
|
|
968
|
+
/**
|
|
969
|
+
* Show or hide the "Features" tab on the facility page.
|
|
970
|
+
*/
|
|
971
|
+
enabled?: boolean | null;
|
|
972
|
+
/**
|
|
973
|
+
* Customize the tab name (20 character limit).
|
|
974
|
+
*/
|
|
975
|
+
label?: string | null;
|
|
976
|
+
/**
|
|
977
|
+
* This content is displayed above the unit features.
|
|
978
|
+
*/
|
|
979
|
+
content?: {
|
|
980
|
+
root: {
|
|
981
|
+
type: string;
|
|
982
|
+
children: {
|
|
983
|
+
type: string;
|
|
984
|
+
version: number;
|
|
985
|
+
[k: string]: unknown;
|
|
986
|
+
}[];
|
|
987
|
+
direction: ('ltr' | 'rtl') | null;
|
|
988
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
989
|
+
indent: number;
|
|
990
|
+
version: number;
|
|
991
|
+
};
|
|
992
|
+
[k: string]: unknown;
|
|
993
|
+
} | null;
|
|
994
|
+
};
|
|
995
|
+
about?: {
|
|
996
|
+
/**
|
|
997
|
+
* Show or hide the "About" tab on the facility page.
|
|
998
|
+
*/
|
|
999
|
+
enabled?: boolean | null;
|
|
1000
|
+
/**
|
|
1001
|
+
* Customize the tab name (20 character limit).
|
|
1002
|
+
*/
|
|
1003
|
+
label?: string | null;
|
|
1004
|
+
/**
|
|
1005
|
+
* This is the main content for the about section.
|
|
1132
1006
|
*/
|
|
1133
1007
|
content?: {
|
|
1134
1008
|
root: {
|
|
@@ -1146,9 +1020,17 @@ export interface ContentTabs {
|
|
|
1146
1020
|
[k: string]: unknown;
|
|
1147
1021
|
} | null;
|
|
1148
1022
|
};
|
|
1149
|
-
|
|
1023
|
+
map?: {
|
|
1150
1024
|
/**
|
|
1151
|
-
*
|
|
1025
|
+
* Show or hide the "Map" tab on the facility page.
|
|
1026
|
+
*/
|
|
1027
|
+
enabled?: boolean | null;
|
|
1028
|
+
/**
|
|
1029
|
+
* Customize the tab name (20 character limit).
|
|
1030
|
+
*/
|
|
1031
|
+
label?: string | null;
|
|
1032
|
+
/**
|
|
1033
|
+
* This content, like directions to the facility, is displayed below the map.
|
|
1152
1034
|
*/
|
|
1153
1035
|
content?: {
|
|
1154
1036
|
root: {
|
|
@@ -1166,9 +1048,17 @@ export interface ContentTabs {
|
|
|
1166
1048
|
[k: string]: unknown;
|
|
1167
1049
|
} | null;
|
|
1168
1050
|
};
|
|
1169
|
-
|
|
1051
|
+
customTab1?: {
|
|
1170
1052
|
/**
|
|
1171
|
-
*
|
|
1053
|
+
* Show or hide this custom tab on the facility page.
|
|
1054
|
+
*/
|
|
1055
|
+
enabled?: boolean | null;
|
|
1056
|
+
/**
|
|
1057
|
+
* Customize the tab name (20 character limit).
|
|
1058
|
+
*/
|
|
1059
|
+
label?: string | null;
|
|
1060
|
+
/**
|
|
1061
|
+
* Custom content for this tab.
|
|
1172
1062
|
*/
|
|
1173
1063
|
content?: {
|
|
1174
1064
|
root: {
|
|
@@ -1186,9 +1076,17 @@ export interface ContentTabs {
|
|
|
1186
1076
|
[k: string]: unknown;
|
|
1187
1077
|
} | null;
|
|
1188
1078
|
};
|
|
1189
|
-
|
|
1079
|
+
customTab2?: {
|
|
1190
1080
|
/**
|
|
1191
|
-
*
|
|
1081
|
+
* Show or hide this custom tab on the facility page.
|
|
1082
|
+
*/
|
|
1083
|
+
enabled?: boolean | null;
|
|
1084
|
+
/**
|
|
1085
|
+
* Customize the tab name (20 character limit).
|
|
1086
|
+
*/
|
|
1087
|
+
label?: string | null;
|
|
1088
|
+
/**
|
|
1089
|
+
* Custom content for this tab.
|
|
1192
1090
|
*/
|
|
1193
1091
|
content?: {
|
|
1194
1092
|
root: {
|
|
@@ -1237,6 +1135,201 @@ export interface FacilityBannerBlock {
|
|
|
1237
1135
|
blockName?: string | null;
|
|
1238
1136
|
blockType: 'facilityBanner';
|
|
1239
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
|
+
}
|
|
1240
1333
|
/**
|
|
1241
1334
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1242
1335
|
* via the `definition` "ContentBlock".
|
|
@@ -2839,24 +2932,47 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
2839
2932
|
* via the `definition` "ContentTabs_select".
|
|
2840
2933
|
*/
|
|
2841
2934
|
export interface ContentTabsSelect<T extends boolean = true> {
|
|
2935
|
+
defaultTab?: T;
|
|
2842
2936
|
findUnit?:
|
|
2843
2937
|
| T
|
|
2844
2938
|
| {
|
|
2939
|
+
enabled?: T;
|
|
2940
|
+
label?: T;
|
|
2845
2941
|
content?: T;
|
|
2846
2942
|
};
|
|
2847
2943
|
features?:
|
|
2848
2944
|
| T
|
|
2849
2945
|
| {
|
|
2946
|
+
enabled?: T;
|
|
2947
|
+
label?: T;
|
|
2850
2948
|
content?: T;
|
|
2851
2949
|
};
|
|
2852
2950
|
about?:
|
|
2853
2951
|
| T
|
|
2854
2952
|
| {
|
|
2953
|
+
enabled?: T;
|
|
2954
|
+
label?: T;
|
|
2855
2955
|
content?: T;
|
|
2856
2956
|
};
|
|
2857
2957
|
map?:
|
|
2858
2958
|
| T
|
|
2859
2959
|
| {
|
|
2960
|
+
enabled?: T;
|
|
2961
|
+
label?: T;
|
|
2962
|
+
content?: T;
|
|
2963
|
+
};
|
|
2964
|
+
customTab1?:
|
|
2965
|
+
| T
|
|
2966
|
+
| {
|
|
2967
|
+
enabled?: T;
|
|
2968
|
+
label?: T;
|
|
2969
|
+
content?: T;
|
|
2970
|
+
};
|
|
2971
|
+
customTab2?:
|
|
2972
|
+
| T
|
|
2973
|
+
| {
|
|
2974
|
+
enabled?: T;
|
|
2975
|
+
label?: T;
|
|
2860
2976
|
content?: T;
|
|
2861
2977
|
};
|
|
2862
2978
|
}
|
|
@@ -2887,6 +3003,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2887
3003
|
unitCategories?: T;
|
|
2888
3004
|
unitFeatures?: T;
|
|
2889
3005
|
facilityFeatures?: T;
|
|
3006
|
+
facilitySelect?: T;
|
|
2890
3007
|
country?: T;
|
|
2891
3008
|
state?: T;
|
|
2892
3009
|
city?: T;
|