@glidevvr/storage-payload-types-pkg 1.0.242 → 1.0.243

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 +50 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.242",
3
+ "version": "1.0.243",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -279,6 +279,7 @@ export interface Page {
279
279
  | StorageResourcesBlock
280
280
  | SizeGuideBlock
281
281
  | StorageDefenderBlock
282
+ | MapLocationsAccordion
282
283
  )[];
283
284
  meta?: {
284
285
  title?: string | null;
@@ -600,6 +601,7 @@ export interface Market {
600
601
  | StorageResourcesBlock
601
602
  | SizeGuideBlock
602
603
  | StorageDefenderBlock
604
+ | MapLocationsAccordion
603
605
  )[]
604
606
  | null;
605
607
  meta?: {
@@ -2071,6 +2073,41 @@ export interface StorageDefenderBlock {
2071
2073
  blockName?: string | null;
2072
2074
  blockType: 'storageDefender';
2073
2075
  }
2076
+ /**
2077
+ * This interface was referenced by `Config`'s JSON-Schema
2078
+ * via the `definition` "MapLocationsAccordion".
2079
+ */
2080
+ export interface MapLocationsAccordion {
2081
+ /**
2082
+ * Use this space to add a custom heading and content to the block.
2083
+ */
2084
+ content?: {
2085
+ root: {
2086
+ type: string;
2087
+ children: {
2088
+ type: string;
2089
+ version: number;
2090
+ [k: string]: unknown;
2091
+ }[];
2092
+ direction: ('ltr' | 'rtl') | null;
2093
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
2094
+ indent: number;
2095
+ version: number;
2096
+ };
2097
+ [k: string]: unknown;
2098
+ } | null;
2099
+ /**
2100
+ * 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.
2101
+ */
2102
+ accordionVisibility?: ('always' | 'hide-desktop' | 'never') | null;
2103
+ /**
2104
+ * Maximum 30 characters
2105
+ */
2106
+ accordionHeading?: string | null;
2107
+ id?: string | null;
2108
+ blockName?: string | null;
2109
+ blockType: 'mapLocationsAccordion';
2110
+ }
2074
2111
  /**
2075
2112
  * This interface was referenced by `Config`'s JSON-Schema
2076
2113
  * via the `definition` "menus".
@@ -2486,6 +2523,7 @@ export interface PagesSelect<T extends boolean = true> {
2486
2523
  storageResources?: T | StorageResourcesBlockSelect<T>;
2487
2524
  sizeGuide?: T | SizeGuideBlockSelect<T>;
2488
2525
  storageDefender?: T | StorageDefenderBlockSelect<T>;
2526
+ mapLocationsAccordion?: T | MapLocationsAccordionSelect<T>;
2489
2527
  };
2490
2528
  meta?:
2491
2529
  | T
@@ -2859,6 +2897,17 @@ export interface StorageDefenderBlockSelect<T extends boolean = true> {
2859
2897
  id?: T;
2860
2898
  blockName?: T;
2861
2899
  }
2900
+ /**
2901
+ * This interface was referenced by `Config`'s JSON-Schema
2902
+ * via the `definition` "MapLocationsAccordion_select".
2903
+ */
2904
+ export interface MapLocationsAccordionSelect<T extends boolean = true> {
2905
+ content?: T;
2906
+ accordionVisibility?: T;
2907
+ accordionHeading?: T;
2908
+ id?: T;
2909
+ blockName?: T;
2910
+ }
2862
2911
  /**
2863
2912
  * This interface was referenced by `Config`'s JSON-Schema
2864
2913
  * via the `definition` "facilities_select".
@@ -3035,6 +3084,7 @@ export interface MarketsSelect<T extends boolean = true> {
3035
3084
  storageResources?: T | StorageResourcesBlockSelect<T>;
3036
3085
  sizeGuide?: T | SizeGuideBlockSelect<T>;
3037
3086
  storageDefender?: T | StorageDefenderBlockSelect<T>;
3087
+ mapLocationsAccordion?: T | MapLocationsAccordionSelect<T>;
3038
3088
  };
3039
3089
  meta?:
3040
3090
  | T