@glidevvr/storage-payload-types-pkg 1.0.14 → 1.0.16
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 +587 -302
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -6,6 +6,18 @@
|
|
|
6
6
|
* and re-run `payload generate:types` to regenerate this file.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
/**
|
|
10
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
11
|
+
* via the `definition` "SocialMedia".
|
|
12
|
+
*/
|
|
13
|
+
export type SocialMedia =
|
|
14
|
+
| {
|
|
15
|
+
socialMediaIcon: string;
|
|
16
|
+
url: string;
|
|
17
|
+
screenReaderText: string;
|
|
18
|
+
id?: string | null;
|
|
19
|
+
}[]
|
|
20
|
+
| null;
|
|
9
21
|
/**
|
|
10
22
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
11
23
|
* via the `definition` "NavItem".
|
|
@@ -222,17 +234,22 @@ export interface Page {
|
|
|
222
234
|
tenant?: (string | null) | Tenant;
|
|
223
235
|
title: string;
|
|
224
236
|
layout: (
|
|
237
|
+
| ArchiveBlock
|
|
238
|
+
| BreadcrumbsBlock
|
|
225
239
|
| CallToActionBlock
|
|
226
240
|
| ContentBlock
|
|
227
|
-
|
|
|
228
|
-
|
|
|
229
|
-
| FormBlock
|
|
230
|
-
| HomeTestimonialBlock
|
|
231
|
-
| RentalStepsBlock
|
|
232
|
-
| StoragResourcesBlock
|
|
241
|
+
| FaqBlock
|
|
242
|
+
| FeaturedLocationsBlock
|
|
233
243
|
| FeaturesGridBlock
|
|
244
|
+
| FormBlock
|
|
234
245
|
| HomeHero
|
|
235
246
|
| HorizontalRuleBlock
|
|
247
|
+
| SingleTestimonialBlock
|
|
248
|
+
| MediaBlock
|
|
249
|
+
| RentalStepsBlock
|
|
250
|
+
| SearchCalloutBlock
|
|
251
|
+
| StoragResourcesBlock
|
|
252
|
+
| GalleryBlock
|
|
236
253
|
)[];
|
|
237
254
|
meta?: {
|
|
238
255
|
title?: string | null;
|
|
@@ -292,13 +309,7 @@ export interface Tenant {
|
|
|
292
309
|
* Search engine visibility for the website. It is up to search engines to honor this request.
|
|
293
310
|
*/
|
|
294
311
|
websiteNotIndexable?: boolean | null;
|
|
295
|
-
|
|
296
|
-
x?: string | null;
|
|
297
|
-
tiktok?: string | null;
|
|
298
|
-
instagram?: string | null;
|
|
299
|
-
youtube?: string | null;
|
|
300
|
-
linkedIn?: string | null;
|
|
301
|
-
yelp?: string | null;
|
|
312
|
+
socialMedia?: SocialMedia;
|
|
302
313
|
createdBy?: string | null;
|
|
303
314
|
updatedBy?: string | null;
|
|
304
315
|
updatedAt: string;
|
|
@@ -466,10 +477,10 @@ export interface Media {
|
|
|
466
477
|
}
|
|
467
478
|
/**
|
|
468
479
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
469
|
-
* via the `definition` "
|
|
480
|
+
* via the `definition` "ArchiveBlock".
|
|
470
481
|
*/
|
|
471
|
-
export interface
|
|
472
|
-
|
|
482
|
+
export interface ArchiveBlock {
|
|
483
|
+
introContent?: {
|
|
473
484
|
root: {
|
|
474
485
|
type: string;
|
|
475
486
|
children: {
|
|
@@ -484,45 +495,44 @@ export interface CallToActionBlock {
|
|
|
484
495
|
};
|
|
485
496
|
[k: string]: unknown;
|
|
486
497
|
} | null;
|
|
487
|
-
|
|
498
|
+
populateBy?: ('collection' | 'selection') | null;
|
|
499
|
+
relationTo?: 'posts' | null;
|
|
500
|
+
categories?: (string | Category)[] | null;
|
|
501
|
+
limit?: number | null;
|
|
502
|
+
selectedDocs?:
|
|
488
503
|
| {
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
newTab?: boolean | null;
|
|
492
|
-
reference?:
|
|
493
|
-
| ({
|
|
494
|
-
relationTo: 'pages';
|
|
495
|
-
value: string | Page;
|
|
496
|
-
} | null)
|
|
497
|
-
| ({
|
|
498
|
-
relationTo: 'posts';
|
|
499
|
-
value: string | Post;
|
|
500
|
-
} | null)
|
|
501
|
-
| ({
|
|
502
|
-
relationTo: 'facilities';
|
|
503
|
-
value: string | Facility;
|
|
504
|
-
} | null)
|
|
505
|
-
| ({
|
|
506
|
-
relationTo: 'markets';
|
|
507
|
-
value: string | Market;
|
|
508
|
-
} | null)
|
|
509
|
-
| ({
|
|
510
|
-
relationTo: 'categories';
|
|
511
|
-
value: string | Category;
|
|
512
|
-
} | null);
|
|
513
|
-
url?: string | null;
|
|
514
|
-
label: string;
|
|
515
|
-
/**
|
|
516
|
-
* Choose how the link should be rendered.
|
|
517
|
-
*/
|
|
518
|
-
appearance?: ('default' | 'outline') | null;
|
|
519
|
-
};
|
|
520
|
-
id?: string | null;
|
|
504
|
+
relationTo: 'posts';
|
|
505
|
+
value: string | Post;
|
|
521
506
|
}[]
|
|
522
507
|
| null;
|
|
523
508
|
id?: string | null;
|
|
524
509
|
blockName?: string | null;
|
|
525
|
-
blockType: '
|
|
510
|
+
blockType: 'archive';
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
514
|
+
* via the `definition` "categories".
|
|
515
|
+
*/
|
|
516
|
+
export interface Category {
|
|
517
|
+
id: string;
|
|
518
|
+
tenant?: (string | null) | Tenant;
|
|
519
|
+
title: string;
|
|
520
|
+
description?: string | null;
|
|
521
|
+
meta?: {
|
|
522
|
+
title?: string | null;
|
|
523
|
+
description?: string | null;
|
|
524
|
+
/**
|
|
525
|
+
* Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
|
|
526
|
+
*/
|
|
527
|
+
indexable?: boolean | null;
|
|
528
|
+
};
|
|
529
|
+
slug: string;
|
|
530
|
+
slugLock?: boolean | null;
|
|
531
|
+
featuredImage?: (string | null) | Media;
|
|
532
|
+
createdBy?: string | null;
|
|
533
|
+
updatedBy?: string | null;
|
|
534
|
+
updatedAt: string;
|
|
535
|
+
createdAt: string;
|
|
526
536
|
}
|
|
527
537
|
/**
|
|
528
538
|
* This collection is for static blog articles.
|
|
@@ -576,28 +586,87 @@ export interface Post {
|
|
|
576
586
|
}
|
|
577
587
|
/**
|
|
578
588
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
579
|
-
* via the `definition` "
|
|
589
|
+
* via the `definition` "BreadcrumbsBlock".
|
|
580
590
|
*/
|
|
581
|
-
export interface
|
|
582
|
-
id
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
591
|
+
export interface BreadcrumbsBlock {
|
|
592
|
+
id?: string | null;
|
|
593
|
+
blockName?: string | null;
|
|
594
|
+
blockType: 'breadcrumbs';
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
598
|
+
* via the `definition` "CallToActionBlock".
|
|
599
|
+
*/
|
|
600
|
+
export interface CallToActionBlock {
|
|
601
|
+
richText?: {
|
|
602
|
+
root: {
|
|
603
|
+
type: string;
|
|
604
|
+
children: {
|
|
605
|
+
type: string;
|
|
606
|
+
version: number;
|
|
607
|
+
[k: string]: unknown;
|
|
608
|
+
}[];
|
|
609
|
+
direction: ('ltr' | 'rtl') | null;
|
|
610
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
611
|
+
indent: number;
|
|
612
|
+
version: number;
|
|
613
|
+
};
|
|
614
|
+
[k: string]: unknown;
|
|
615
|
+
} | null;
|
|
616
|
+
links?:
|
|
617
|
+
| {
|
|
618
|
+
link: {
|
|
619
|
+
type?: ('reference' | 'custom') | null;
|
|
620
|
+
newTab?: boolean | null;
|
|
621
|
+
reference?:
|
|
622
|
+
| ({
|
|
623
|
+
relationTo: 'pages';
|
|
624
|
+
value: string | Page;
|
|
625
|
+
} | null)
|
|
626
|
+
| ({
|
|
627
|
+
relationTo: 'posts';
|
|
628
|
+
value: string | Post;
|
|
629
|
+
} | null)
|
|
630
|
+
| ({
|
|
631
|
+
relationTo: 'facilities';
|
|
632
|
+
value: string | Facility;
|
|
633
|
+
} | null)
|
|
634
|
+
| ({
|
|
635
|
+
relationTo: 'markets';
|
|
636
|
+
value: string | Market;
|
|
637
|
+
} | null)
|
|
638
|
+
| ({
|
|
639
|
+
relationTo: 'categories';
|
|
640
|
+
value: string | Category;
|
|
641
|
+
} | null);
|
|
642
|
+
url?: string | null;
|
|
643
|
+
label: string;
|
|
644
|
+
/**
|
|
645
|
+
* Choose how the link should be rendered.
|
|
646
|
+
*/
|
|
647
|
+
appearance?:
|
|
648
|
+
| (
|
|
649
|
+
| 'default'
|
|
650
|
+
| 'primary'
|
|
651
|
+
| 'primary-light'
|
|
652
|
+
| 'outline-primary'
|
|
653
|
+
| 'secondary'
|
|
654
|
+
| 'secondary-light'
|
|
655
|
+
| 'outline-secondary'
|
|
656
|
+
| 'destructive'
|
|
657
|
+
| 'link'
|
|
658
|
+
| 'white'
|
|
659
|
+
| 'ghost'
|
|
660
|
+
| 'gray'
|
|
661
|
+
)
|
|
662
|
+
| null;
|
|
663
|
+
};
|
|
664
|
+
id?: string | null;
|
|
665
|
+
}[]
|
|
666
|
+
| null;
|
|
667
|
+
id?: string | null;
|
|
668
|
+
blockName?: string | null;
|
|
669
|
+
blockType: 'cta';
|
|
601
670
|
}
|
|
602
671
|
/**
|
|
603
672
|
* This collection represents different facilities.
|
|
@@ -656,8 +725,8 @@ export interface Facility {
|
|
|
656
725
|
| null;
|
|
657
726
|
faq?:
|
|
658
727
|
| {
|
|
659
|
-
question
|
|
660
|
-
answer
|
|
728
|
+
question: string;
|
|
729
|
+
answer: {
|
|
661
730
|
root: {
|
|
662
731
|
type: string;
|
|
663
732
|
children: {
|
|
@@ -671,7 +740,7 @@ export interface Facility {
|
|
|
671
740
|
version: number;
|
|
672
741
|
};
|
|
673
742
|
[k: string]: unknown;
|
|
674
|
-
}
|
|
743
|
+
};
|
|
675
744
|
id?: string | null;
|
|
676
745
|
}[]
|
|
677
746
|
| null;
|
|
@@ -726,7 +795,26 @@ export interface Market {
|
|
|
726
795
|
sort: 'facility_title' | 'state' | 'city' | 'starting_price';
|
|
727
796
|
customOrGeo: 'geo' | 'custom';
|
|
728
797
|
customFacilities?: (string | Facility)[] | null;
|
|
729
|
-
layout?:
|
|
798
|
+
layout?:
|
|
799
|
+
| (
|
|
800
|
+
| ArchiveBlock
|
|
801
|
+
| BreadcrumbsBlock
|
|
802
|
+
| CallToActionBlock
|
|
803
|
+
| ContentBlock
|
|
804
|
+
| FaqBlock
|
|
805
|
+
| FeaturedLocationsBlock
|
|
806
|
+
| FeaturesGridBlock
|
|
807
|
+
| FormBlock
|
|
808
|
+
| HomeHero
|
|
809
|
+
| HorizontalRuleBlock
|
|
810
|
+
| SingleTestimonialBlock
|
|
811
|
+
| MediaBlock
|
|
812
|
+
| RentalStepsBlock
|
|
813
|
+
| SearchCalloutBlock
|
|
814
|
+
| StoragResourcesBlock
|
|
815
|
+
| GalleryBlock
|
|
816
|
+
)[]
|
|
817
|
+
| null;
|
|
730
818
|
meta?: {
|
|
731
819
|
title?: string | null;
|
|
732
820
|
description?: string | null;
|
|
@@ -751,7 +839,7 @@ export interface Market {
|
|
|
751
839
|
export interface ContentBlock {
|
|
752
840
|
columns?:
|
|
753
841
|
| {
|
|
754
|
-
size?: ('
|
|
842
|
+
size?: ('half' | 'oneThird' | 'twoThirds' | 'full') | null;
|
|
755
843
|
richText?: {
|
|
756
844
|
root: {
|
|
757
845
|
type: string;
|
|
@@ -797,7 +885,22 @@ export interface ContentBlock {
|
|
|
797
885
|
/**
|
|
798
886
|
* Choose how the link should be rendered.
|
|
799
887
|
*/
|
|
800
|
-
appearance?:
|
|
888
|
+
appearance?:
|
|
889
|
+
| (
|
|
890
|
+
| 'default'
|
|
891
|
+
| 'primary'
|
|
892
|
+
| 'primary-light'
|
|
893
|
+
| 'outline-primary'
|
|
894
|
+
| 'secondary'
|
|
895
|
+
| 'secondary-light'
|
|
896
|
+
| 'outline-secondary'
|
|
897
|
+
| 'destructive'
|
|
898
|
+
| 'link'
|
|
899
|
+
| 'white'
|
|
900
|
+
| 'ghost'
|
|
901
|
+
| 'gray'
|
|
902
|
+
)
|
|
903
|
+
| null;
|
|
801
904
|
};
|
|
802
905
|
id?: string | null;
|
|
803
906
|
}[]
|
|
@@ -808,21 +911,69 @@ export interface ContentBlock {
|
|
|
808
911
|
}
|
|
809
912
|
/**
|
|
810
913
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
811
|
-
* via the `definition` "
|
|
914
|
+
* via the `definition` "FaqBlock".
|
|
812
915
|
*/
|
|
813
|
-
export interface
|
|
814
|
-
|
|
815
|
-
|
|
916
|
+
export interface FaqBlock {
|
|
917
|
+
richText?: {
|
|
918
|
+
root: {
|
|
919
|
+
type: string;
|
|
920
|
+
children: {
|
|
921
|
+
type: string;
|
|
922
|
+
version: number;
|
|
923
|
+
[k: string]: unknown;
|
|
924
|
+
}[];
|
|
925
|
+
direction: ('ltr' | 'rtl') | null;
|
|
926
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
927
|
+
indent: number;
|
|
928
|
+
version: number;
|
|
929
|
+
};
|
|
930
|
+
[k: string]: unknown;
|
|
931
|
+
} | null;
|
|
932
|
+
/**
|
|
933
|
+
* Only one block per page should have the include FAQ schema option checked.
|
|
934
|
+
*/
|
|
935
|
+
includeFaqSchema?: boolean | null;
|
|
936
|
+
faq?:
|
|
937
|
+
| {
|
|
938
|
+
question: string;
|
|
939
|
+
answer: {
|
|
940
|
+
root: {
|
|
941
|
+
type: string;
|
|
942
|
+
children: {
|
|
943
|
+
type: string;
|
|
944
|
+
version: number;
|
|
945
|
+
[k: string]: unknown;
|
|
946
|
+
}[];
|
|
947
|
+
direction: ('ltr' | 'rtl') | null;
|
|
948
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
949
|
+
indent: number;
|
|
950
|
+
version: number;
|
|
951
|
+
};
|
|
952
|
+
[k: string]: unknown;
|
|
953
|
+
};
|
|
954
|
+
id?: string | null;
|
|
955
|
+
}[]
|
|
956
|
+
| null;
|
|
816
957
|
id?: string | null;
|
|
817
958
|
blockName?: string | null;
|
|
818
|
-
blockType: '
|
|
959
|
+
blockType: 'faq';
|
|
819
960
|
}
|
|
820
961
|
/**
|
|
821
962
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
822
|
-
* via the `definition` "
|
|
963
|
+
* via the `definition` "FeaturedLocationsBlock".
|
|
823
964
|
*/
|
|
824
|
-
export interface
|
|
825
|
-
|
|
965
|
+
export interface FeaturedLocationsBlock {
|
|
966
|
+
id?: string | null;
|
|
967
|
+
blockName?: string | null;
|
|
968
|
+
blockType: 'featured-locations';
|
|
969
|
+
}
|
|
970
|
+
/**
|
|
971
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
972
|
+
* via the `definition` "FeaturesGridBlock".
|
|
973
|
+
*/
|
|
974
|
+
export interface FeaturesGridBlock {
|
|
975
|
+
heading?: string | null;
|
|
976
|
+
description?: {
|
|
826
977
|
root: {
|
|
827
978
|
type: string;
|
|
828
979
|
children: {
|
|
@@ -837,19 +988,58 @@ export interface ArchiveBlock {
|
|
|
837
988
|
};
|
|
838
989
|
[k: string]: unknown;
|
|
839
990
|
} | null;
|
|
840
|
-
|
|
841
|
-
relationTo?: 'posts' | null;
|
|
842
|
-
categories?: (string | Category)[] | null;
|
|
843
|
-
limit?: number | null;
|
|
844
|
-
selectedDocs?:
|
|
991
|
+
featuresGrid?:
|
|
845
992
|
| {
|
|
846
|
-
|
|
847
|
-
|
|
993
|
+
featureIcon: string;
|
|
994
|
+
featureName: string;
|
|
995
|
+
id?: string | null;
|
|
848
996
|
}[]
|
|
849
997
|
| null;
|
|
998
|
+
buttonLink?: {
|
|
999
|
+
type?: ('reference' | 'custom') | null;
|
|
1000
|
+
newTab?: boolean | null;
|
|
1001
|
+
reference?:
|
|
1002
|
+
| ({
|
|
1003
|
+
relationTo: 'pages';
|
|
1004
|
+
value: string | Page;
|
|
1005
|
+
} | null)
|
|
1006
|
+
| ({
|
|
1007
|
+
relationTo: 'posts';
|
|
1008
|
+
value: string | Post;
|
|
1009
|
+
} | null)
|
|
1010
|
+
| ({
|
|
1011
|
+
relationTo: 'facilities';
|
|
1012
|
+
value: string | Facility;
|
|
1013
|
+
} | null)
|
|
1014
|
+
| ({
|
|
1015
|
+
relationTo: 'markets';
|
|
1016
|
+
value: string | Market;
|
|
1017
|
+
} | null)
|
|
1018
|
+
| ({
|
|
1019
|
+
relationTo: 'categories';
|
|
1020
|
+
value: string | Category;
|
|
1021
|
+
} | null);
|
|
1022
|
+
url?: string | null;
|
|
1023
|
+
label?: string | null;
|
|
1024
|
+
};
|
|
1025
|
+
disclaimer?: {
|
|
1026
|
+
root: {
|
|
1027
|
+
type: string;
|
|
1028
|
+
children: {
|
|
1029
|
+
type: string;
|
|
1030
|
+
version: number;
|
|
1031
|
+
[k: string]: unknown;
|
|
1032
|
+
}[];
|
|
1033
|
+
direction: ('ltr' | 'rtl') | null;
|
|
1034
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1035
|
+
indent: number;
|
|
1036
|
+
version: number;
|
|
1037
|
+
};
|
|
1038
|
+
[k: string]: unknown;
|
|
1039
|
+
} | null;
|
|
850
1040
|
id?: string | null;
|
|
851
1041
|
blockName?: string | null;
|
|
852
|
-
blockType: '
|
|
1042
|
+
blockType: 'features-grid';
|
|
853
1043
|
}
|
|
854
1044
|
/**
|
|
855
1045
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1075,9 +1265,34 @@ export interface Form {
|
|
|
1075
1265
|
}
|
|
1076
1266
|
/**
|
|
1077
1267
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1078
|
-
* via the `definition` "
|
|
1268
|
+
* via the `definition` "HomeHero".
|
|
1269
|
+
*/
|
|
1270
|
+
export interface HomeHero {
|
|
1271
|
+
title?: string | null;
|
|
1272
|
+
subtitle?: string | null;
|
|
1273
|
+
backgroundImage?: (string | null) | Media;
|
|
1274
|
+
layoutMode?: ('half' | 'full') | null;
|
|
1275
|
+
fullImageContentAlign?: ('center' | 'right' | 'left') | null;
|
|
1276
|
+
halfImageContentSide?: ('right' | 'left') | null;
|
|
1277
|
+
searchLayout?: 'default' | null;
|
|
1278
|
+
id?: string | null;
|
|
1279
|
+
blockName?: string | null;
|
|
1280
|
+
blockType: 'homeHero';
|
|
1281
|
+
}
|
|
1282
|
+
/**
|
|
1283
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1284
|
+
* via the `definition` "HorizontalRuleBlock".
|
|
1285
|
+
*/
|
|
1286
|
+
export interface HorizontalRuleBlock {
|
|
1287
|
+
id?: string | null;
|
|
1288
|
+
blockName?: string | null;
|
|
1289
|
+
blockType: 'horizontal-rule';
|
|
1290
|
+
}
|
|
1291
|
+
/**
|
|
1292
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1293
|
+
* via the `definition` "SingleTestimonialBlock".
|
|
1079
1294
|
*/
|
|
1080
|
-
export interface
|
|
1295
|
+
export interface SingleTestimonialBlock {
|
|
1081
1296
|
heading?: string | null;
|
|
1082
1297
|
testimonialText?: string | null;
|
|
1083
1298
|
author?: string | null;
|
|
@@ -1087,7 +1302,18 @@ export interface HomeTestimonialBlock {
|
|
|
1087
1302
|
bottomImage?: (string | null) | Media;
|
|
1088
1303
|
id?: string | null;
|
|
1089
1304
|
blockName?: string | null;
|
|
1090
|
-
blockType: '
|
|
1305
|
+
blockType: 'singleTestimonial';
|
|
1306
|
+
}
|
|
1307
|
+
/**
|
|
1308
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1309
|
+
* via the `definition` "MediaBlock".
|
|
1310
|
+
*/
|
|
1311
|
+
export interface MediaBlock {
|
|
1312
|
+
position?: ('default' | 'fullscreen') | null;
|
|
1313
|
+
media: string | Media;
|
|
1314
|
+
id?: string | null;
|
|
1315
|
+
blockName?: string | null;
|
|
1316
|
+
blockType: 'mediaBlock';
|
|
1091
1317
|
}
|
|
1092
1318
|
/**
|
|
1093
1319
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1108,95 +1334,23 @@ export interface RentalStepsBlock {
|
|
|
1108
1334
|
}
|
|
1109
1335
|
/**
|
|
1110
1336
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1111
|
-
* via the `definition` "
|
|
1337
|
+
* via the `definition` "SearchCalloutBlock".
|
|
1112
1338
|
*/
|
|
1113
|
-
export interface
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
type: string;
|
|
1120
|
-
version: number;
|
|
1121
|
-
[k: string]: unknown;
|
|
1122
|
-
}[];
|
|
1123
|
-
direction: ('ltr' | 'rtl') | null;
|
|
1124
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1125
|
-
indent: number;
|
|
1126
|
-
version: number;
|
|
1127
|
-
};
|
|
1128
|
-
[k: string]: unknown;
|
|
1129
|
-
} | null;
|
|
1130
|
-
buttonLink?: {
|
|
1131
|
-
type?: ('reference' | 'custom') | null;
|
|
1132
|
-
newTab?: boolean | null;
|
|
1133
|
-
reference?:
|
|
1134
|
-
| ({
|
|
1135
|
-
relationTo: 'pages';
|
|
1136
|
-
value: string | Page;
|
|
1137
|
-
} | null)
|
|
1138
|
-
| ({
|
|
1139
|
-
relationTo: 'posts';
|
|
1140
|
-
value: string | Post;
|
|
1141
|
-
} | null)
|
|
1142
|
-
| ({
|
|
1143
|
-
relationTo: 'facilities';
|
|
1144
|
-
value: string | Facility;
|
|
1145
|
-
} | null)
|
|
1146
|
-
| ({
|
|
1147
|
-
relationTo: 'markets';
|
|
1148
|
-
value: string | Market;
|
|
1149
|
-
} | null)
|
|
1150
|
-
| ({
|
|
1151
|
-
relationTo: 'categories';
|
|
1152
|
-
value: string | Category;
|
|
1153
|
-
} | null);
|
|
1154
|
-
url?: string | null;
|
|
1155
|
-
label?: string | null;
|
|
1156
|
-
};
|
|
1157
|
-
storageResources?:
|
|
1158
|
-
| {
|
|
1159
|
-
resourceIcon?: string | null;
|
|
1160
|
-
resourceTitle?: string | null;
|
|
1161
|
-
resourceLink: {
|
|
1162
|
-
type?: ('reference' | 'custom') | null;
|
|
1163
|
-
newTab?: boolean | null;
|
|
1164
|
-
reference?:
|
|
1165
|
-
| ({
|
|
1166
|
-
relationTo: 'pages';
|
|
1167
|
-
value: string | Page;
|
|
1168
|
-
} | null)
|
|
1169
|
-
| ({
|
|
1170
|
-
relationTo: 'posts';
|
|
1171
|
-
value: string | Post;
|
|
1172
|
-
} | null)
|
|
1173
|
-
| ({
|
|
1174
|
-
relationTo: 'facilities';
|
|
1175
|
-
value: string | Facility;
|
|
1176
|
-
} | null)
|
|
1177
|
-
| ({
|
|
1178
|
-
relationTo: 'markets';
|
|
1179
|
-
value: string | Market;
|
|
1180
|
-
} | null)
|
|
1181
|
-
| ({
|
|
1182
|
-
relationTo: 'categories';
|
|
1183
|
-
value: string | Category;
|
|
1184
|
-
} | null);
|
|
1185
|
-
url?: string | null;
|
|
1186
|
-
label: string;
|
|
1187
|
-
};
|
|
1188
|
-
id?: string | null;
|
|
1189
|
-
}[]
|
|
1190
|
-
| null;
|
|
1339
|
+
export interface SearchCalloutBlock {
|
|
1340
|
+
text: string;
|
|
1341
|
+
/**
|
|
1342
|
+
* The button will direct the user to the All Locations page selected for the partner.
|
|
1343
|
+
*/
|
|
1344
|
+
buttonText: string;
|
|
1191
1345
|
id?: string | null;
|
|
1192
1346
|
blockName?: string | null;
|
|
1193
|
-
blockType: '
|
|
1347
|
+
blockType: 'search-callout';
|
|
1194
1348
|
}
|
|
1195
1349
|
/**
|
|
1196
1350
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1197
|
-
* via the `definition` "
|
|
1351
|
+
* via the `definition` "StoragResourcesBlock".
|
|
1198
1352
|
*/
|
|
1199
|
-
export interface
|
|
1353
|
+
export interface StoragResourcesBlock {
|
|
1200
1354
|
heading?: string | null;
|
|
1201
1355
|
description?: {
|
|
1202
1356
|
root: {
|
|
@@ -1213,13 +1367,6 @@ export interface FeaturesGridBlock {
|
|
|
1213
1367
|
};
|
|
1214
1368
|
[k: string]: unknown;
|
|
1215
1369
|
} | null;
|
|
1216
|
-
featuresGrid?:
|
|
1217
|
-
| {
|
|
1218
|
-
featureIcon?: string | null;
|
|
1219
|
-
featureName?: string | null;
|
|
1220
|
-
id?: string | null;
|
|
1221
|
-
}[]
|
|
1222
|
-
| null;
|
|
1223
1370
|
buttonLink?: {
|
|
1224
1371
|
type?: ('reference' | 'custom') | null;
|
|
1225
1372
|
newTab?: boolean | null;
|
|
@@ -1239,57 +1386,61 @@ export interface FeaturesGridBlock {
|
|
|
1239
1386
|
| ({
|
|
1240
1387
|
relationTo: 'markets';
|
|
1241
1388
|
value: string | Market;
|
|
1242
|
-
} | null)
|
|
1243
|
-
| ({
|
|
1244
|
-
relationTo: 'categories';
|
|
1245
|
-
value: string | Category;
|
|
1246
|
-
} | null);
|
|
1247
|
-
url?: string | null;
|
|
1248
|
-
label?: string | null;
|
|
1249
|
-
};
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1389
|
+
} | null)
|
|
1390
|
+
| ({
|
|
1391
|
+
relationTo: 'categories';
|
|
1392
|
+
value: string | Category;
|
|
1393
|
+
} | null);
|
|
1394
|
+
url?: string | null;
|
|
1395
|
+
label?: string | null;
|
|
1396
|
+
};
|
|
1397
|
+
storageResources?:
|
|
1398
|
+
| {
|
|
1399
|
+
resourceIcon?: string | null;
|
|
1400
|
+
resourceTitle?: string | null;
|
|
1401
|
+
resourceLink: {
|
|
1402
|
+
type?: ('reference' | 'custom') | null;
|
|
1403
|
+
newTab?: boolean | null;
|
|
1404
|
+
reference?:
|
|
1405
|
+
| ({
|
|
1406
|
+
relationTo: 'pages';
|
|
1407
|
+
value: string | Page;
|
|
1408
|
+
} | null)
|
|
1409
|
+
| ({
|
|
1410
|
+
relationTo: 'posts';
|
|
1411
|
+
value: string | Post;
|
|
1412
|
+
} | null)
|
|
1413
|
+
| ({
|
|
1414
|
+
relationTo: 'facilities';
|
|
1415
|
+
value: string | Facility;
|
|
1416
|
+
} | null)
|
|
1417
|
+
| ({
|
|
1418
|
+
relationTo: 'markets';
|
|
1419
|
+
value: string | Market;
|
|
1420
|
+
} | null)
|
|
1421
|
+
| ({
|
|
1422
|
+
relationTo: 'categories';
|
|
1423
|
+
value: string | Category;
|
|
1424
|
+
} | null);
|
|
1425
|
+
url?: string | null;
|
|
1426
|
+
label: string;
|
|
1427
|
+
};
|
|
1428
|
+
id?: string | null;
|
|
1429
|
+
}[]
|
|
1430
|
+
| null;
|
|
1281
1431
|
id?: string | null;
|
|
1282
1432
|
blockName?: string | null;
|
|
1283
|
-
blockType: '
|
|
1433
|
+
blockType: 'storage-resources';
|
|
1284
1434
|
}
|
|
1285
1435
|
/**
|
|
1286
1436
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1287
|
-
* via the `definition` "
|
|
1437
|
+
* via the `definition` "GalleryBlock".
|
|
1288
1438
|
*/
|
|
1289
|
-
export interface
|
|
1439
|
+
export interface GalleryBlock {
|
|
1440
|
+
media: (string | Media)[];
|
|
1290
1441
|
id?: string | null;
|
|
1291
1442
|
blockName?: string | null;
|
|
1292
|
-
blockType: '
|
|
1443
|
+
blockType: 'galleryBlock';
|
|
1293
1444
|
}
|
|
1294
1445
|
/**
|
|
1295
1446
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1299,7 +1450,14 @@ export interface Menu {
|
|
|
1299
1450
|
id: string;
|
|
1300
1451
|
tenant?: (string | null) | Tenant;
|
|
1301
1452
|
title: string;
|
|
1302
|
-
location:
|
|
1453
|
+
location:
|
|
1454
|
+
| 'main_menu'
|
|
1455
|
+
| 'footer_menu_1'
|
|
1456
|
+
| 'footer_menu_2'
|
|
1457
|
+
| 'footer_menu_3'
|
|
1458
|
+
| 'footer_menu_4'
|
|
1459
|
+
| 'policy_menu'
|
|
1460
|
+
| 'none';
|
|
1303
1461
|
columns?: number | null;
|
|
1304
1462
|
navItems?: NavItem;
|
|
1305
1463
|
createdBy?: string | null;
|
|
@@ -1478,17 +1636,22 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
1478
1636
|
layout?:
|
|
1479
1637
|
| T
|
|
1480
1638
|
| {
|
|
1639
|
+
archive?: T | ArchiveBlockSelect<T>;
|
|
1640
|
+
breadcrumbs?: T | BreadcrumbsBlockSelect<T>;
|
|
1481
1641
|
cta?: T | CallToActionBlockSelect<T>;
|
|
1482
1642
|
content?: T | ContentBlockSelect<T>;
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
formBlock?: T | FormBlockSelect<T>;
|
|
1486
|
-
homeTestimonial?: T | HomeTestimonialBlockSelect<T>;
|
|
1487
|
-
'rental-steps'?: T | RentalStepsBlockSelect<T>;
|
|
1488
|
-
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
1643
|
+
faq?: T | FaqBlockSelect<T>;
|
|
1644
|
+
'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
|
|
1489
1645
|
'features-grid'?: T | FeaturesGridBlockSelect<T>;
|
|
1646
|
+
formBlock?: T | FormBlockSelect<T>;
|
|
1490
1647
|
homeHero?: T | HomeHeroSelect<T>;
|
|
1491
1648
|
'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
|
|
1649
|
+
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
1650
|
+
mediaBlock?: T | MediaBlockSelect<T>;
|
|
1651
|
+
'rental-steps'?: T | RentalStepsBlockSelect<T>;
|
|
1652
|
+
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
1653
|
+
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
1654
|
+
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
1492
1655
|
};
|
|
1493
1656
|
meta?:
|
|
1494
1657
|
| T
|
|
@@ -1507,6 +1670,28 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
1507
1670
|
createdAt?: T;
|
|
1508
1671
|
_status?: T;
|
|
1509
1672
|
}
|
|
1673
|
+
/**
|
|
1674
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1675
|
+
* via the `definition` "ArchiveBlock_select".
|
|
1676
|
+
*/
|
|
1677
|
+
export interface ArchiveBlockSelect<T extends boolean = true> {
|
|
1678
|
+
introContent?: T;
|
|
1679
|
+
populateBy?: T;
|
|
1680
|
+
relationTo?: T;
|
|
1681
|
+
categories?: T;
|
|
1682
|
+
limit?: T;
|
|
1683
|
+
selectedDocs?: T;
|
|
1684
|
+
id?: T;
|
|
1685
|
+
blockName?: T;
|
|
1686
|
+
}
|
|
1687
|
+
/**
|
|
1688
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1689
|
+
* via the `definition` "BreadcrumbsBlock_select".
|
|
1690
|
+
*/
|
|
1691
|
+
export interface BreadcrumbsBlockSelect<T extends boolean = true> {
|
|
1692
|
+
id?: T;
|
|
1693
|
+
blockName?: T;
|
|
1694
|
+
}
|
|
1510
1695
|
/**
|
|
1511
1696
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1512
1697
|
* via the `definition` "CallToActionBlock_select".
|
|
@@ -1559,25 +1744,53 @@ export interface ContentBlockSelect<T extends boolean = true> {
|
|
|
1559
1744
|
}
|
|
1560
1745
|
/**
|
|
1561
1746
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1562
|
-
* via the `definition` "
|
|
1747
|
+
* via the `definition` "FaqBlock_select".
|
|
1563
1748
|
*/
|
|
1564
|
-
export interface
|
|
1565
|
-
|
|
1566
|
-
|
|
1749
|
+
export interface FaqBlockSelect<T extends boolean = true> {
|
|
1750
|
+
richText?: T;
|
|
1751
|
+
includeFaqSchema?: T;
|
|
1752
|
+
faq?:
|
|
1753
|
+
| T
|
|
1754
|
+
| {
|
|
1755
|
+
question?: T;
|
|
1756
|
+
answer?: T;
|
|
1757
|
+
id?: T;
|
|
1758
|
+
};
|
|
1567
1759
|
id?: T;
|
|
1568
1760
|
blockName?: T;
|
|
1569
1761
|
}
|
|
1570
1762
|
/**
|
|
1571
1763
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1572
|
-
* via the `definition` "
|
|
1764
|
+
* via the `definition` "FeaturedLocationsBlock_select".
|
|
1573
1765
|
*/
|
|
1574
|
-
export interface
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1766
|
+
export interface FeaturedLocationsBlockSelect<T extends boolean = true> {
|
|
1767
|
+
id?: T;
|
|
1768
|
+
blockName?: T;
|
|
1769
|
+
}
|
|
1770
|
+
/**
|
|
1771
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1772
|
+
* via the `definition` "FeaturesGridBlock_select".
|
|
1773
|
+
*/
|
|
1774
|
+
export interface FeaturesGridBlockSelect<T extends boolean = true> {
|
|
1775
|
+
heading?: T;
|
|
1776
|
+
description?: T;
|
|
1777
|
+
featuresGrid?:
|
|
1778
|
+
| T
|
|
1779
|
+
| {
|
|
1780
|
+
featureIcon?: T;
|
|
1781
|
+
featureName?: T;
|
|
1782
|
+
id?: T;
|
|
1783
|
+
};
|
|
1784
|
+
buttonLink?:
|
|
1785
|
+
| T
|
|
1786
|
+
| {
|
|
1787
|
+
type?: T;
|
|
1788
|
+
newTab?: T;
|
|
1789
|
+
reference?: T;
|
|
1790
|
+
url?: T;
|
|
1791
|
+
label?: T;
|
|
1792
|
+
};
|
|
1793
|
+
disclaimer?: T;
|
|
1581
1794
|
id?: T;
|
|
1582
1795
|
blockName?: T;
|
|
1583
1796
|
}
|
|
@@ -1594,9 +1807,32 @@ export interface FormBlockSelect<T extends boolean = true> {
|
|
|
1594
1807
|
}
|
|
1595
1808
|
/**
|
|
1596
1809
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1597
|
-
* via the `definition` "
|
|
1810
|
+
* via the `definition` "HomeHero_select".
|
|
1811
|
+
*/
|
|
1812
|
+
export interface HomeHeroSelect<T extends boolean = true> {
|
|
1813
|
+
title?: T;
|
|
1814
|
+
subtitle?: T;
|
|
1815
|
+
backgroundImage?: T;
|
|
1816
|
+
layoutMode?: T;
|
|
1817
|
+
fullImageContentAlign?: T;
|
|
1818
|
+
halfImageContentSide?: T;
|
|
1819
|
+
searchLayout?: T;
|
|
1820
|
+
id?: T;
|
|
1821
|
+
blockName?: T;
|
|
1822
|
+
}
|
|
1823
|
+
/**
|
|
1824
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1825
|
+
* via the `definition` "HorizontalRuleBlock_select".
|
|
1826
|
+
*/
|
|
1827
|
+
export interface HorizontalRuleBlockSelect<T extends boolean = true> {
|
|
1828
|
+
id?: T;
|
|
1829
|
+
blockName?: T;
|
|
1830
|
+
}
|
|
1831
|
+
/**
|
|
1832
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1833
|
+
* via the `definition` "SingleTestimonialBlock_select".
|
|
1598
1834
|
*/
|
|
1599
|
-
export interface
|
|
1835
|
+
export interface SingleTestimonialBlockSelect<T extends boolean = true> {
|
|
1600
1836
|
heading?: T;
|
|
1601
1837
|
testimonialText?: T;
|
|
1602
1838
|
author?: T;
|
|
@@ -1607,6 +1843,16 @@ export interface HomeTestimonialBlockSelect<T extends boolean = true> {
|
|
|
1607
1843
|
id?: T;
|
|
1608
1844
|
blockName?: T;
|
|
1609
1845
|
}
|
|
1846
|
+
/**
|
|
1847
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1848
|
+
* via the `definition` "MediaBlock_select".
|
|
1849
|
+
*/
|
|
1850
|
+
export interface MediaBlockSelect<T extends boolean = true> {
|
|
1851
|
+
position?: T;
|
|
1852
|
+
media?: T;
|
|
1853
|
+
id?: T;
|
|
1854
|
+
blockName?: T;
|
|
1855
|
+
}
|
|
1610
1856
|
/**
|
|
1611
1857
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1612
1858
|
* via the `definition` "RentalStepsBlock_select".
|
|
@@ -1623,6 +1869,16 @@ export interface RentalStepsBlockSelect<T extends boolean = true> {
|
|
|
1623
1869
|
id?: T;
|
|
1624
1870
|
blockName?: T;
|
|
1625
1871
|
}
|
|
1872
|
+
/**
|
|
1873
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1874
|
+
* via the `definition` "SearchCalloutBlock_select".
|
|
1875
|
+
*/
|
|
1876
|
+
export interface SearchCalloutBlockSelect<T extends boolean = true> {
|
|
1877
|
+
text?: T;
|
|
1878
|
+
buttonText?: T;
|
|
1879
|
+
id?: T;
|
|
1880
|
+
blockName?: T;
|
|
1881
|
+
}
|
|
1626
1882
|
/**
|
|
1627
1883
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1628
1884
|
* via the `definition` "StoragResourcesBlock_select".
|
|
@@ -1660,51 +1916,10 @@ export interface StoragResourcesBlockSelect<T extends boolean = true> {
|
|
|
1660
1916
|
}
|
|
1661
1917
|
/**
|
|
1662
1918
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1663
|
-
* via the `definition` "
|
|
1664
|
-
*/
|
|
1665
|
-
export interface FeaturesGridBlockSelect<T extends boolean = true> {
|
|
1666
|
-
heading?: T;
|
|
1667
|
-
description?: T;
|
|
1668
|
-
featuresGrid?:
|
|
1669
|
-
| T
|
|
1670
|
-
| {
|
|
1671
|
-
featureIcon?: T;
|
|
1672
|
-
featureName?: T;
|
|
1673
|
-
id?: T;
|
|
1674
|
-
};
|
|
1675
|
-
buttonLink?:
|
|
1676
|
-
| T
|
|
1677
|
-
| {
|
|
1678
|
-
type?: T;
|
|
1679
|
-
newTab?: T;
|
|
1680
|
-
reference?: T;
|
|
1681
|
-
url?: T;
|
|
1682
|
-
label?: T;
|
|
1683
|
-
};
|
|
1684
|
-
disclaimer?: T;
|
|
1685
|
-
id?: T;
|
|
1686
|
-
blockName?: T;
|
|
1687
|
-
}
|
|
1688
|
-
/**
|
|
1689
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
1690
|
-
* via the `definition` "HomeHero_select".
|
|
1691
|
-
*/
|
|
1692
|
-
export interface HomeHeroSelect<T extends boolean = true> {
|
|
1693
|
-
title?: T;
|
|
1694
|
-
subtitle?: T;
|
|
1695
|
-
backgroundImage?: T;
|
|
1696
|
-
layoutMode?: T;
|
|
1697
|
-
fullImageContentAlign?: T;
|
|
1698
|
-
halfImageContentSide?: T;
|
|
1699
|
-
searchLayout?: T;
|
|
1700
|
-
id?: T;
|
|
1701
|
-
blockName?: T;
|
|
1702
|
-
}
|
|
1703
|
-
/**
|
|
1704
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
1705
|
-
* via the `definition` "HorizontalRuleBlock_select".
|
|
1919
|
+
* via the `definition` "GalleryBlock_select".
|
|
1706
1920
|
*/
|
|
1707
|
-
export interface
|
|
1921
|
+
export interface GalleryBlockSelect<T extends boolean = true> {
|
|
1922
|
+
media?: T;
|
|
1708
1923
|
id?: T;
|
|
1709
1924
|
blockName?: T;
|
|
1710
1925
|
}
|
|
@@ -1809,18 +2024,22 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
1809
2024
|
googleApiServerKey?: T;
|
|
1810
2025
|
gtmId?: T;
|
|
1811
2026
|
websiteNotIndexable?: T;
|
|
1812
|
-
|
|
1813
|
-
x?: T;
|
|
1814
|
-
tiktok?: T;
|
|
1815
|
-
instagram?: T;
|
|
1816
|
-
youtube?: T;
|
|
1817
|
-
linkedIn?: T;
|
|
1818
|
-
yelp?: T;
|
|
2027
|
+
socialMedia?: T | SocialMediaSelect<T>;
|
|
1819
2028
|
createdBy?: T;
|
|
1820
2029
|
updatedBy?: T;
|
|
1821
2030
|
updatedAt?: T;
|
|
1822
2031
|
createdAt?: T;
|
|
1823
2032
|
}
|
|
2033
|
+
/**
|
|
2034
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2035
|
+
* via the `definition` "SocialMedia_select".
|
|
2036
|
+
*/
|
|
2037
|
+
export interface SocialMediaSelect<T extends boolean = true> {
|
|
2038
|
+
socialMediaIcon?: T;
|
|
2039
|
+
url?: T;
|
|
2040
|
+
screenReaderText?: T;
|
|
2041
|
+
id?: T;
|
|
2042
|
+
}
|
|
1824
2043
|
/**
|
|
1825
2044
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1826
2045
|
* via the `definition` "posts_select".
|
|
@@ -2019,11 +2238,22 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2019
2238
|
layout?:
|
|
2020
2239
|
| T
|
|
2021
2240
|
| {
|
|
2241
|
+
archive?: T | ArchiveBlockSelect<T>;
|
|
2242
|
+
breadcrumbs?: T | BreadcrumbsBlockSelect<T>;
|
|
2022
2243
|
cta?: T | CallToActionBlockSelect<T>;
|
|
2023
2244
|
content?: T | ContentBlockSelect<T>;
|
|
2024
|
-
|
|
2025
|
-
|
|
2245
|
+
faq?: T | FaqBlockSelect<T>;
|
|
2246
|
+
'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
|
|
2247
|
+
'features-grid'?: T | FeaturesGridBlockSelect<T>;
|
|
2026
2248
|
formBlock?: T | FormBlockSelect<T>;
|
|
2249
|
+
homeHero?: T | HomeHeroSelect<T>;
|
|
2250
|
+
'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
|
|
2251
|
+
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
2252
|
+
mediaBlock?: T | MediaBlockSelect<T>;
|
|
2253
|
+
'rental-steps'?: T | RentalStepsBlockSelect<T>;
|
|
2254
|
+
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
2255
|
+
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
2256
|
+
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2027
2257
|
};
|
|
2028
2258
|
meta?:
|
|
2029
2259
|
| T
|
|
@@ -2299,6 +2529,61 @@ export interface BannerBlock {
|
|
|
2299
2529
|
blockName?: string | null;
|
|
2300
2530
|
blockType: 'banner';
|
|
2301
2531
|
}
|
|
2532
|
+
/**
|
|
2533
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2534
|
+
* via the `definition` "ButtonBlock".
|
|
2535
|
+
*/
|
|
2536
|
+
export interface ButtonBlock {
|
|
2537
|
+
button: {
|
|
2538
|
+
type?: ('reference' | 'custom') | null;
|
|
2539
|
+
newTab?: boolean | null;
|
|
2540
|
+
reference?:
|
|
2541
|
+
| ({
|
|
2542
|
+
relationTo: 'pages';
|
|
2543
|
+
value: string | Page;
|
|
2544
|
+
} | null)
|
|
2545
|
+
| ({
|
|
2546
|
+
relationTo: 'posts';
|
|
2547
|
+
value: string | Post;
|
|
2548
|
+
} | null)
|
|
2549
|
+
| ({
|
|
2550
|
+
relationTo: 'facilities';
|
|
2551
|
+
value: string | Facility;
|
|
2552
|
+
} | null)
|
|
2553
|
+
| ({
|
|
2554
|
+
relationTo: 'markets';
|
|
2555
|
+
value: string | Market;
|
|
2556
|
+
} | null)
|
|
2557
|
+
| ({
|
|
2558
|
+
relationTo: 'categories';
|
|
2559
|
+
value: string | Category;
|
|
2560
|
+
} | null);
|
|
2561
|
+
url?: string | null;
|
|
2562
|
+
label: string;
|
|
2563
|
+
/**
|
|
2564
|
+
* Choose how the link should be rendered.
|
|
2565
|
+
*/
|
|
2566
|
+
appearance?:
|
|
2567
|
+
| (
|
|
2568
|
+
| 'default'
|
|
2569
|
+
| 'primary'
|
|
2570
|
+
| 'primary-light'
|
|
2571
|
+
| 'outline-primary'
|
|
2572
|
+
| 'secondary'
|
|
2573
|
+
| 'secondary-light'
|
|
2574
|
+
| 'outline-secondary'
|
|
2575
|
+
| 'destructive'
|
|
2576
|
+
| 'link'
|
|
2577
|
+
| 'white'
|
|
2578
|
+
| 'ghost'
|
|
2579
|
+
| 'gray'
|
|
2580
|
+
)
|
|
2581
|
+
| null;
|
|
2582
|
+
};
|
|
2583
|
+
id?: string | null;
|
|
2584
|
+
blockName?: string | null;
|
|
2585
|
+
blockType: 'button';
|
|
2586
|
+
}
|
|
2302
2587
|
/**
|
|
2303
2588
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2304
2589
|
* via the `definition` "CodeBlock".
|