@glidevvr/storage-payload-types-pkg 1.0.69 → 1.0.71

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 +21 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1082,6 +1082,25 @@ export interface FaqBlock {
1082
1082
  * via the `definition` "FeaturedLocationsBlock".
1083
1083
  */
1084
1084
  export interface FeaturedLocationsBlock {
1085
+ introContent?: {
1086
+ root: {
1087
+ type: string;
1088
+ children: {
1089
+ type: string;
1090
+ version: number;
1091
+ [k: string]: unknown;
1092
+ }[];
1093
+ direction: ('ltr' | 'rtl') | null;
1094
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1095
+ indent: number;
1096
+ version: number;
1097
+ };
1098
+ [k: string]: unknown;
1099
+ } | null;
1100
+ /**
1101
+ * Select up to 10 locations to feature.
1102
+ */
1103
+ selectedLocations: (string | Facility)[];
1085
1104
  id?: string | null;
1086
1105
  blockName?: string | null;
1087
1106
  blockType: 'featured-locations';
@@ -2149,6 +2168,8 @@ export interface FaqsSelect<T extends boolean = true> {
2149
2168
  * via the `definition` "FeaturedLocationsBlock_select".
2150
2169
  */
2151
2170
  export interface FeaturedLocationsBlockSelect<T extends boolean = true> {
2171
+ introContent?: T;
2172
+ selectedLocations?: T;
2152
2173
  id?: T;
2153
2174
  blockName?: T;
2154
2175
  }