@glidevvr/storage-payload-types-pkg 1.0.13 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +572 -294
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
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
- | MediaBlock
228
- | ArchiveBlock
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;
@@ -314,6 +319,9 @@ export interface User {
314
319
  * Super Admin: Full system control. Partner Admin: Manages users within their Partner. User: Restricted access to Partner data.
315
320
  */
316
321
  role: 'user' | 'partner-admin' | 'api-user' | 'super-admin';
322
+ /**
323
+ * Username must be unique and cannot contain spaces, uppercase letters, or special characters besides underscores, periods, and hyphens.
324
+ */
317
325
  username: string;
318
326
  firstName: string;
319
327
  lastName: string;
@@ -463,10 +471,10 @@ export interface Media {
463
471
  }
464
472
  /**
465
473
  * This interface was referenced by `Config`'s JSON-Schema
466
- * via the `definition` "CallToActionBlock".
474
+ * via the `definition` "ArchiveBlock".
467
475
  */
468
- export interface CallToActionBlock {
469
- richText?: {
476
+ export interface ArchiveBlock {
477
+ introContent?: {
470
478
  root: {
471
479
  type: string;
472
480
  children: {
@@ -481,45 +489,44 @@ export interface CallToActionBlock {
481
489
  };
482
490
  [k: string]: unknown;
483
491
  } | null;
484
- links?:
492
+ populateBy?: ('collection' | 'selection') | null;
493
+ relationTo?: 'posts' | null;
494
+ categories?: (string | Category)[] | null;
495
+ limit?: number | null;
496
+ selectedDocs?:
485
497
  | {
486
- link: {
487
- type?: ('reference' | 'custom') | null;
488
- newTab?: boolean | null;
489
- reference?:
490
- | ({
491
- relationTo: 'pages';
492
- value: string | Page;
493
- } | null)
494
- | ({
495
- relationTo: 'posts';
496
- value: string | Post;
497
- } | null)
498
- | ({
499
- relationTo: 'facilities';
500
- value: string | Facility;
501
- } | null)
502
- | ({
503
- relationTo: 'markets';
504
- value: string | Market;
505
- } | null)
506
- | ({
507
- relationTo: 'categories';
508
- value: string | Category;
509
- } | null);
510
- url?: string | null;
511
- label: string;
512
- /**
513
- * Choose how the link should be rendered.
514
- */
515
- appearance?: ('default' | 'outline') | null;
516
- };
517
- id?: string | null;
498
+ relationTo: 'posts';
499
+ value: string | Post;
518
500
  }[]
519
501
  | null;
520
502
  id?: string | null;
521
503
  blockName?: string | null;
522
- blockType: 'cta';
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;
523
530
  }
524
531
  /**
525
532
  * This collection is for static blog articles.
@@ -573,28 +580,87 @@ export interface Post {
573
580
  }
574
581
  /**
575
582
  * This interface was referenced by `Config`'s JSON-Schema
576
- * via the `definition` "categories".
583
+ * via the `definition` "BreadcrumbsBlock".
577
584
  */
578
- export interface Category {
579
- id: string;
580
- tenant?: (string | null) | Tenant;
581
- title: string;
582
- description?: string | null;
583
- meta?: {
584
- title?: string | null;
585
- description?: string | null;
586
- /**
587
- * Determines noindex/index status for this page. If the website setting is set to noindex, it will override this page-specific setting.
588
- */
589
- indexable?: boolean | null;
590
- };
591
- slug: string;
592
- slugLock?: boolean | null;
593
- featuredImage?: (string | null) | Media;
594
- createdBy?: string | null;
595
- updatedBy?: string | null;
596
- updatedAt: string;
597
- createdAt: string;
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';
598
664
  }
599
665
  /**
600
666
  * This collection represents different facilities.
@@ -653,8 +719,8 @@ export interface Facility {
653
719
  | null;
654
720
  faq?:
655
721
  | {
656
- question?: string | null;
657
- answer?: {
722
+ question: string;
723
+ answer: {
658
724
  root: {
659
725
  type: string;
660
726
  children: {
@@ -668,7 +734,7 @@ export interface Facility {
668
734
  version: number;
669
735
  };
670
736
  [k: string]: unknown;
671
- } | null;
737
+ };
672
738
  id?: string | null;
673
739
  }[]
674
740
  | null;
@@ -723,7 +789,26 @@ export interface Market {
723
789
  sort: 'facility_title' | 'state' | 'city' | 'starting_price';
724
790
  customOrGeo: 'geo' | 'custom';
725
791
  customFacilities?: (string | Facility)[] | null;
726
- layout?: (CallToActionBlock | ContentBlock | MediaBlock | ArchiveBlock | FormBlock)[] | null;
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;
727
812
  meta?: {
728
813
  title?: string | null;
729
814
  description?: string | null;
@@ -748,7 +833,7 @@ export interface Market {
748
833
  export interface ContentBlock {
749
834
  columns?:
750
835
  | {
751
- size?: ('oneThird' | 'half' | 'twoThirds' | 'full') | null;
836
+ size?: ('half' | 'oneThird' | 'twoThirds' | 'full') | null;
752
837
  richText?: {
753
838
  root: {
754
839
  type: string;
@@ -794,7 +879,22 @@ export interface ContentBlock {
794
879
  /**
795
880
  * Choose how the link should be rendered.
796
881
  */
797
- appearance?: ('default' | 'outline') | null;
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;
798
898
  };
799
899
  id?: string | null;
800
900
  }[]
@@ -805,21 +905,69 @@ export interface ContentBlock {
805
905
  }
806
906
  /**
807
907
  * This interface was referenced by `Config`'s JSON-Schema
808
- * via the `definition` "MediaBlock".
908
+ * via the `definition` "FaqBlock".
809
909
  */
810
- export interface MediaBlock {
811
- position?: ('default' | 'fullscreen') | null;
812
- media: string | Media;
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;
813
951
  id?: string | null;
814
952
  blockName?: string | null;
815
- blockType: 'mediaBlock';
953
+ blockType: 'faq';
816
954
  }
817
955
  /**
818
956
  * This interface was referenced by `Config`'s JSON-Schema
819
- * via the `definition` "ArchiveBlock".
957
+ * via the `definition` "FeaturedLocationsBlock".
820
958
  */
821
- export interface ArchiveBlock {
822
- introContent?: {
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?: {
823
971
  root: {
824
972
  type: string;
825
973
  children: {
@@ -834,19 +982,58 @@ export interface ArchiveBlock {
834
982
  };
835
983
  [k: string]: unknown;
836
984
  } | null;
837
- populateBy?: ('collection' | 'selection') | null;
838
- relationTo?: 'posts' | null;
839
- categories?: (string | Category)[] | null;
840
- limit?: number | null;
841
- selectedDocs?:
985
+ featuresGrid?:
842
986
  | {
843
- relationTo: 'posts';
844
- value: string | Post;
987
+ featureIcon: string;
988
+ featureName: string;
989
+ id?: string | null;
845
990
  }[]
846
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;
847
1034
  id?: string | null;
848
1035
  blockName?: string | null;
849
- blockType: 'archive';
1036
+ blockType: 'features-grid';
850
1037
  }
851
1038
  /**
852
1039
  * This interface was referenced by `Config`'s JSON-Schema
@@ -1072,9 +1259,34 @@ export interface Form {
1072
1259
  }
1073
1260
  /**
1074
1261
  * This interface was referenced by `Config`'s JSON-Schema
1075
- * via the `definition` "HomeTestimonialBlock".
1262
+ * via the `definition` "HomeHero".
1076
1263
  */
1077
- export interface HomeTestimonialBlock {
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".
1288
+ */
1289
+ export interface SingleTestimonialBlock {
1078
1290
  heading?: string | null;
1079
1291
  testimonialText?: string | null;
1080
1292
  author?: string | null;
@@ -1084,7 +1296,18 @@ export interface HomeTestimonialBlock {
1084
1296
  bottomImage?: (string | null) | Media;
1085
1297
  id?: string | null;
1086
1298
  blockName?: string | null;
1087
- blockType: 'homeTestimonial';
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';
1088
1311
  }
1089
1312
  /**
1090
1313
  * This interface was referenced by `Config`'s JSON-Schema
@@ -1105,95 +1328,23 @@ export interface RentalStepsBlock {
1105
1328
  }
1106
1329
  /**
1107
1330
  * This interface was referenced by `Config`'s JSON-Schema
1108
- * via the `definition` "StoragResourcesBlock".
1331
+ * via the `definition` "SearchCalloutBlock".
1109
1332
  */
1110
- export interface StoragResourcesBlock {
1111
- heading?: string | null;
1112
- description?: {
1113
- root: {
1114
- type: string;
1115
- children: {
1116
- type: string;
1117
- version: number;
1118
- [k: string]: unknown;
1119
- }[];
1120
- direction: ('ltr' | 'rtl') | null;
1121
- format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1122
- indent: number;
1123
- version: number;
1124
- };
1125
- [k: string]: unknown;
1126
- } | null;
1127
- buttonLink?: {
1128
- type?: ('reference' | 'custom') | null;
1129
- newTab?: boolean | null;
1130
- reference?:
1131
- | ({
1132
- relationTo: 'pages';
1133
- value: string | Page;
1134
- } | null)
1135
- | ({
1136
- relationTo: 'posts';
1137
- value: string | Post;
1138
- } | null)
1139
- | ({
1140
- relationTo: 'facilities';
1141
- value: string | Facility;
1142
- } | null)
1143
- | ({
1144
- relationTo: 'markets';
1145
- value: string | Market;
1146
- } | null)
1147
- | ({
1148
- relationTo: 'categories';
1149
- value: string | Category;
1150
- } | null);
1151
- url?: string | null;
1152
- label?: string | null;
1153
- };
1154
- storageResources?:
1155
- | {
1156
- resourceIcon?: string | null;
1157
- resourceTitle?: string | null;
1158
- resourceLink: {
1159
- type?: ('reference' | 'custom') | null;
1160
- newTab?: boolean | null;
1161
- reference?:
1162
- | ({
1163
- relationTo: 'pages';
1164
- value: string | Page;
1165
- } | null)
1166
- | ({
1167
- relationTo: 'posts';
1168
- value: string | Post;
1169
- } | null)
1170
- | ({
1171
- relationTo: 'facilities';
1172
- value: string | Facility;
1173
- } | null)
1174
- | ({
1175
- relationTo: 'markets';
1176
- value: string | Market;
1177
- } | null)
1178
- | ({
1179
- relationTo: 'categories';
1180
- value: string | Category;
1181
- } | null);
1182
- url?: string | null;
1183
- label: string;
1184
- };
1185
- id?: string | null;
1186
- }[]
1187
- | 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;
1188
1339
  id?: string | null;
1189
1340
  blockName?: string | null;
1190
- blockType: 'storage-resources';
1341
+ blockType: 'search-callout';
1191
1342
  }
1192
1343
  /**
1193
1344
  * This interface was referenced by `Config`'s JSON-Schema
1194
- * via the `definition` "FeaturesGridBlock".
1345
+ * via the `definition` "StoragResourcesBlock".
1195
1346
  */
1196
- export interface FeaturesGridBlock {
1347
+ export interface StoragResourcesBlock {
1197
1348
  heading?: string | null;
1198
1349
  description?: {
1199
1350
  root: {
@@ -1210,13 +1361,6 @@ export interface FeaturesGridBlock {
1210
1361
  };
1211
1362
  [k: string]: unknown;
1212
1363
  } | null;
1213
- featuresGrid?:
1214
- | {
1215
- featureIcon?: string | null;
1216
- featureName?: string | null;
1217
- id?: string | null;
1218
- }[]
1219
- | null;
1220
1364
  buttonLink?: {
1221
1365
  type?: ('reference' | 'custom') | null;
1222
1366
  newTab?: boolean | null;
@@ -1230,63 +1374,67 @@ export interface FeaturesGridBlock {
1230
1374
  value: string | Post;
1231
1375
  } | null)
1232
1376
  | ({
1233
- relationTo: 'facilities';
1234
- value: string | Facility;
1235
- } | null)
1236
- | ({
1237
- relationTo: 'markets';
1238
- value: string | Market;
1239
- } | null)
1240
- | ({
1241
- relationTo: 'categories';
1242
- value: string | Category;
1243
- } | null);
1244
- url?: string | null;
1245
- label?: string | null;
1246
- };
1247
- disclaimer?: {
1248
- root: {
1249
- type: string;
1250
- children: {
1251
- type: string;
1252
- version: number;
1253
- [k: string]: unknown;
1254
- }[];
1255
- direction: ('ltr' | 'rtl') | null;
1256
- format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1257
- indent: number;
1258
- version: number;
1259
- };
1260
- [k: string]: unknown;
1261
- } | null;
1262
- id?: string | null;
1263
- blockName?: string | null;
1264
- blockType: 'features-grid';
1265
- }
1266
- /**
1267
- * This interface was referenced by `Config`'s JSON-Schema
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;
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;
1278
1425
  id?: string | null;
1279
1426
  blockName?: string | null;
1280
- blockType: 'homeHero';
1427
+ blockType: 'storage-resources';
1281
1428
  }
1282
1429
  /**
1283
1430
  * This interface was referenced by `Config`'s JSON-Schema
1284
- * via the `definition` "HorizontalRuleBlock".
1431
+ * via the `definition` "GalleryBlock".
1285
1432
  */
1286
- export interface HorizontalRuleBlock {
1433
+ export interface GalleryBlock {
1434
+ media: (string | Media)[];
1287
1435
  id?: string | null;
1288
1436
  blockName?: string | null;
1289
- blockType: 'horizontal-rule';
1437
+ blockType: 'galleryBlock';
1290
1438
  }
1291
1439
  /**
1292
1440
  * This interface was referenced by `Config`'s JSON-Schema
@@ -1296,7 +1444,14 @@ export interface Menu {
1296
1444
  id: string;
1297
1445
  tenant?: (string | null) | Tenant;
1298
1446
  title: string;
1299
- location: 'main_menu' | 'footer_menu_1' | 'footer_menu_2' | 'footer_menu_3' | 'footer_menu_4' | 'none';
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';
1300
1455
  columns?: number | null;
1301
1456
  navItems?: NavItem;
1302
1457
  createdBy?: string | null;
@@ -1475,17 +1630,22 @@ export interface PagesSelect<T extends boolean = true> {
1475
1630
  layout?:
1476
1631
  | T
1477
1632
  | {
1633
+ archive?: T | ArchiveBlockSelect<T>;
1634
+ breadcrumbs?: T | BreadcrumbsBlockSelect<T>;
1478
1635
  cta?: T | CallToActionBlockSelect<T>;
1479
1636
  content?: T | ContentBlockSelect<T>;
1480
- mediaBlock?: T | MediaBlockSelect<T>;
1481
- archive?: T | ArchiveBlockSelect<T>;
1482
- formBlock?: T | FormBlockSelect<T>;
1483
- homeTestimonial?: T | HomeTestimonialBlockSelect<T>;
1484
- 'rental-steps'?: T | RentalStepsBlockSelect<T>;
1485
- 'storage-resources'?: T | StoragResourcesBlockSelect<T>;
1637
+ faq?: T | FaqBlockSelect<T>;
1638
+ 'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
1486
1639
  'features-grid'?: T | FeaturesGridBlockSelect<T>;
1640
+ formBlock?: T | FormBlockSelect<T>;
1487
1641
  homeHero?: T | HomeHeroSelect<T>;
1488
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>;
1489
1649
  };
1490
1650
  meta?:
1491
1651
  | T
@@ -1504,6 +1664,28 @@ export interface PagesSelect<T extends boolean = true> {
1504
1664
  createdAt?: T;
1505
1665
  _status?: T;
1506
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
+ }
1507
1689
  /**
1508
1690
  * This interface was referenced by `Config`'s JSON-Schema
1509
1691
  * via the `definition` "CallToActionBlock_select".
@@ -1556,25 +1738,53 @@ export interface ContentBlockSelect<T extends boolean = true> {
1556
1738
  }
1557
1739
  /**
1558
1740
  * This interface was referenced by `Config`'s JSON-Schema
1559
- * via the `definition` "MediaBlock_select".
1741
+ * via the `definition` "FaqBlock_select".
1560
1742
  */
1561
- export interface MediaBlockSelect<T extends boolean = true> {
1562
- position?: T;
1563
- media?: T;
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
+ };
1564
1753
  id?: T;
1565
1754
  blockName?: T;
1566
1755
  }
1567
1756
  /**
1568
1757
  * This interface was referenced by `Config`'s JSON-Schema
1569
- * via the `definition` "ArchiveBlock_select".
1758
+ * via the `definition` "FeaturedLocationsBlock_select".
1570
1759
  */
1571
- export interface ArchiveBlockSelect<T extends boolean = true> {
1572
- introContent?: T;
1573
- populateBy?: T;
1574
- relationTo?: T;
1575
- categories?: T;
1576
- limit?: T;
1577
- selectedDocs?: T;
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;
1578
1788
  id?: T;
1579
1789
  blockName?: T;
1580
1790
  }
@@ -1591,9 +1801,32 @@ export interface FormBlockSelect<T extends boolean = true> {
1591
1801
  }
1592
1802
  /**
1593
1803
  * This interface was referenced by `Config`'s JSON-Schema
1594
- * via the `definition` "HomeTestimonialBlock_select".
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".
1595
1828
  */
1596
- export interface HomeTestimonialBlockSelect<T extends boolean = true> {
1829
+ export interface SingleTestimonialBlockSelect<T extends boolean = true> {
1597
1830
  heading?: T;
1598
1831
  testimonialText?: T;
1599
1832
  author?: T;
@@ -1604,6 +1837,16 @@ export interface HomeTestimonialBlockSelect<T extends boolean = true> {
1604
1837
  id?: T;
1605
1838
  blockName?: T;
1606
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
+ }
1607
1850
  /**
1608
1851
  * This interface was referenced by `Config`'s JSON-Schema
1609
1852
  * via the `definition` "RentalStepsBlock_select".
@@ -1620,6 +1863,16 @@ export interface RentalStepsBlockSelect<T extends boolean = true> {
1620
1863
  id?: T;
1621
1864
  blockName?: T;
1622
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
+ }
1623
1876
  /**
1624
1877
  * This interface was referenced by `Config`'s JSON-Schema
1625
1878
  * via the `definition` "StoragResourcesBlock_select".
@@ -1657,51 +1910,10 @@ export interface StoragResourcesBlockSelect<T extends boolean = true> {
1657
1910
  }
1658
1911
  /**
1659
1912
  * This interface was referenced by `Config`'s JSON-Schema
1660
- * via the `definition` "FeaturesGridBlock_select".
1661
- */
1662
- export interface FeaturesGridBlockSelect<T extends boolean = true> {
1663
- heading?: T;
1664
- description?: T;
1665
- featuresGrid?:
1666
- | T
1667
- | {
1668
- featureIcon?: T;
1669
- featureName?: T;
1670
- id?: T;
1671
- };
1672
- buttonLink?:
1673
- | T
1674
- | {
1675
- type?: T;
1676
- newTab?: T;
1677
- reference?: T;
1678
- url?: T;
1679
- label?: T;
1680
- };
1681
- disclaimer?: T;
1682
- id?: T;
1683
- blockName?: T;
1684
- }
1685
- /**
1686
- * This interface was referenced by `Config`'s JSON-Schema
1687
- * via the `definition` "HomeHero_select".
1688
- */
1689
- export interface HomeHeroSelect<T extends boolean = true> {
1690
- title?: T;
1691
- subtitle?: T;
1692
- backgroundImage?: T;
1693
- layoutMode?: T;
1694
- fullImageContentAlign?: T;
1695
- halfImageContentSide?: T;
1696
- searchLayout?: T;
1697
- id?: T;
1698
- blockName?: T;
1699
- }
1700
- /**
1701
- * This interface was referenced by `Config`'s JSON-Schema
1702
- * via the `definition` "HorizontalRuleBlock_select".
1913
+ * via the `definition` "GalleryBlock_select".
1703
1914
  */
1704
- export interface HorizontalRuleBlockSelect<T extends boolean = true> {
1915
+ export interface GalleryBlockSelect<T extends boolean = true> {
1916
+ media?: T;
1705
1917
  id?: T;
1706
1918
  blockName?: T;
1707
1919
  }
@@ -2016,11 +2228,22 @@ export interface MarketsSelect<T extends boolean = true> {
2016
2228
  layout?:
2017
2229
  | T
2018
2230
  | {
2231
+ archive?: T | ArchiveBlockSelect<T>;
2232
+ breadcrumbs?: T | BreadcrumbsBlockSelect<T>;
2019
2233
  cta?: T | CallToActionBlockSelect<T>;
2020
2234
  content?: T | ContentBlockSelect<T>;
2021
- mediaBlock?: T | MediaBlockSelect<T>;
2022
- archive?: T | ArchiveBlockSelect<T>;
2235
+ faq?: T | FaqBlockSelect<T>;
2236
+ 'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
2237
+ 'features-grid'?: T | FeaturesGridBlockSelect<T>;
2023
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>;
2024
2247
  };
2025
2248
  meta?:
2026
2249
  | T
@@ -2296,6 +2519,61 @@ export interface BannerBlock {
2296
2519
  blockName?: string | null;
2297
2520
  blockType: 'banner';
2298
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
+ }
2299
2577
  /**
2300
2578
  * This interface was referenced by `Config`'s JSON-Schema
2301
2579
  * via the `definition` "CodeBlock".