@glidevvr/storage-payload-types-pkg 1.0.14 → 1.0.15
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 +569 -294
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -222,17 +222,22 @@ export interface Page {
|
|
|
222
222
|
tenant?: (string | null) | Tenant;
|
|
223
223
|
title: string;
|
|
224
224
|
layout: (
|
|
225
|
+
| ArchiveBlock
|
|
226
|
+
| BreadcrumbsBlock
|
|
225
227
|
| CallToActionBlock
|
|
226
228
|
| ContentBlock
|
|
227
|
-
|
|
|
228
|
-
|
|
|
229
|
-
| FormBlock
|
|
230
|
-
| HomeTestimonialBlock
|
|
231
|
-
| RentalStepsBlock
|
|
232
|
-
| StoragResourcesBlock
|
|
229
|
+
| FaqBlock
|
|
230
|
+
| FeaturedLocationsBlock
|
|
233
231
|
| FeaturesGridBlock
|
|
232
|
+
| FormBlock
|
|
234
233
|
| HomeHero
|
|
235
234
|
| HorizontalRuleBlock
|
|
235
|
+
| SingleTestimonialBlock
|
|
236
|
+
| MediaBlock
|
|
237
|
+
| RentalStepsBlock
|
|
238
|
+
| SearchCalloutBlock
|
|
239
|
+
| StoragResourcesBlock
|
|
240
|
+
| GalleryBlock
|
|
236
241
|
)[];
|
|
237
242
|
meta?: {
|
|
238
243
|
title?: string | null;
|
|
@@ -466,10 +471,10 @@ export interface Media {
|
|
|
466
471
|
}
|
|
467
472
|
/**
|
|
468
473
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
469
|
-
* via the `definition` "
|
|
474
|
+
* via the `definition` "ArchiveBlock".
|
|
470
475
|
*/
|
|
471
|
-
export interface
|
|
472
|
-
|
|
476
|
+
export interface ArchiveBlock {
|
|
477
|
+
introContent?: {
|
|
473
478
|
root: {
|
|
474
479
|
type: string;
|
|
475
480
|
children: {
|
|
@@ -484,45 +489,44 @@ export interface CallToActionBlock {
|
|
|
484
489
|
};
|
|
485
490
|
[k: string]: unknown;
|
|
486
491
|
} | null;
|
|
487
|
-
|
|
492
|
+
populateBy?: ('collection' | 'selection') | null;
|
|
493
|
+
relationTo?: 'posts' | null;
|
|
494
|
+
categories?: (string | Category)[] | null;
|
|
495
|
+
limit?: number | null;
|
|
496
|
+
selectedDocs?:
|
|
488
497
|
| {
|
|
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;
|
|
498
|
+
relationTo: 'posts';
|
|
499
|
+
value: string | Post;
|
|
521
500
|
}[]
|
|
522
501
|
| null;
|
|
523
502
|
id?: string | null;
|
|
524
503
|
blockName?: string | null;
|
|
525
|
-
blockType: '
|
|
504
|
+
blockType: 'archive';
|
|
505
|
+
}
|
|
506
|
+
/**
|
|
507
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
508
|
+
* via the `definition` "categories".
|
|
509
|
+
*/
|
|
510
|
+
export interface Category {
|
|
511
|
+
id: string;
|
|
512
|
+
tenant?: (string | null) | Tenant;
|
|
513
|
+
title: string;
|
|
514
|
+
description?: string | null;
|
|
515
|
+
meta?: {
|
|
516
|
+
title?: string | null;
|
|
517
|
+
description?: string | null;
|
|
518
|
+
/**
|
|
519
|
+
* Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
|
|
520
|
+
*/
|
|
521
|
+
indexable?: boolean | null;
|
|
522
|
+
};
|
|
523
|
+
slug: string;
|
|
524
|
+
slugLock?: boolean | null;
|
|
525
|
+
featuredImage?: (string | null) | Media;
|
|
526
|
+
createdBy?: string | null;
|
|
527
|
+
updatedBy?: string | null;
|
|
528
|
+
updatedAt: string;
|
|
529
|
+
createdAt: string;
|
|
526
530
|
}
|
|
527
531
|
/**
|
|
528
532
|
* This collection is for static blog articles.
|
|
@@ -576,28 +580,87 @@ export interface Post {
|
|
|
576
580
|
}
|
|
577
581
|
/**
|
|
578
582
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
579
|
-
* via the `definition` "
|
|
583
|
+
* via the `definition` "BreadcrumbsBlock".
|
|
580
584
|
*/
|
|
581
|
-
export interface
|
|
582
|
-
id
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
585
|
+
export interface BreadcrumbsBlock {
|
|
586
|
+
id?: string | null;
|
|
587
|
+
blockName?: string | null;
|
|
588
|
+
blockType: 'breadcrumbs';
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
592
|
+
* via the `definition` "CallToActionBlock".
|
|
593
|
+
*/
|
|
594
|
+
export interface CallToActionBlock {
|
|
595
|
+
richText?: {
|
|
596
|
+
root: {
|
|
597
|
+
type: string;
|
|
598
|
+
children: {
|
|
599
|
+
type: string;
|
|
600
|
+
version: number;
|
|
601
|
+
[k: string]: unknown;
|
|
602
|
+
}[];
|
|
603
|
+
direction: ('ltr' | 'rtl') | null;
|
|
604
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
605
|
+
indent: number;
|
|
606
|
+
version: number;
|
|
607
|
+
};
|
|
608
|
+
[k: string]: unknown;
|
|
609
|
+
} | null;
|
|
610
|
+
links?:
|
|
611
|
+
| {
|
|
612
|
+
link: {
|
|
613
|
+
type?: ('reference' | 'custom') | null;
|
|
614
|
+
newTab?: boolean | null;
|
|
615
|
+
reference?:
|
|
616
|
+
| ({
|
|
617
|
+
relationTo: 'pages';
|
|
618
|
+
value: string | Page;
|
|
619
|
+
} | null)
|
|
620
|
+
| ({
|
|
621
|
+
relationTo: 'posts';
|
|
622
|
+
value: string | Post;
|
|
623
|
+
} | null)
|
|
624
|
+
| ({
|
|
625
|
+
relationTo: 'facilities';
|
|
626
|
+
value: string | Facility;
|
|
627
|
+
} | null)
|
|
628
|
+
| ({
|
|
629
|
+
relationTo: 'markets';
|
|
630
|
+
value: string | Market;
|
|
631
|
+
} | null)
|
|
632
|
+
| ({
|
|
633
|
+
relationTo: 'categories';
|
|
634
|
+
value: string | Category;
|
|
635
|
+
} | null);
|
|
636
|
+
url?: string | null;
|
|
637
|
+
label: string;
|
|
638
|
+
/**
|
|
639
|
+
* Choose how the link should be rendered.
|
|
640
|
+
*/
|
|
641
|
+
appearance?:
|
|
642
|
+
| (
|
|
643
|
+
| 'default'
|
|
644
|
+
| 'primary'
|
|
645
|
+
| 'primary-light'
|
|
646
|
+
| 'outline-primary'
|
|
647
|
+
| 'secondary'
|
|
648
|
+
| 'secondary-light'
|
|
649
|
+
| 'outline-secondary'
|
|
650
|
+
| 'destructive'
|
|
651
|
+
| 'link'
|
|
652
|
+
| 'white'
|
|
653
|
+
| 'ghost'
|
|
654
|
+
| 'gray'
|
|
655
|
+
)
|
|
656
|
+
| null;
|
|
657
|
+
};
|
|
658
|
+
id?: string | null;
|
|
659
|
+
}[]
|
|
660
|
+
| null;
|
|
661
|
+
id?: string | null;
|
|
662
|
+
blockName?: string | null;
|
|
663
|
+
blockType: 'cta';
|
|
601
664
|
}
|
|
602
665
|
/**
|
|
603
666
|
* This collection represents different facilities.
|
|
@@ -656,8 +719,8 @@ export interface Facility {
|
|
|
656
719
|
| null;
|
|
657
720
|
faq?:
|
|
658
721
|
| {
|
|
659
|
-
question
|
|
660
|
-
answer
|
|
722
|
+
question: string;
|
|
723
|
+
answer: {
|
|
661
724
|
root: {
|
|
662
725
|
type: string;
|
|
663
726
|
children: {
|
|
@@ -671,7 +734,7 @@ export interface Facility {
|
|
|
671
734
|
version: number;
|
|
672
735
|
};
|
|
673
736
|
[k: string]: unknown;
|
|
674
|
-
}
|
|
737
|
+
};
|
|
675
738
|
id?: string | null;
|
|
676
739
|
}[]
|
|
677
740
|
| null;
|
|
@@ -726,7 +789,26 @@ export interface Market {
|
|
|
726
789
|
sort: 'facility_title' | 'state' | 'city' | 'starting_price';
|
|
727
790
|
customOrGeo: 'geo' | 'custom';
|
|
728
791
|
customFacilities?: (string | Facility)[] | null;
|
|
729
|
-
layout?:
|
|
792
|
+
layout?:
|
|
793
|
+
| (
|
|
794
|
+
| ArchiveBlock
|
|
795
|
+
| BreadcrumbsBlock
|
|
796
|
+
| CallToActionBlock
|
|
797
|
+
| ContentBlock
|
|
798
|
+
| FaqBlock
|
|
799
|
+
| FeaturedLocationsBlock
|
|
800
|
+
| FeaturesGridBlock
|
|
801
|
+
| FormBlock
|
|
802
|
+
| HomeHero
|
|
803
|
+
| HorizontalRuleBlock
|
|
804
|
+
| SingleTestimonialBlock
|
|
805
|
+
| MediaBlock
|
|
806
|
+
| RentalStepsBlock
|
|
807
|
+
| SearchCalloutBlock
|
|
808
|
+
| StoragResourcesBlock
|
|
809
|
+
| GalleryBlock
|
|
810
|
+
)[]
|
|
811
|
+
| null;
|
|
730
812
|
meta?: {
|
|
731
813
|
title?: string | null;
|
|
732
814
|
description?: string | null;
|
|
@@ -751,7 +833,7 @@ export interface Market {
|
|
|
751
833
|
export interface ContentBlock {
|
|
752
834
|
columns?:
|
|
753
835
|
| {
|
|
754
|
-
size?: ('
|
|
836
|
+
size?: ('half' | 'oneThird' | 'twoThirds' | 'full') | null;
|
|
755
837
|
richText?: {
|
|
756
838
|
root: {
|
|
757
839
|
type: string;
|
|
@@ -797,7 +879,22 @@ export interface ContentBlock {
|
|
|
797
879
|
/**
|
|
798
880
|
* Choose how the link should be rendered.
|
|
799
881
|
*/
|
|
800
|
-
appearance?:
|
|
882
|
+
appearance?:
|
|
883
|
+
| (
|
|
884
|
+
| 'default'
|
|
885
|
+
| 'primary'
|
|
886
|
+
| 'primary-light'
|
|
887
|
+
| 'outline-primary'
|
|
888
|
+
| 'secondary'
|
|
889
|
+
| 'secondary-light'
|
|
890
|
+
| 'outline-secondary'
|
|
891
|
+
| 'destructive'
|
|
892
|
+
| 'link'
|
|
893
|
+
| 'white'
|
|
894
|
+
| 'ghost'
|
|
895
|
+
| 'gray'
|
|
896
|
+
)
|
|
897
|
+
| null;
|
|
801
898
|
};
|
|
802
899
|
id?: string | null;
|
|
803
900
|
}[]
|
|
@@ -808,21 +905,69 @@ export interface ContentBlock {
|
|
|
808
905
|
}
|
|
809
906
|
/**
|
|
810
907
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
811
|
-
* via the `definition` "
|
|
908
|
+
* via the `definition` "FaqBlock".
|
|
812
909
|
*/
|
|
813
|
-
export interface
|
|
814
|
-
|
|
815
|
-
|
|
910
|
+
export interface FaqBlock {
|
|
911
|
+
richText?: {
|
|
912
|
+
root: {
|
|
913
|
+
type: string;
|
|
914
|
+
children: {
|
|
915
|
+
type: string;
|
|
916
|
+
version: number;
|
|
917
|
+
[k: string]: unknown;
|
|
918
|
+
}[];
|
|
919
|
+
direction: ('ltr' | 'rtl') | null;
|
|
920
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
921
|
+
indent: number;
|
|
922
|
+
version: number;
|
|
923
|
+
};
|
|
924
|
+
[k: string]: unknown;
|
|
925
|
+
} | null;
|
|
926
|
+
/**
|
|
927
|
+
* Only one block per page should have the include FAQ schema option checked.
|
|
928
|
+
*/
|
|
929
|
+
includeFaqSchema?: boolean | null;
|
|
930
|
+
faq?:
|
|
931
|
+
| {
|
|
932
|
+
question: string;
|
|
933
|
+
answer: {
|
|
934
|
+
root: {
|
|
935
|
+
type: string;
|
|
936
|
+
children: {
|
|
937
|
+
type: string;
|
|
938
|
+
version: number;
|
|
939
|
+
[k: string]: unknown;
|
|
940
|
+
}[];
|
|
941
|
+
direction: ('ltr' | 'rtl') | null;
|
|
942
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
943
|
+
indent: number;
|
|
944
|
+
version: number;
|
|
945
|
+
};
|
|
946
|
+
[k: string]: unknown;
|
|
947
|
+
};
|
|
948
|
+
id?: string | null;
|
|
949
|
+
}[]
|
|
950
|
+
| null;
|
|
816
951
|
id?: string | null;
|
|
817
952
|
blockName?: string | null;
|
|
818
|
-
blockType: '
|
|
953
|
+
blockType: 'faq';
|
|
819
954
|
}
|
|
820
955
|
/**
|
|
821
956
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
822
|
-
* via the `definition` "
|
|
957
|
+
* via the `definition` "FeaturedLocationsBlock".
|
|
823
958
|
*/
|
|
824
|
-
export interface
|
|
825
|
-
|
|
959
|
+
export interface FeaturedLocationsBlock {
|
|
960
|
+
id?: string | null;
|
|
961
|
+
blockName?: string | null;
|
|
962
|
+
blockType: 'featured-locations';
|
|
963
|
+
}
|
|
964
|
+
/**
|
|
965
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
966
|
+
* via the `definition` "FeaturesGridBlock".
|
|
967
|
+
*/
|
|
968
|
+
export interface FeaturesGridBlock {
|
|
969
|
+
heading?: string | null;
|
|
970
|
+
description?: {
|
|
826
971
|
root: {
|
|
827
972
|
type: string;
|
|
828
973
|
children: {
|
|
@@ -837,19 +982,58 @@ export interface ArchiveBlock {
|
|
|
837
982
|
};
|
|
838
983
|
[k: string]: unknown;
|
|
839
984
|
} | null;
|
|
840
|
-
|
|
841
|
-
relationTo?: 'posts' | null;
|
|
842
|
-
categories?: (string | Category)[] | null;
|
|
843
|
-
limit?: number | null;
|
|
844
|
-
selectedDocs?:
|
|
985
|
+
featuresGrid?:
|
|
845
986
|
| {
|
|
846
|
-
|
|
847
|
-
|
|
987
|
+
featureIcon: string;
|
|
988
|
+
featureName: string;
|
|
989
|
+
id?: string | null;
|
|
848
990
|
}[]
|
|
849
991
|
| null;
|
|
992
|
+
buttonLink?: {
|
|
993
|
+
type?: ('reference' | 'custom') | null;
|
|
994
|
+
newTab?: boolean | null;
|
|
995
|
+
reference?:
|
|
996
|
+
| ({
|
|
997
|
+
relationTo: 'pages';
|
|
998
|
+
value: string | Page;
|
|
999
|
+
} | null)
|
|
1000
|
+
| ({
|
|
1001
|
+
relationTo: 'posts';
|
|
1002
|
+
value: string | Post;
|
|
1003
|
+
} | null)
|
|
1004
|
+
| ({
|
|
1005
|
+
relationTo: 'facilities';
|
|
1006
|
+
value: string | Facility;
|
|
1007
|
+
} | null)
|
|
1008
|
+
| ({
|
|
1009
|
+
relationTo: 'markets';
|
|
1010
|
+
value: string | Market;
|
|
1011
|
+
} | null)
|
|
1012
|
+
| ({
|
|
1013
|
+
relationTo: 'categories';
|
|
1014
|
+
value: string | Category;
|
|
1015
|
+
} | null);
|
|
1016
|
+
url?: string | null;
|
|
1017
|
+
label?: string | null;
|
|
1018
|
+
};
|
|
1019
|
+
disclaimer?: {
|
|
1020
|
+
root: {
|
|
1021
|
+
type: string;
|
|
1022
|
+
children: {
|
|
1023
|
+
type: string;
|
|
1024
|
+
version: number;
|
|
1025
|
+
[k: string]: unknown;
|
|
1026
|
+
}[];
|
|
1027
|
+
direction: ('ltr' | 'rtl') | null;
|
|
1028
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1029
|
+
indent: number;
|
|
1030
|
+
version: number;
|
|
1031
|
+
};
|
|
1032
|
+
[k: string]: unknown;
|
|
1033
|
+
} | null;
|
|
850
1034
|
id?: string | null;
|
|
851
1035
|
blockName?: string | null;
|
|
852
|
-
blockType: '
|
|
1036
|
+
blockType: 'features-grid';
|
|
853
1037
|
}
|
|
854
1038
|
/**
|
|
855
1039
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1075,9 +1259,34 @@ export interface Form {
|
|
|
1075
1259
|
}
|
|
1076
1260
|
/**
|
|
1077
1261
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1078
|
-
* via the `definition` "
|
|
1262
|
+
* via the `definition` "HomeHero".
|
|
1263
|
+
*/
|
|
1264
|
+
export interface HomeHero {
|
|
1265
|
+
title?: string | null;
|
|
1266
|
+
subtitle?: string | null;
|
|
1267
|
+
backgroundImage?: (string | null) | Media;
|
|
1268
|
+
layoutMode?: ('half' | 'full') | null;
|
|
1269
|
+
fullImageContentAlign?: ('center' | 'right' | 'left') | null;
|
|
1270
|
+
halfImageContentSide?: ('right' | 'left') | null;
|
|
1271
|
+
searchLayout?: 'default' | null;
|
|
1272
|
+
id?: string | null;
|
|
1273
|
+
blockName?: string | null;
|
|
1274
|
+
blockType: 'homeHero';
|
|
1275
|
+
}
|
|
1276
|
+
/**
|
|
1277
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1278
|
+
* via the `definition` "HorizontalRuleBlock".
|
|
1279
|
+
*/
|
|
1280
|
+
export interface HorizontalRuleBlock {
|
|
1281
|
+
id?: string | null;
|
|
1282
|
+
blockName?: string | null;
|
|
1283
|
+
blockType: 'horizontal-rule';
|
|
1284
|
+
}
|
|
1285
|
+
/**
|
|
1286
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1287
|
+
* via the `definition` "SingleTestimonialBlock".
|
|
1079
1288
|
*/
|
|
1080
|
-
export interface
|
|
1289
|
+
export interface SingleTestimonialBlock {
|
|
1081
1290
|
heading?: string | null;
|
|
1082
1291
|
testimonialText?: string | null;
|
|
1083
1292
|
author?: string | null;
|
|
@@ -1087,7 +1296,18 @@ export interface HomeTestimonialBlock {
|
|
|
1087
1296
|
bottomImage?: (string | null) | Media;
|
|
1088
1297
|
id?: string | null;
|
|
1089
1298
|
blockName?: string | null;
|
|
1090
|
-
blockType: '
|
|
1299
|
+
blockType: 'singleTestimonial';
|
|
1300
|
+
}
|
|
1301
|
+
/**
|
|
1302
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1303
|
+
* via the `definition` "MediaBlock".
|
|
1304
|
+
*/
|
|
1305
|
+
export interface MediaBlock {
|
|
1306
|
+
position?: ('default' | 'fullscreen') | null;
|
|
1307
|
+
media: string | Media;
|
|
1308
|
+
id?: string | null;
|
|
1309
|
+
blockName?: string | null;
|
|
1310
|
+
blockType: 'mediaBlock';
|
|
1091
1311
|
}
|
|
1092
1312
|
/**
|
|
1093
1313
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1108,95 +1328,23 @@ export interface RentalStepsBlock {
|
|
|
1108
1328
|
}
|
|
1109
1329
|
/**
|
|
1110
1330
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1111
|
-
* via the `definition` "
|
|
1331
|
+
* via the `definition` "SearchCalloutBlock".
|
|
1112
1332
|
*/
|
|
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;
|
|
1333
|
+
export interface SearchCalloutBlock {
|
|
1334
|
+
text: string;
|
|
1335
|
+
/**
|
|
1336
|
+
* The button will direct the user to the All Locations page selected for the partner.
|
|
1337
|
+
*/
|
|
1338
|
+
buttonText: string;
|
|
1191
1339
|
id?: string | null;
|
|
1192
1340
|
blockName?: string | null;
|
|
1193
|
-
blockType: '
|
|
1341
|
+
blockType: 'search-callout';
|
|
1194
1342
|
}
|
|
1195
1343
|
/**
|
|
1196
1344
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1197
|
-
* via the `definition` "
|
|
1345
|
+
* via the `definition` "StoragResourcesBlock".
|
|
1198
1346
|
*/
|
|
1199
|
-
export interface
|
|
1347
|
+
export interface StoragResourcesBlock {
|
|
1200
1348
|
heading?: string | null;
|
|
1201
1349
|
description?: {
|
|
1202
1350
|
root: {
|
|
@@ -1213,13 +1361,6 @@ export interface FeaturesGridBlock {
|
|
|
1213
1361
|
};
|
|
1214
1362
|
[k: string]: unknown;
|
|
1215
1363
|
} | null;
|
|
1216
|
-
featuresGrid?:
|
|
1217
|
-
| {
|
|
1218
|
-
featureIcon?: string | null;
|
|
1219
|
-
featureName?: string | null;
|
|
1220
|
-
id?: string | null;
|
|
1221
|
-
}[]
|
|
1222
|
-
| null;
|
|
1223
1364
|
buttonLink?: {
|
|
1224
1365
|
type?: ('reference' | 'custom') | null;
|
|
1225
1366
|
newTab?: boolean | null;
|
|
@@ -1233,63 +1374,67 @@ export interface FeaturesGridBlock {
|
|
|
1233
1374
|
value: string | Post;
|
|
1234
1375
|
} | null)
|
|
1235
1376
|
| ({
|
|
1236
|
-
relationTo: 'facilities';
|
|
1237
|
-
value: string | Facility;
|
|
1238
|
-
} | null)
|
|
1239
|
-
| ({
|
|
1240
|
-
relationTo: 'markets';
|
|
1241
|
-
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
|
-
|
|
1377
|
+
relationTo: 'facilities';
|
|
1378
|
+
value: string | Facility;
|
|
1379
|
+
} | null)
|
|
1380
|
+
| ({
|
|
1381
|
+
relationTo: 'markets';
|
|
1382
|
+
value: string | Market;
|
|
1383
|
+
} | null)
|
|
1384
|
+
| ({
|
|
1385
|
+
relationTo: 'categories';
|
|
1386
|
+
value: string | Category;
|
|
1387
|
+
} | null);
|
|
1388
|
+
url?: string | null;
|
|
1389
|
+
label?: string | null;
|
|
1390
|
+
};
|
|
1391
|
+
storageResources?:
|
|
1392
|
+
| {
|
|
1393
|
+
resourceIcon?: string | null;
|
|
1394
|
+
resourceTitle?: string | null;
|
|
1395
|
+
resourceLink: {
|
|
1396
|
+
type?: ('reference' | 'custom') | null;
|
|
1397
|
+
newTab?: boolean | null;
|
|
1398
|
+
reference?:
|
|
1399
|
+
| ({
|
|
1400
|
+
relationTo: 'pages';
|
|
1401
|
+
value: string | Page;
|
|
1402
|
+
} | null)
|
|
1403
|
+
| ({
|
|
1404
|
+
relationTo: 'posts';
|
|
1405
|
+
value: string | Post;
|
|
1406
|
+
} | null)
|
|
1407
|
+
| ({
|
|
1408
|
+
relationTo: 'facilities';
|
|
1409
|
+
value: string | Facility;
|
|
1410
|
+
} | null)
|
|
1411
|
+
| ({
|
|
1412
|
+
relationTo: 'markets';
|
|
1413
|
+
value: string | Market;
|
|
1414
|
+
} | null)
|
|
1415
|
+
| ({
|
|
1416
|
+
relationTo: 'categories';
|
|
1417
|
+
value: string | Category;
|
|
1418
|
+
} | null);
|
|
1419
|
+
url?: string | null;
|
|
1420
|
+
label: string;
|
|
1421
|
+
};
|
|
1422
|
+
id?: string | null;
|
|
1423
|
+
}[]
|
|
1424
|
+
| null;
|
|
1281
1425
|
id?: string | null;
|
|
1282
1426
|
blockName?: string | null;
|
|
1283
|
-
blockType: '
|
|
1427
|
+
blockType: 'storage-resources';
|
|
1284
1428
|
}
|
|
1285
1429
|
/**
|
|
1286
1430
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1287
|
-
* via the `definition` "
|
|
1431
|
+
* via the `definition` "GalleryBlock".
|
|
1288
1432
|
*/
|
|
1289
|
-
export interface
|
|
1433
|
+
export interface GalleryBlock {
|
|
1434
|
+
media: (string | Media)[];
|
|
1290
1435
|
id?: string | null;
|
|
1291
1436
|
blockName?: string | null;
|
|
1292
|
-
blockType: '
|
|
1437
|
+
blockType: 'galleryBlock';
|
|
1293
1438
|
}
|
|
1294
1439
|
/**
|
|
1295
1440
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1299,7 +1444,14 @@ export interface Menu {
|
|
|
1299
1444
|
id: string;
|
|
1300
1445
|
tenant?: (string | null) | Tenant;
|
|
1301
1446
|
title: string;
|
|
1302
|
-
location:
|
|
1447
|
+
location:
|
|
1448
|
+
| 'main_menu'
|
|
1449
|
+
| 'footer_menu_1'
|
|
1450
|
+
| 'footer_menu_2'
|
|
1451
|
+
| 'footer_menu_3'
|
|
1452
|
+
| 'footer_menu_4'
|
|
1453
|
+
| 'policy_menu'
|
|
1454
|
+
| 'none';
|
|
1303
1455
|
columns?: number | null;
|
|
1304
1456
|
navItems?: NavItem;
|
|
1305
1457
|
createdBy?: string | null;
|
|
@@ -1478,17 +1630,22 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
1478
1630
|
layout?:
|
|
1479
1631
|
| T
|
|
1480
1632
|
| {
|
|
1633
|
+
archive?: T | ArchiveBlockSelect<T>;
|
|
1634
|
+
breadcrumbs?: T | BreadcrumbsBlockSelect<T>;
|
|
1481
1635
|
cta?: T | CallToActionBlockSelect<T>;
|
|
1482
1636
|
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>;
|
|
1637
|
+
faq?: T | FaqBlockSelect<T>;
|
|
1638
|
+
'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
|
|
1489
1639
|
'features-grid'?: T | FeaturesGridBlockSelect<T>;
|
|
1640
|
+
formBlock?: T | FormBlockSelect<T>;
|
|
1490
1641
|
homeHero?: T | HomeHeroSelect<T>;
|
|
1491
1642
|
'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
|
|
1643
|
+
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
1644
|
+
mediaBlock?: T | MediaBlockSelect<T>;
|
|
1645
|
+
'rental-steps'?: T | RentalStepsBlockSelect<T>;
|
|
1646
|
+
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
1647
|
+
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
1648
|
+
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
1492
1649
|
};
|
|
1493
1650
|
meta?:
|
|
1494
1651
|
| T
|
|
@@ -1507,6 +1664,28 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
1507
1664
|
createdAt?: T;
|
|
1508
1665
|
_status?: T;
|
|
1509
1666
|
}
|
|
1667
|
+
/**
|
|
1668
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1669
|
+
* via the `definition` "ArchiveBlock_select".
|
|
1670
|
+
*/
|
|
1671
|
+
export interface ArchiveBlockSelect<T extends boolean = true> {
|
|
1672
|
+
introContent?: T;
|
|
1673
|
+
populateBy?: T;
|
|
1674
|
+
relationTo?: T;
|
|
1675
|
+
categories?: T;
|
|
1676
|
+
limit?: T;
|
|
1677
|
+
selectedDocs?: T;
|
|
1678
|
+
id?: T;
|
|
1679
|
+
blockName?: T;
|
|
1680
|
+
}
|
|
1681
|
+
/**
|
|
1682
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1683
|
+
* via the `definition` "BreadcrumbsBlock_select".
|
|
1684
|
+
*/
|
|
1685
|
+
export interface BreadcrumbsBlockSelect<T extends boolean = true> {
|
|
1686
|
+
id?: T;
|
|
1687
|
+
blockName?: T;
|
|
1688
|
+
}
|
|
1510
1689
|
/**
|
|
1511
1690
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1512
1691
|
* via the `definition` "CallToActionBlock_select".
|
|
@@ -1559,25 +1738,53 @@ export interface ContentBlockSelect<T extends boolean = true> {
|
|
|
1559
1738
|
}
|
|
1560
1739
|
/**
|
|
1561
1740
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1562
|
-
* via the `definition` "
|
|
1741
|
+
* via the `definition` "FaqBlock_select".
|
|
1563
1742
|
*/
|
|
1564
|
-
export interface
|
|
1565
|
-
|
|
1566
|
-
|
|
1743
|
+
export interface FaqBlockSelect<T extends boolean = true> {
|
|
1744
|
+
richText?: T;
|
|
1745
|
+
includeFaqSchema?: T;
|
|
1746
|
+
faq?:
|
|
1747
|
+
| T
|
|
1748
|
+
| {
|
|
1749
|
+
question?: T;
|
|
1750
|
+
answer?: T;
|
|
1751
|
+
id?: T;
|
|
1752
|
+
};
|
|
1567
1753
|
id?: T;
|
|
1568
1754
|
blockName?: T;
|
|
1569
1755
|
}
|
|
1570
1756
|
/**
|
|
1571
1757
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1572
|
-
* via the `definition` "
|
|
1758
|
+
* via the `definition` "FeaturedLocationsBlock_select".
|
|
1573
1759
|
*/
|
|
1574
|
-
export interface
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1760
|
+
export interface FeaturedLocationsBlockSelect<T extends boolean = true> {
|
|
1761
|
+
id?: T;
|
|
1762
|
+
blockName?: T;
|
|
1763
|
+
}
|
|
1764
|
+
/**
|
|
1765
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1766
|
+
* via the `definition` "FeaturesGridBlock_select".
|
|
1767
|
+
*/
|
|
1768
|
+
export interface FeaturesGridBlockSelect<T extends boolean = true> {
|
|
1769
|
+
heading?: T;
|
|
1770
|
+
description?: T;
|
|
1771
|
+
featuresGrid?:
|
|
1772
|
+
| T
|
|
1773
|
+
| {
|
|
1774
|
+
featureIcon?: T;
|
|
1775
|
+
featureName?: T;
|
|
1776
|
+
id?: T;
|
|
1777
|
+
};
|
|
1778
|
+
buttonLink?:
|
|
1779
|
+
| T
|
|
1780
|
+
| {
|
|
1781
|
+
type?: T;
|
|
1782
|
+
newTab?: T;
|
|
1783
|
+
reference?: T;
|
|
1784
|
+
url?: T;
|
|
1785
|
+
label?: T;
|
|
1786
|
+
};
|
|
1787
|
+
disclaimer?: T;
|
|
1581
1788
|
id?: T;
|
|
1582
1789
|
blockName?: T;
|
|
1583
1790
|
}
|
|
@@ -1594,9 +1801,32 @@ export interface FormBlockSelect<T extends boolean = true> {
|
|
|
1594
1801
|
}
|
|
1595
1802
|
/**
|
|
1596
1803
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1597
|
-
* via the `definition` "
|
|
1804
|
+
* via the `definition` "HomeHero_select".
|
|
1805
|
+
*/
|
|
1806
|
+
export interface HomeHeroSelect<T extends boolean = true> {
|
|
1807
|
+
title?: T;
|
|
1808
|
+
subtitle?: T;
|
|
1809
|
+
backgroundImage?: T;
|
|
1810
|
+
layoutMode?: T;
|
|
1811
|
+
fullImageContentAlign?: T;
|
|
1812
|
+
halfImageContentSide?: T;
|
|
1813
|
+
searchLayout?: T;
|
|
1814
|
+
id?: T;
|
|
1815
|
+
blockName?: T;
|
|
1816
|
+
}
|
|
1817
|
+
/**
|
|
1818
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1819
|
+
* via the `definition` "HorizontalRuleBlock_select".
|
|
1820
|
+
*/
|
|
1821
|
+
export interface HorizontalRuleBlockSelect<T extends boolean = true> {
|
|
1822
|
+
id?: T;
|
|
1823
|
+
blockName?: T;
|
|
1824
|
+
}
|
|
1825
|
+
/**
|
|
1826
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1827
|
+
* via the `definition` "SingleTestimonialBlock_select".
|
|
1598
1828
|
*/
|
|
1599
|
-
export interface
|
|
1829
|
+
export interface SingleTestimonialBlockSelect<T extends boolean = true> {
|
|
1600
1830
|
heading?: T;
|
|
1601
1831
|
testimonialText?: T;
|
|
1602
1832
|
author?: T;
|
|
@@ -1607,6 +1837,16 @@ export interface HomeTestimonialBlockSelect<T extends boolean = true> {
|
|
|
1607
1837
|
id?: T;
|
|
1608
1838
|
blockName?: T;
|
|
1609
1839
|
}
|
|
1840
|
+
/**
|
|
1841
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1842
|
+
* via the `definition` "MediaBlock_select".
|
|
1843
|
+
*/
|
|
1844
|
+
export interface MediaBlockSelect<T extends boolean = true> {
|
|
1845
|
+
position?: T;
|
|
1846
|
+
media?: T;
|
|
1847
|
+
id?: T;
|
|
1848
|
+
blockName?: T;
|
|
1849
|
+
}
|
|
1610
1850
|
/**
|
|
1611
1851
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1612
1852
|
* via the `definition` "RentalStepsBlock_select".
|
|
@@ -1623,6 +1863,16 @@ export interface RentalStepsBlockSelect<T extends boolean = true> {
|
|
|
1623
1863
|
id?: T;
|
|
1624
1864
|
blockName?: T;
|
|
1625
1865
|
}
|
|
1866
|
+
/**
|
|
1867
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1868
|
+
* via the `definition` "SearchCalloutBlock_select".
|
|
1869
|
+
*/
|
|
1870
|
+
export interface SearchCalloutBlockSelect<T extends boolean = true> {
|
|
1871
|
+
text?: T;
|
|
1872
|
+
buttonText?: T;
|
|
1873
|
+
id?: T;
|
|
1874
|
+
blockName?: T;
|
|
1875
|
+
}
|
|
1626
1876
|
/**
|
|
1627
1877
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1628
1878
|
* via the `definition` "StoragResourcesBlock_select".
|
|
@@ -1660,51 +1910,10 @@ export interface StoragResourcesBlockSelect<T extends boolean = true> {
|
|
|
1660
1910
|
}
|
|
1661
1911
|
/**
|
|
1662
1912
|
* 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".
|
|
1913
|
+
* via the `definition` "GalleryBlock_select".
|
|
1706
1914
|
*/
|
|
1707
|
-
export interface
|
|
1915
|
+
export interface GalleryBlockSelect<T extends boolean = true> {
|
|
1916
|
+
media?: T;
|
|
1708
1917
|
id?: T;
|
|
1709
1918
|
blockName?: T;
|
|
1710
1919
|
}
|
|
@@ -2019,11 +2228,22 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2019
2228
|
layout?:
|
|
2020
2229
|
| T
|
|
2021
2230
|
| {
|
|
2231
|
+
archive?: T | ArchiveBlockSelect<T>;
|
|
2232
|
+
breadcrumbs?: T | BreadcrumbsBlockSelect<T>;
|
|
2022
2233
|
cta?: T | CallToActionBlockSelect<T>;
|
|
2023
2234
|
content?: T | ContentBlockSelect<T>;
|
|
2024
|
-
|
|
2025
|
-
|
|
2235
|
+
faq?: T | FaqBlockSelect<T>;
|
|
2236
|
+
'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
|
|
2237
|
+
'features-grid'?: T | FeaturesGridBlockSelect<T>;
|
|
2026
2238
|
formBlock?: T | FormBlockSelect<T>;
|
|
2239
|
+
homeHero?: T | HomeHeroSelect<T>;
|
|
2240
|
+
'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
|
|
2241
|
+
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
2242
|
+
mediaBlock?: T | MediaBlockSelect<T>;
|
|
2243
|
+
'rental-steps'?: T | RentalStepsBlockSelect<T>;
|
|
2244
|
+
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
2245
|
+
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
2246
|
+
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2027
2247
|
};
|
|
2028
2248
|
meta?:
|
|
2029
2249
|
| T
|
|
@@ -2299,6 +2519,61 @@ export interface BannerBlock {
|
|
|
2299
2519
|
blockName?: string | null;
|
|
2300
2520
|
blockType: 'banner';
|
|
2301
2521
|
}
|
|
2522
|
+
/**
|
|
2523
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2524
|
+
* via the `definition` "ButtonBlock".
|
|
2525
|
+
*/
|
|
2526
|
+
export interface ButtonBlock {
|
|
2527
|
+
button: {
|
|
2528
|
+
type?: ('reference' | 'custom') | null;
|
|
2529
|
+
newTab?: boolean | null;
|
|
2530
|
+
reference?:
|
|
2531
|
+
| ({
|
|
2532
|
+
relationTo: 'pages';
|
|
2533
|
+
value: string | Page;
|
|
2534
|
+
} | null)
|
|
2535
|
+
| ({
|
|
2536
|
+
relationTo: 'posts';
|
|
2537
|
+
value: string | Post;
|
|
2538
|
+
} | null)
|
|
2539
|
+
| ({
|
|
2540
|
+
relationTo: 'facilities';
|
|
2541
|
+
value: string | Facility;
|
|
2542
|
+
} | null)
|
|
2543
|
+
| ({
|
|
2544
|
+
relationTo: 'markets';
|
|
2545
|
+
value: string | Market;
|
|
2546
|
+
} | null)
|
|
2547
|
+
| ({
|
|
2548
|
+
relationTo: 'categories';
|
|
2549
|
+
value: string | Category;
|
|
2550
|
+
} | null);
|
|
2551
|
+
url?: string | null;
|
|
2552
|
+
label: string;
|
|
2553
|
+
/**
|
|
2554
|
+
* Choose how the link should be rendered.
|
|
2555
|
+
*/
|
|
2556
|
+
appearance?:
|
|
2557
|
+
| (
|
|
2558
|
+
| 'default'
|
|
2559
|
+
| 'primary'
|
|
2560
|
+
| 'primary-light'
|
|
2561
|
+
| 'outline-primary'
|
|
2562
|
+
| 'secondary'
|
|
2563
|
+
| 'secondary-light'
|
|
2564
|
+
| 'outline-secondary'
|
|
2565
|
+
| 'destructive'
|
|
2566
|
+
| 'link'
|
|
2567
|
+
| 'white'
|
|
2568
|
+
| 'ghost'
|
|
2569
|
+
| 'gray'
|
|
2570
|
+
)
|
|
2571
|
+
| null;
|
|
2572
|
+
};
|
|
2573
|
+
id?: string | null;
|
|
2574
|
+
blockName?: string | null;
|
|
2575
|
+
blockType: 'button';
|
|
2576
|
+
}
|
|
2302
2577
|
/**
|
|
2303
2578
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2304
2579
|
* via the `definition` "CodeBlock".
|