@glidevvr/storage-payload-types-pkg 1.0.282 → 1.0.284

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 +982 -147
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.282",
3
+ "version": "1.0.284",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -17,7 +17,7 @@ export type Faqs =
17
17
  root: {
18
18
  type: string;
19
19
  children: {
20
- type: string;
20
+ type: any;
21
21
  version: number;
22
22
  [k: string]: unknown;
23
23
  }[];
@@ -181,6 +181,7 @@ export interface Config {
181
181
  builds: Build;
182
182
  'deletion-logs': DeletionLog;
183
183
  'batch-statuses': BatchStatus;
184
+ 'payload-kv': PayloadKv;
184
185
  'payload-jobs': PayloadJob;
185
186
  'payload-locked-documents': PayloadLockedDocument;
186
187
  'payload-preferences': PayloadPreference;
@@ -209,6 +210,7 @@ export interface Config {
209
210
  builds: BuildsSelect<false> | BuildsSelect<true>;
210
211
  'deletion-logs': DeletionLogsSelect<false> | DeletionLogsSelect<true>;
211
212
  'batch-statuses': BatchStatusesSelect<false> | BatchStatusesSelect<true>;
213
+ 'payload-kv': PayloadKvSelect<false> | PayloadKvSelect<true>;
212
214
  'payload-jobs': PayloadJobsSelect<false> | PayloadJobsSelect<true>;
213
215
  'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>;
214
216
  'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>;
@@ -217,12 +219,14 @@ export interface Config {
217
219
  db: {
218
220
  defaultIDType: string;
219
221
  };
222
+ fallbackLocale: null;
220
223
  globals: {};
221
224
  globalsSelect: {};
222
225
  locale: null;
223
- user: User & {
224
- collection: 'users';
226
+ widgets: {
227
+ collections: CollectionsWidget;
225
228
  };
229
+ user: User;
226
230
  jobs: {
227
231
  tasks: {
228
232
  schedulePublish: TaskSchedulePublish;
@@ -261,26 +265,746 @@ export interface Page {
261
265
  tenant?: (string | null) | Tenant;
262
266
  title: string;
263
267
  blocks: (
264
- | ArchiveBlock
265
- | CallToActionBlock
266
- | ContentBlock
267
- | FacilityBannerBlock
268
- | FaqBlock
269
- | FeaturedLocationsBlock
270
- | FeaturesGridBlock
271
- | FormBlock
272
- | GalleryBlock
273
- | HomeHero
274
- | HorizontalRuleBlock
275
- | SingleTestimonialBlock
276
- | MediaBlock
277
- | RentalStepsBlock
278
- | SearchCalloutBlock
279
- | StorageResourcesBlock
280
- | SizeGuideBlock
281
- | SizeGuidePreviewBlock
282
- | StorageDefenderBlock
283
- | MapLocationsAccordion
268
+ | {
269
+ introContent?: {
270
+ root: {
271
+ type: string;
272
+ children: {
273
+ type: any;
274
+ version: number;
275
+ [k: string]: unknown;
276
+ }[];
277
+ direction: ('ltr' | 'rtl') | null;
278
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
279
+ indent: number;
280
+ version: number;
281
+ };
282
+ [k: string]: unknown;
283
+ } | null;
284
+ populateBy: 'collection' | 'selection';
285
+ relationTo?: 'posts' | null;
286
+ /**
287
+ * If no categories are selected, the 4 most recent posts will be shown.
288
+ */
289
+ categories?: (string | Category)[] | null;
290
+ /**
291
+ * Select the number of published posts to display (limit of 4 max.).
292
+ */
293
+ limit?: ('1' | '2' | '3' | '4') | null;
294
+ /**
295
+ * Select up to 4 posts
296
+ */
297
+ selectedDocs?:
298
+ | {
299
+ relationTo: 'posts';
300
+ value: string | Post;
301
+ }[]
302
+ | null;
303
+ /**
304
+ * The text for the button that links to the blog index page.
305
+ */
306
+ buttonText?: string | null;
307
+ id?: string | null;
308
+ blockName?: string | null;
309
+ blockType: 'archive';
310
+ }
311
+ | {
312
+ richText?: {
313
+ root: {
314
+ type: string;
315
+ children: {
316
+ type: any;
317
+ version: number;
318
+ [k: string]: unknown;
319
+ }[];
320
+ direction: ('ltr' | 'rtl') | null;
321
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
322
+ indent: number;
323
+ version: number;
324
+ };
325
+ [k: string]: unknown;
326
+ } | null;
327
+ links?:
328
+ | {
329
+ link: {
330
+ type?: ('reference' | 'custom') | null;
331
+ newTab?: boolean | null;
332
+ reference?:
333
+ | ({
334
+ relationTo: 'pages';
335
+ value: string | Page;
336
+ } | null)
337
+ | ({
338
+ relationTo: 'posts';
339
+ value: string | Post;
340
+ } | null)
341
+ | ({
342
+ relationTo: 'facilities';
343
+ value: string | Facility;
344
+ } | null)
345
+ | ({
346
+ relationTo: 'markets';
347
+ value: string | Market;
348
+ } | null)
349
+ | ({
350
+ relationTo: 'categories';
351
+ value: string | Category;
352
+ } | null);
353
+ url?: string | null;
354
+ label: string;
355
+ /**
356
+ * Choose how the link should be rendered.
357
+ */
358
+ appearance?:
359
+ | (
360
+ | 'default'
361
+ | 'primary'
362
+ | 'primary-light'
363
+ | 'outline-primary'
364
+ | 'secondary'
365
+ | 'secondary-light'
366
+ | 'outline-secondary'
367
+ | 'destructive'
368
+ | 'link'
369
+ | 'white'
370
+ | 'ghost'
371
+ | 'gray'
372
+ )
373
+ | null;
374
+ };
375
+ id?: string | null;
376
+ }[]
377
+ | null;
378
+ id?: string | null;
379
+ blockName?: string | null;
380
+ blockType: 'cta';
381
+ }
382
+ | {
383
+ columns?:
384
+ | {
385
+ size?: ('half' | 'oneThird' | 'twoThirds' | 'full') | null;
386
+ richText?: {
387
+ root: {
388
+ type: string;
389
+ children: {
390
+ type: any;
391
+ version: number;
392
+ [k: string]: unknown;
393
+ }[];
394
+ direction: ('ltr' | 'rtl') | null;
395
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
396
+ indent: number;
397
+ version: number;
398
+ };
399
+ [k: string]: unknown;
400
+ } | null;
401
+ enableLink?: boolean | null;
402
+ link?: {
403
+ type?: ('reference' | 'custom') | null;
404
+ newTab?: boolean | null;
405
+ reference?:
406
+ | ({
407
+ relationTo: 'pages';
408
+ value: string | Page;
409
+ } | null)
410
+ | ({
411
+ relationTo: 'posts';
412
+ value: string | Post;
413
+ } | null)
414
+ | ({
415
+ relationTo: 'facilities';
416
+ value: string | Facility;
417
+ } | null)
418
+ | ({
419
+ relationTo: 'markets';
420
+ value: string | Market;
421
+ } | null)
422
+ | ({
423
+ relationTo: 'categories';
424
+ value: string | Category;
425
+ } | null);
426
+ url?: string | null;
427
+ label: string;
428
+ /**
429
+ * Choose how the link should be rendered.
430
+ */
431
+ appearance?:
432
+ | (
433
+ | 'default'
434
+ | 'primary'
435
+ | 'primary-light'
436
+ | 'outline-primary'
437
+ | 'secondary'
438
+ | 'secondary-light'
439
+ | 'outline-secondary'
440
+ | 'destructive'
441
+ | 'link'
442
+ | 'white'
443
+ | 'ghost'
444
+ | 'gray'
445
+ )
446
+ | null;
447
+ };
448
+ id?: string | null;
449
+ }[]
450
+ | null;
451
+ id?: string | null;
452
+ blockName?: string | null;
453
+ blockType: 'content';
454
+ }
455
+ | {
456
+ /**
457
+ * Select the background color for the banner
458
+ */
459
+ backgroundColor?:
460
+ | ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
461
+ | null;
462
+ content?: {
463
+ root: {
464
+ type: string;
465
+ children: {
466
+ type: any;
467
+ version: number;
468
+ [k: string]: unknown;
469
+ }[];
470
+ direction: ('ltr' | 'rtl') | null;
471
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
472
+ indent: number;
473
+ version: number;
474
+ };
475
+ [k: string]: unknown;
476
+ } | null;
477
+ id?: string | null;
478
+ blockName?: string | null;
479
+ blockType: 'facilityBanner';
480
+ }
481
+ | {
482
+ /**
483
+ * Only one block per page should have the include FAQ schema option checked.
484
+ */
485
+ includeFaqSchema?: boolean | null;
486
+ faq?: Faqs;
487
+ id?: string | null;
488
+ blockName?: string | null;
489
+ blockType: 'faq';
490
+ }
491
+ | {
492
+ introContent?: {
493
+ root: {
494
+ type: string;
495
+ children: {
496
+ type: any;
497
+ version: number;
498
+ [k: string]: unknown;
499
+ }[];
500
+ direction: ('ltr' | 'rtl') | null;
501
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
502
+ indent: number;
503
+ version: number;
504
+ };
505
+ [k: string]: unknown;
506
+ } | null;
507
+ /**
508
+ * Select up to 10 locations to feature.
509
+ */
510
+ selectedLocations: (string | Facility)[];
511
+ id?: string | null;
512
+ blockName?: string | null;
513
+ blockType: 'featuredLocations';
514
+ }
515
+ | {
516
+ heading?: string | null;
517
+ description?: {
518
+ root: {
519
+ type: string;
520
+ children: {
521
+ type: any;
522
+ version: number;
523
+ [k: string]: unknown;
524
+ }[];
525
+ direction: ('ltr' | 'rtl') | null;
526
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
527
+ indent: number;
528
+ version: number;
529
+ };
530
+ [k: string]: unknown;
531
+ } | null;
532
+ featuresGrid?:
533
+ | {
534
+ featureIcon: string;
535
+ featureName: string;
536
+ featureLink?: {
537
+ type?: ('reference' | 'custom') | null;
538
+ newTab?: boolean | null;
539
+ reference?:
540
+ | ({
541
+ relationTo: 'pages';
542
+ value: string | Page;
543
+ } | null)
544
+ | ({
545
+ relationTo: 'posts';
546
+ value: string | Post;
547
+ } | null)
548
+ | ({
549
+ relationTo: 'facilities';
550
+ value: string | Facility;
551
+ } | null)
552
+ | ({
553
+ relationTo: 'markets';
554
+ value: string | Market;
555
+ } | null)
556
+ | ({
557
+ relationTo: 'categories';
558
+ value: string | Category;
559
+ } | null);
560
+ url?: string | null;
561
+ };
562
+ id?: string | null;
563
+ }[]
564
+ | null;
565
+ buttonLink?: {
566
+ type?: ('reference' | 'custom') | null;
567
+ newTab?: boolean | null;
568
+ reference?:
569
+ | ({
570
+ relationTo: 'pages';
571
+ value: string | Page;
572
+ } | null)
573
+ | ({
574
+ relationTo: 'posts';
575
+ value: string | Post;
576
+ } | null)
577
+ | ({
578
+ relationTo: 'facilities';
579
+ value: string | Facility;
580
+ } | null)
581
+ | ({
582
+ relationTo: 'markets';
583
+ value: string | Market;
584
+ } | null)
585
+ | ({
586
+ relationTo: 'categories';
587
+ value: string | Category;
588
+ } | null);
589
+ url?: string | null;
590
+ label?: string | null;
591
+ };
592
+ disclaimer?: {
593
+ root: {
594
+ type: string;
595
+ children: {
596
+ type: any;
597
+ version: number;
598
+ [k: string]: unknown;
599
+ }[];
600
+ direction: ('ltr' | 'rtl') | null;
601
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
602
+ indent: number;
603
+ version: number;
604
+ };
605
+ [k: string]: unknown;
606
+ } | null;
607
+ id?: string | null;
608
+ blockName?: string | null;
609
+ blockType: 'featuresGrid';
610
+ }
611
+ | {
612
+ form: string | Form;
613
+ enableIntro?: boolean | null;
614
+ introContent?: {
615
+ root: {
616
+ type: string;
617
+ children: {
618
+ type: any;
619
+ version: number;
620
+ [k: string]: unknown;
621
+ }[];
622
+ direction: ('ltr' | 'rtl') | null;
623
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
624
+ indent: number;
625
+ version: number;
626
+ };
627
+ [k: string]: unknown;
628
+ } | null;
629
+ id?: string | null;
630
+ blockName?: string | null;
631
+ blockType: 'formBlock';
632
+ }
633
+ | {
634
+ /**
635
+ * Add a minimum of 2 and up to 4 images to the gallery. If you only want one, use the Media Block.
636
+ */
637
+ media: (string | Media)[];
638
+ id?: string | null;
639
+ blockName?: string | null;
640
+ blockType: 'galleryBlock';
641
+ }
642
+ | {
643
+ title?: string | null;
644
+ subtitle?: string | null;
645
+ /**
646
+ * Images should have a horizontal aspect ratio. Full size images should be at least 1920x960 pixels. Half size images should be at least 1280x731 pixels.
647
+ */
648
+ backgroundImage?: (string | null) | Media;
649
+ /**
650
+ * Optional video background. Only available for full layout. Video will be hidden on mobile devices. The background image will be used as a fallback while the video loads.
651
+ */
652
+ backgroundVideo?: (string | null) | Media;
653
+ layoutMode?: ('half' | 'full') | null;
654
+ fullImageContentAlign?: ('center' | 'right' | 'left') | null;
655
+ halfImageContentSide?: ('right' | 'left') | null;
656
+ searchLayout?: 'default' | null;
657
+ id?: string | null;
658
+ blockName?: string | null;
659
+ blockType: 'homeHero';
660
+ }
661
+ | {
662
+ id?: string | null;
663
+ blockName?: string | null;
664
+ blockType: 'horizontalRule';
665
+ }
666
+ | {
667
+ heading?: string | null;
668
+ testimonialText?: string | null;
669
+ author?: string | null;
670
+ rating: number;
671
+ /**
672
+ * For best results, choose an image with a square aspect ratio that's at least 100x100 pixels and has a centered subject.
673
+ */
674
+ topImage?: (string | null) | Media;
675
+ /**
676
+ * For best results, choose an image with a square aspect ratio that's at least 200x200 pixels and has a centered subject.
677
+ */
678
+ middleImage?: (string | null) | Media;
679
+ /**
680
+ * For best results, choose an image with a square aspect ratio that's at least 100x100 pixels and has a centered subject.
681
+ */
682
+ bottomImage?: (string | null) | Media;
683
+ buttonLink?: {
684
+ type?: ('reference' | 'custom') | null;
685
+ newTab?: boolean | null;
686
+ reference?:
687
+ | ({
688
+ relationTo: 'pages';
689
+ value: string | Page;
690
+ } | null)
691
+ | ({
692
+ relationTo: 'posts';
693
+ value: string | Post;
694
+ } | null)
695
+ | ({
696
+ relationTo: 'facilities';
697
+ value: string | Facility;
698
+ } | null)
699
+ | ({
700
+ relationTo: 'markets';
701
+ value: string | Market;
702
+ } | null)
703
+ | ({
704
+ relationTo: 'categories';
705
+ value: string | Category;
706
+ } | null);
707
+ url?: string | null;
708
+ label?: string | null;
709
+ };
710
+ id?: string | null;
711
+ blockName?: string | null;
712
+ blockType: 'singleTestimonial';
713
+ }
714
+ | {
715
+ mediaType?: ('image' | 'video') | null;
716
+ imageAlignment?: ('left' | 'center' | 'right') | null;
717
+ /**
718
+ * The caption is set in the media upload collection document.
719
+ */
720
+ showCaption?: boolean | null;
721
+ captionAlignment?: ('left' | 'center' | 'right') | null;
722
+ /**
723
+ * Images should have a horizontal aspect ratio and be at least 800x450 pixels.
724
+ */
725
+ image?: (string | null) | Media;
726
+ /**
727
+ * Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
728
+ */
729
+ video?: string | null;
730
+ id?: string | null;
731
+ blockName?: string | null;
732
+ blockType: 'mediaBlock';
733
+ }
734
+ | {
735
+ heading?: string | null;
736
+ steps?:
737
+ | {
738
+ icon?: string | null;
739
+ stepText?: string | null;
740
+ id?: string | null;
741
+ }[]
742
+ | null;
743
+ id?: string | null;
744
+ blockName?: string | null;
745
+ blockType: 'rentalSteps';
746
+ }
747
+ | {
748
+ text: string;
749
+ /**
750
+ * The button will direct the user to the All Locations page selected for the organization.
751
+ */
752
+ buttonText: string;
753
+ id?: string | null;
754
+ blockName?: string | null;
755
+ blockType: 'searchCallout';
756
+ }
757
+ | {
758
+ heading?: string | null;
759
+ description?: {
760
+ root: {
761
+ type: string;
762
+ children: {
763
+ type: any;
764
+ version: number;
765
+ [k: string]: unknown;
766
+ }[];
767
+ direction: ('ltr' | 'rtl') | null;
768
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
769
+ indent: number;
770
+ version: number;
771
+ };
772
+ [k: string]: unknown;
773
+ } | null;
774
+ buttonLink?: {
775
+ type?: ('reference' | 'custom') | null;
776
+ newTab?: boolean | null;
777
+ reference?:
778
+ | ({
779
+ relationTo: 'pages';
780
+ value: string | Page;
781
+ } | null)
782
+ | ({
783
+ relationTo: 'posts';
784
+ value: string | Post;
785
+ } | null)
786
+ | ({
787
+ relationTo: 'facilities';
788
+ value: string | Facility;
789
+ } | null)
790
+ | ({
791
+ relationTo: 'markets';
792
+ value: string | Market;
793
+ } | null)
794
+ | ({
795
+ relationTo: 'categories';
796
+ value: string | Category;
797
+ } | null);
798
+ url?: string | null;
799
+ label?: string | null;
800
+ };
801
+ storageResources?:
802
+ | {
803
+ resourceIcon?: string | null;
804
+ resourceTitle?: string | null;
805
+ resourceLink: {
806
+ type?: ('reference' | 'custom') | null;
807
+ newTab?: boolean | null;
808
+ reference?:
809
+ | ({
810
+ relationTo: 'pages';
811
+ value: string | Page;
812
+ } | null)
813
+ | ({
814
+ relationTo: 'posts';
815
+ value: string | Post;
816
+ } | null)
817
+ | ({
818
+ relationTo: 'facilities';
819
+ value: string | Facility;
820
+ } | null)
821
+ | ({
822
+ relationTo: 'markets';
823
+ value: string | Market;
824
+ } | null)
825
+ | ({
826
+ relationTo: 'categories';
827
+ value: string | Category;
828
+ } | null);
829
+ url?: string | null;
830
+ label: string;
831
+ };
832
+ id?: string | null;
833
+ }[]
834
+ | null;
835
+ id?: string | null;
836
+ blockName?: string | null;
837
+ blockType: 'storageResources';
838
+ }
839
+ | {
840
+ id?: string | null;
841
+ blockName?: string | null;
842
+ blockType: 'sizeGuide';
843
+ }
844
+ | {
845
+ /**
846
+ * Optional heading for the size guide preview
847
+ */
848
+ heading?: string | null;
849
+ /**
850
+ * Optional subheading for the size guide preview
851
+ */
852
+ subheading?: string | null;
853
+ /**
854
+ * The text for the button that links to the size guide.
855
+ */
856
+ buttonText?: string | null;
857
+ id?: string | null;
858
+ blockName?: string | null;
859
+ blockType: 'sizeGuidePreview';
860
+ }
861
+ | {
862
+ heroSection?: {
863
+ mainTitle?: string | null;
864
+ heroTagline?: string | null;
865
+ /**
866
+ * Images should have a horizontal aspect ratio and be at least 1920x960 pixels.
867
+ */
868
+ heroBackgroundImage?: (string | null) | Media;
869
+ };
870
+ introSection?: {
871
+ sectionTitle?: string | null;
872
+ content?: {
873
+ root: {
874
+ type: string;
875
+ children: {
876
+ type: any;
877
+ version: number;
878
+ [k: string]: unknown;
879
+ }[];
880
+ direction: ('ltr' | 'rtl') | null;
881
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
882
+ indent: number;
883
+ version: number;
884
+ };
885
+ [k: string]: unknown;
886
+ } | null;
887
+ primaryCTA?: {
888
+ type?: ('reference' | 'custom') | null;
889
+ newTab?: boolean | null;
890
+ reference?:
891
+ | ({
892
+ relationTo: 'pages';
893
+ value: string | Page;
894
+ } | null)
895
+ | ({
896
+ relationTo: 'posts';
897
+ value: string | Post;
898
+ } | null)
899
+ | ({
900
+ relationTo: 'facilities';
901
+ value: string | Facility;
902
+ } | null)
903
+ | ({
904
+ relationTo: 'markets';
905
+ value: string | Market;
906
+ } | null)
907
+ | ({
908
+ relationTo: 'categories';
909
+ value: string | Category;
910
+ } | null);
911
+ url?: string | null;
912
+ label?: string | null;
913
+ };
914
+ disclaimer?: string | null;
915
+ /**
916
+ * Images should have a vertical aspect ratio and be at least 350x499 pixels.
917
+ */
918
+ disclaimerImage?: (string | null) | Media;
919
+ };
920
+ featuresSection?: {
921
+ sectionTitle?: string | null;
922
+ features?:
923
+ | {
924
+ title: string;
925
+ description: string;
926
+ icon?: string | null;
927
+ id?: string | null;
928
+ }[]
929
+ | null;
930
+ };
931
+ benefitsSection?: {
932
+ sectionTitle?: string | null;
933
+ introText?: string | null;
934
+ benefits?:
935
+ | {
936
+ title: string;
937
+ description?: string | null;
938
+ /**
939
+ * Images should have a square aspect ratio and be at least 160x160 pixels.
940
+ */
941
+ image?: (string | null) | Media;
942
+ id?: string | null;
943
+ }[]
944
+ | null;
945
+ secondaryCTA?: {
946
+ type?: ('reference' | 'custom') | null;
947
+ newTab?: boolean | null;
948
+ reference?:
949
+ | ({
950
+ relationTo: 'pages';
951
+ value: string | Page;
952
+ } | null)
953
+ | ({
954
+ relationTo: 'posts';
955
+ value: string | Post;
956
+ } | null)
957
+ | ({
958
+ relationTo: 'facilities';
959
+ value: string | Facility;
960
+ } | null)
961
+ | ({
962
+ relationTo: 'markets';
963
+ value: string | Market;
964
+ } | null)
965
+ | ({
966
+ relationTo: 'categories';
967
+ value: string | Category;
968
+ } | null);
969
+ url?: string | null;
970
+ label?: string | null;
971
+ };
972
+ };
973
+ id?: string | null;
974
+ blockName?: string | null;
975
+ blockType: 'storageDefender';
976
+ }
977
+ | {
978
+ /**
979
+ * Use this space to add a custom heading and content to the block.
980
+ */
981
+ content?: {
982
+ root: {
983
+ type: string;
984
+ children: {
985
+ type: any;
986
+ version: number;
987
+ [k: string]: unknown;
988
+ }[];
989
+ direction: ('ltr' | 'rtl') | null;
990
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
991
+ indent: number;
992
+ version: number;
993
+ };
994
+ [k: string]: unknown;
995
+ } | null;
996
+ /**
997
+ * Control when the states accordion is visible. Recommended: "Hide on Desktop Only" when you have fewer than 5 states, as the accordion displays best with 5 or more states on desktop.
998
+ */
999
+ accordionVisibility?: ('always' | 'hide-desktop' | 'never') | null;
1000
+ /**
1001
+ * Maximum 30 characters
1002
+ */
1003
+ accordionHeading?: string | null;
1004
+ id?: string | null;
1005
+ blockName?: string | null;
1006
+ blockType: 'mapLocationsAccordion';
1007
+ }
284
1008
  )[];
285
1009
  meta?: {
286
1010
  title?: string | null;
@@ -584,6 +1308,7 @@ export interface User {
584
1308
  }[]
585
1309
  | null;
586
1310
  password?: string | null;
1311
+ collection: 'users';
587
1312
  }
588
1313
  /**
589
1314
  * This interface was referenced by `Config`'s JSON-Schema
@@ -616,20 +1341,72 @@ export interface Market {
616
1341
  | CallToActionBlock
617
1342
  | ContentBlock
618
1343
  | FacilityBannerBlock
619
- | FaqBlock
1344
+ | {
1345
+ /**
1346
+ * Only one block per page should have the include FAQ schema option checked.
1347
+ */
1348
+ includeFaqSchema?: boolean | null;
1349
+ faq?: Faqs;
1350
+ id?: string | null;
1351
+ blockName?: string | null;
1352
+ blockType: 'faq';
1353
+ }
620
1354
  | FeaturedLocationsBlock
621
1355
  | FeaturesGridBlock
622
1356
  | FormBlock
623
- | GalleryBlock
1357
+ | {
1358
+ /**
1359
+ * Add a minimum of 2 and up to 4 images to the gallery. If you only want one, use the Media Block.
1360
+ */
1361
+ media: (string | Media)[];
1362
+ id?: string | null;
1363
+ blockName?: string | null;
1364
+ blockType: 'galleryBlock';
1365
+ }
624
1366
  | HomeHero
625
1367
  | HorizontalRuleBlock
626
1368
  | SingleTestimonialBlock
627
- | MediaBlock
1369
+ | {
1370
+ mediaType?: ('image' | 'video') | null;
1371
+ imageAlignment?: ('left' | 'center' | 'right') | null;
1372
+ /**
1373
+ * The caption is set in the media upload collection document.
1374
+ */
1375
+ showCaption?: boolean | null;
1376
+ captionAlignment?: ('left' | 'center' | 'right') | null;
1377
+ /**
1378
+ * Images should have a horizontal aspect ratio and be at least 800x450 pixels.
1379
+ */
1380
+ image?: (string | null) | Media;
1381
+ /**
1382
+ * Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
1383
+ */
1384
+ video?: string | null;
1385
+ id?: string | null;
1386
+ blockName?: string | null;
1387
+ blockType: 'mediaBlock';
1388
+ }
628
1389
  | RentalStepsBlock
629
1390
  | SearchCalloutBlock
630
1391
  | StorageResourcesBlock
631
1392
  | SizeGuideBlock
632
- | SizeGuidePreviewBlock
1393
+ | {
1394
+ /**
1395
+ * Optional heading for the size guide preview
1396
+ */
1397
+ heading?: string | null;
1398
+ /**
1399
+ * Optional subheading for the size guide preview
1400
+ */
1401
+ subheading?: string | null;
1402
+ /**
1403
+ * The text for the button that links to the size guide.
1404
+ */
1405
+ buttonText?: string | null;
1406
+ id?: string | null;
1407
+ blockName?: string | null;
1408
+ blockType: 'sizeGuidePreview';
1409
+ }
633
1410
  | StorageDefenderBlock
634
1411
  | MapLocationsAccordion
635
1412
  )[]
@@ -789,7 +1566,34 @@ export interface Facility {
789
1566
  /**
790
1567
  * Notify customers about a promotion or announcement. Displays above the facility tabs.
791
1568
  */
792
- facilityBanner?: FacilityBannerBlock[] | null;
1569
+ facilityBanner?:
1570
+ | {
1571
+ /**
1572
+ * Select the background color for the banner
1573
+ */
1574
+ backgroundColor?:
1575
+ | ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
1576
+ | null;
1577
+ content?: {
1578
+ root: {
1579
+ type: string;
1580
+ children: {
1581
+ type: any;
1582
+ version: number;
1583
+ [k: string]: unknown;
1584
+ }[];
1585
+ direction: ('ltr' | 'rtl') | null;
1586
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1587
+ indent: number;
1588
+ version: number;
1589
+ };
1590
+ [k: string]: unknown;
1591
+ } | null;
1592
+ id?: string | null;
1593
+ blockName?: string | null;
1594
+ blockType: 'facilityBanner';
1595
+ }[]
1596
+ | null;
793
1597
  /**
794
1598
  * Notify customers about a promotion or announcement. Displays in a square block at the top of the page.
795
1599
  */
@@ -797,7 +1601,7 @@ export interface Facility {
797
1601
  root: {
798
1602
  type: string;
799
1603
  children: {
800
- type: string;
1604
+ type: any;
801
1605
  version: number;
802
1606
  [k: string]: unknown;
803
1607
  }[];
@@ -907,7 +1711,7 @@ export interface Media {
907
1711
  root: {
908
1712
  type: string;
909
1713
  children: {
910
- type: string;
1714
+ type: any;
911
1715
  version: number;
912
1716
  [k: string]: unknown;
913
1717
  }[];
@@ -1043,7 +1847,7 @@ export interface ContentTabs {
1043
1847
  root: {
1044
1848
  type: string;
1045
1849
  children: {
1046
- type: string;
1850
+ type: any;
1047
1851
  version: number;
1048
1852
  [k: string]: unknown;
1049
1853
  }[];
@@ -1071,7 +1875,7 @@ export interface ContentTabs {
1071
1875
  root: {
1072
1876
  type: string;
1073
1877
  children: {
1074
- type: string;
1878
+ type: any;
1075
1879
  version: number;
1076
1880
  [k: string]: unknown;
1077
1881
  }[];
@@ -1132,7 +1936,7 @@ export interface ContentTabs {
1132
1936
  root: {
1133
1937
  type: string;
1134
1938
  children: {
1135
- type: string;
1939
+ type: any;
1136
1940
  version: number;
1137
1941
  [k: string]: unknown;
1138
1942
  }[];
@@ -1160,7 +1964,7 @@ export interface ContentTabs {
1160
1964
  root: {
1161
1965
  type: string;
1162
1966
  children: {
1163
- type: string;
1967
+ type: any;
1164
1968
  version: number;
1165
1969
  [k: string]: unknown;
1166
1970
  }[];
@@ -1221,7 +2025,7 @@ export interface ContentTabs {
1221
2025
  root: {
1222
2026
  type: string;
1223
2027
  children: {
1224
- type: string;
2028
+ type: any;
1225
2029
  version: number;
1226
2030
  [k: string]: unknown;
1227
2031
  }[];
@@ -1282,7 +2086,7 @@ export interface ContentTabs {
1282
2086
  root: {
1283
2087
  type: string;
1284
2088
  children: {
1285
- type: string;
2089
+ type: any;
1286
2090
  version: number;
1287
2091
  [k: string]: unknown;
1288
2092
  }[];
@@ -1307,7 +2111,7 @@ export interface Post {
1307
2111
  root: {
1308
2112
  type: string;
1309
2113
  children: {
1310
- type: string;
2114
+ type: any;
1311
2115
  version: number;
1312
2116
  [k: string]: unknown;
1313
2117
  }[];
@@ -1368,36 +2172,6 @@ export interface Category {
1368
2172
  createdAt: string;
1369
2173
  _status?: ('draft' | 'published') | null;
1370
2174
  }
1371
- /**
1372
- * This interface was referenced by `Config`'s JSON-Schema
1373
- * via the `definition` "FacilityBannerBlock".
1374
- */
1375
- export interface FacilityBannerBlock {
1376
- /**
1377
- * Select the background color for the banner
1378
- */
1379
- backgroundColor?:
1380
- | ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
1381
- | null;
1382
- content?: {
1383
- root: {
1384
- type: string;
1385
- children: {
1386
- type: string;
1387
- version: number;
1388
- [k: string]: unknown;
1389
- }[];
1390
- direction: ('ltr' | 'rtl') | null;
1391
- format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1392
- indent: number;
1393
- version: number;
1394
- };
1395
- [k: string]: unknown;
1396
- } | null;
1397
- id?: string | null;
1398
- blockName?: string | null;
1399
- blockType: 'facilityBanner';
1400
- }
1401
2175
  /**
1402
2176
  * This interface was referenced by `Config`'s JSON-Schema
1403
2177
  * via the `definition` "ArchiveBlock".
@@ -1407,7 +2181,7 @@ export interface ArchiveBlock {
1407
2181
  root: {
1408
2182
  type: string;
1409
2183
  children: {
1410
- type: string;
2184
+ type: any;
1411
2185
  version: number;
1412
2186
  [k: string]: unknown;
1413
2187
  }[];
@@ -1454,7 +2228,7 @@ export interface CallToActionBlock {
1454
2228
  root: {
1455
2229
  type: string;
1456
2230
  children: {
1457
- type: string;
2231
+ type: any;
1458
2232
  version: number;
1459
2233
  [k: string]: unknown;
1460
2234
  }[];
@@ -1532,7 +2306,7 @@ export interface ContentBlock {
1532
2306
  root: {
1533
2307
  type: string;
1534
2308
  children: {
1535
- type: string;
2309
+ type: any;
1536
2310
  version: number;
1537
2311
  [k: string]: unknown;
1538
2312
  }[];
@@ -1599,17 +2373,33 @@ export interface ContentBlock {
1599
2373
  }
1600
2374
  /**
1601
2375
  * This interface was referenced by `Config`'s JSON-Schema
1602
- * via the `definition` "FaqBlock".
2376
+ * via the `definition` "FacilityBannerBlock".
1603
2377
  */
1604
- export interface FaqBlock {
2378
+ export interface FacilityBannerBlock {
1605
2379
  /**
1606
- * Only one block per page should have the include FAQ schema option checked.
2380
+ * Select the background color for the banner
1607
2381
  */
1608
- includeFaqSchema?: boolean | null;
1609
- faq?: Faqs;
2382
+ backgroundColor?:
2383
+ | ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
2384
+ | null;
2385
+ content?: {
2386
+ root: {
2387
+ type: string;
2388
+ children: {
2389
+ type: any;
2390
+ version: number;
2391
+ [k: string]: unknown;
2392
+ }[];
2393
+ direction: ('ltr' | 'rtl') | null;
2394
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
2395
+ indent: number;
2396
+ version: number;
2397
+ };
2398
+ [k: string]: unknown;
2399
+ } | null;
1610
2400
  id?: string | null;
1611
2401
  blockName?: string | null;
1612
- blockType: 'faq';
2402
+ blockType: 'facilityBanner';
1613
2403
  }
1614
2404
  /**
1615
2405
  * This interface was referenced by `Config`'s JSON-Schema
@@ -1620,7 +2410,7 @@ export interface FeaturedLocationsBlock {
1620
2410
  root: {
1621
2411
  type: string;
1622
2412
  children: {
1623
- type: string;
2413
+ type: any;
1624
2414
  version: number;
1625
2415
  [k: string]: unknown;
1626
2416
  }[];
@@ -1649,7 +2439,7 @@ export interface FeaturesGridBlock {
1649
2439
  root: {
1650
2440
  type: string;
1651
2441
  children: {
1652
- type: string;
2442
+ type: any;
1653
2443
  version: number;
1654
2444
  [k: string]: unknown;
1655
2445
  }[];
@@ -1724,7 +2514,7 @@ export interface FeaturesGridBlock {
1724
2514
  root: {
1725
2515
  type: string;
1726
2516
  children: {
1727
- type: string;
2517
+ type: any;
1728
2518
  version: number;
1729
2519
  [k: string]: unknown;
1730
2520
  }[];
@@ -1750,7 +2540,7 @@ export interface FormBlock {
1750
2540
  root: {
1751
2541
  type: string;
1752
2542
  children: {
1753
- type: string;
2543
+ type: any;
1754
2544
  version: number;
1755
2545
  [k: string]: unknown;
1756
2546
  }[];
@@ -1793,7 +2583,7 @@ export interface Form {
1793
2583
  root: {
1794
2584
  type: string;
1795
2585
  children: {
1796
- type: string;
2586
+ type: any;
1797
2587
  version: number;
1798
2588
  [k: string]: unknown;
1799
2589
  }[];
@@ -1919,19 +2709,6 @@ export interface CurrentCustomerField {
1919
2709
  blockName?: string | null;
1920
2710
  blockType: 'currentCustomer';
1921
2711
  }
1922
- /**
1923
- * This interface was referenced by `Config`'s JSON-Schema
1924
- * via the `definition` "GalleryBlock".
1925
- */
1926
- export interface GalleryBlock {
1927
- /**
1928
- * Add a minimum of 2 and up to 4 images to the gallery. If you only want one, use the Media Block.
1929
- */
1930
- media: (string | Media)[];
1931
- id?: string | null;
1932
- blockName?: string | null;
1933
- blockType: 'galleryBlock';
1934
- }
1935
2712
  /**
1936
2713
  * This interface was referenced by `Config`'s JSON-Schema
1937
2714
  * via the `definition` "HomeHero".
@@ -2016,30 +2793,6 @@ export interface SingleTestimonialBlock {
2016
2793
  blockName?: string | null;
2017
2794
  blockType: 'singleTestimonial';
2018
2795
  }
2019
- /**
2020
- * This interface was referenced by `Config`'s JSON-Schema
2021
- * via the `definition` "MediaBlock".
2022
- */
2023
- export interface MediaBlock {
2024
- mediaType?: ('image' | 'video') | null;
2025
- imageAlignment?: ('left' | 'center' | 'right') | null;
2026
- /**
2027
- * The caption is set in the media upload collection document.
2028
- */
2029
- showCaption?: boolean | null;
2030
- captionAlignment?: ('left' | 'center' | 'right') | null;
2031
- /**
2032
- * Images should have a horizontal aspect ratio and be at least 800x450 pixels.
2033
- */
2034
- image?: (string | null) | Media;
2035
- /**
2036
- * Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
2037
- */
2038
- video?: string | null;
2039
- id?: string | null;
2040
- blockName?: string | null;
2041
- blockType: 'mediaBlock';
2042
- }
2043
2796
  /**
2044
2797
  * This interface was referenced by `Config`'s JSON-Schema
2045
2798
  * via the `definition` "RentalStepsBlock".
@@ -2081,7 +2834,7 @@ export interface StorageResourcesBlock {
2081
2834
  root: {
2082
2835
  type: string;
2083
2836
  children: {
2084
- type: string;
2837
+ type: any;
2085
2838
  version: number;
2086
2839
  [k: string]: unknown;
2087
2840
  }[];
@@ -2166,27 +2919,6 @@ export interface SizeGuideBlock {
2166
2919
  blockName?: string | null;
2167
2920
  blockType: 'sizeGuide';
2168
2921
  }
2169
- /**
2170
- * This interface was referenced by `Config`'s JSON-Schema
2171
- * via the `definition` "SizeGuidePreviewBlock".
2172
- */
2173
- export interface SizeGuidePreviewBlock {
2174
- /**
2175
- * Optional heading for the size guide preview
2176
- */
2177
- heading?: string | null;
2178
- /**
2179
- * Optional subheading for the size guide preview
2180
- */
2181
- subheading?: string | null;
2182
- /**
2183
- * The text for the button that links to the size guide.
2184
- */
2185
- buttonText?: string | null;
2186
- id?: string | null;
2187
- blockName?: string | null;
2188
- blockType: 'sizeGuidePreview';
2189
- }
2190
2922
  /**
2191
2923
  * This interface was referenced by `Config`'s JSON-Schema
2192
2924
  * via the `definition` "StorageDefenderBlock".
@@ -2206,7 +2938,7 @@ export interface StorageDefenderBlock {
2206
2938
  root: {
2207
2939
  type: string;
2208
2940
  children: {
2209
- type: string;
2941
+ type: any;
2210
2942
  version: number;
2211
2943
  [k: string]: unknown;
2212
2944
  }[];
@@ -2319,7 +3051,7 @@ export interface MapLocationsAccordion {
2319
3051
  root: {
2320
3052
  type: string;
2321
3053
  children: {
2322
- type: string;
3054
+ type: any;
2323
3055
  version: number;
2324
3056
  [k: string]: unknown;
2325
3057
  }[];
@@ -2551,6 +3283,23 @@ export interface BatchStatus {
2551
3283
  updatedAt: string;
2552
3284
  createdAt: string;
2553
3285
  }
3286
+ /**
3287
+ * This interface was referenced by `Config`'s JSON-Schema
3288
+ * via the `definition` "payload-kv".
3289
+ */
3290
+ export interface PayloadKv {
3291
+ id: string;
3292
+ key: string;
3293
+ data:
3294
+ | {
3295
+ [k: string]: unknown;
3296
+ }
3297
+ | unknown[]
3298
+ | string
3299
+ | number
3300
+ | boolean
3301
+ | null;
3302
+ }
2554
3303
  /**
2555
3304
  * This interface was referenced by `Config`'s JSON-Schema
2556
3305
  * via the `definition` "payload-jobs".
@@ -2717,10 +3466,6 @@ export interface PayloadLockedDocument {
2717
3466
  | ({
2718
3467
  relationTo: 'batch-statuses';
2719
3468
  value: string | BatchStatus;
2720
- } | null)
2721
- | ({
2722
- relationTo: 'payload-jobs';
2723
- value: string | PayloadJob;
2724
3469
  } | null);
2725
3470
  globalSlug?: string | null;
2726
3471
  user: {
@@ -3996,6 +4741,14 @@ export interface BatchStatusesSelect<T extends boolean = true> {
3996
4741
  updatedAt?: T;
3997
4742
  createdAt?: T;
3998
4743
  }
4744
+ /**
4745
+ * This interface was referenced by `Config`'s JSON-Schema
4746
+ * via the `definition` "payload-kv_select".
4747
+ */
4748
+ export interface PayloadKvSelect<T extends boolean = true> {
4749
+ key?: T;
4750
+ data?: T;
4751
+ }
3999
4752
  /**
4000
4753
  * This interface was referenced by `Config`'s JSON-Schema
4001
4754
  * via the `definition` "payload-jobs_select".
@@ -4059,6 +4812,16 @@ export interface PayloadMigrationsSelect<T extends boolean = true> {
4059
4812
  updatedAt?: T;
4060
4813
  createdAt?: T;
4061
4814
  }
4815
+ /**
4816
+ * This interface was referenced by `Config`'s JSON-Schema
4817
+ * via the `definition` "collections_widget".
4818
+ */
4819
+ export interface CollectionsWidget {
4820
+ data?: {
4821
+ [k: string]: unknown;
4822
+ };
4823
+ width: 'full';
4824
+ }
4062
4825
  /**
4063
4826
  * This interface was referenced by `Config`'s JSON-Schema
4064
4827
  * via the `definition` "TaskSchedulePublish".
@@ -4152,6 +4915,78 @@ export interface ButtonBlock {
4152
4915
  blockName?: string | null;
4153
4916
  blockType: 'button';
4154
4917
  }
4918
+ /**
4919
+ * This interface was referenced by `Config`'s JSON-Schema
4920
+ * via the `definition` "FaqBlock".
4921
+ */
4922
+ export interface FaqBlock {
4923
+ /**
4924
+ * Only one block per page should have the include FAQ schema option checked.
4925
+ */
4926
+ includeFaqSchema?: boolean | null;
4927
+ faq?: Faqs;
4928
+ id?: string | null;
4929
+ blockName?: string | null;
4930
+ blockType: 'faq';
4931
+ }
4932
+ /**
4933
+ * This interface was referenced by `Config`'s JSON-Schema
4934
+ * via the `definition` "GalleryBlock".
4935
+ */
4936
+ export interface GalleryBlock {
4937
+ /**
4938
+ * Add a minimum of 2 and up to 4 images to the gallery. If you only want one, use the Media Block.
4939
+ */
4940
+ media: (string | Media)[];
4941
+ id?: string | null;
4942
+ blockName?: string | null;
4943
+ blockType: 'galleryBlock';
4944
+ }
4945
+ /**
4946
+ * This interface was referenced by `Config`'s JSON-Schema
4947
+ * via the `definition` "MediaBlock".
4948
+ */
4949
+ export interface MediaBlock {
4950
+ mediaType?: ('image' | 'video') | null;
4951
+ imageAlignment?: ('left' | 'center' | 'right') | null;
4952
+ /**
4953
+ * The caption is set in the media upload collection document.
4954
+ */
4955
+ showCaption?: boolean | null;
4956
+ captionAlignment?: ('left' | 'center' | 'right') | null;
4957
+ /**
4958
+ * Images should have a horizontal aspect ratio and be at least 800x450 pixels.
4959
+ */
4960
+ image?: (string | null) | Media;
4961
+ /**
4962
+ * Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
4963
+ */
4964
+ video?: string | null;
4965
+ id?: string | null;
4966
+ blockName?: string | null;
4967
+ blockType: 'mediaBlock';
4968
+ }
4969
+ /**
4970
+ * This interface was referenced by `Config`'s JSON-Schema
4971
+ * via the `definition` "SizeGuidePreviewBlock".
4972
+ */
4973
+ export interface SizeGuidePreviewBlock {
4974
+ /**
4975
+ * Optional heading for the size guide preview
4976
+ */
4977
+ heading?: string | null;
4978
+ /**
4979
+ * Optional subheading for the size guide preview
4980
+ */
4981
+ subheading?: string | null;
4982
+ /**
4983
+ * The text for the button that links to the size guide.
4984
+ */
4985
+ buttonText?: string | null;
4986
+ id?: string | null;
4987
+ blockName?: string | null;
4988
+ blockType: 'sizeGuidePreview';
4989
+ }
4155
4990
  /**
4156
4991
  * This interface was referenced by `Config`'s JSON-Schema
4157
4992
  * via the `definition` "RowGroupBlock".
@@ -4164,7 +4999,7 @@ export interface RowGroupBlock {
4164
4999
  root: {
4165
5000
  type: string;
4166
5001
  children: {
4167
- type: string;
5002
+ type: any;
4168
5003
  version: number;
4169
5004
  [k: string]: unknown;
4170
5005
  }[];