@glidevvr/storage-payload-types-pkg 1.0.70 → 1.0.72

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 +28 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.70",
3
+ "version": "1.0.72",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -317,7 +317,7 @@ export interface Tenant {
317
317
  * The page for the All Locations page content. Routing will use this page's slug.
318
318
  */
319
319
  allFacilitiesPage?: (string | null) | Market;
320
- paymentSystem?: ('provider' | 'storage_essentials') | null;
320
+ paymentSystem?: ('none' | 'storage_essentials') | null;
321
321
  seCompanyId?: number | null;
322
322
  seApiKey?: string | null;
323
323
  seApiPrivateKey?: string | null;
@@ -329,6 +329,10 @@ export interface Tenant {
329
329
  * The Server key is responsible for server side communcations with the Google APIs, and may be restricted by IP addresss.
330
330
  */
331
331
  googleApiServerKey?: string | null;
332
+ /**
333
+ * The domain of the website. Used for SEO/preview purposes.
334
+ */
335
+ domain?: string | null;
332
336
  /**
333
337
  * The Google Tag Manager ID. This should include the "GTM-" prefix.
334
338
  */
@@ -747,7 +751,7 @@ export interface Facility {
747
751
  * Select multiple features related to this facility.
748
752
  */
749
753
  facilityFeatures?: (string | FacilityFeature)[] | null;
750
- facilityPaymentSystem?: ('default' | 'none' | 'provider' | 'storage_essentials') | null;
754
+ facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
751
755
  /**
752
756
  * The first image selected is displayed on market pages.
753
757
  */
@@ -1082,6 +1086,25 @@ export interface FaqBlock {
1082
1086
  * via the `definition` "FeaturedLocationsBlock".
1083
1087
  */
1084
1088
  export interface FeaturedLocationsBlock {
1089
+ introContent?: {
1090
+ root: {
1091
+ type: string;
1092
+ children: {
1093
+ type: string;
1094
+ version: number;
1095
+ [k: string]: unknown;
1096
+ }[];
1097
+ direction: ('ltr' | 'rtl') | null;
1098
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1099
+ indent: number;
1100
+ version: number;
1101
+ };
1102
+ [k: string]: unknown;
1103
+ } | null;
1104
+ /**
1105
+ * Select up to 10 locations to feature.
1106
+ */
1107
+ selectedLocations: (string | Facility)[];
1085
1108
  id?: string | null;
1086
1109
  blockName?: string | null;
1087
1110
  blockType: 'featured-locations';
@@ -2149,6 +2172,8 @@ export interface FaqsSelect<T extends boolean = true> {
2149
2172
  * via the `definition` "FeaturedLocationsBlock_select".
2150
2173
  */
2151
2174
  export interface FeaturedLocationsBlockSelect<T extends boolean = true> {
2175
+ introContent?: T;
2176
+ selectedLocations?: T;
2152
2177
  id?: T;
2153
2178
  blockName?: T;
2154
2179
  }
@@ -2494,6 +2519,7 @@ export interface TenantsSelect<T extends boolean = true> {
2494
2519
  seApiPrivateKey?: T;
2495
2520
  googleApiBrowserKey?: T;
2496
2521
  googleApiServerKey?: T;
2522
+ domain?: T;
2497
2523
  gtmId?: T;
2498
2524
  websiteNotIndexable?: T;
2499
2525
  defaultBrand?: T;