@glidevvr/storage-payload-types-pkg 1.0.79 → 1.0.81

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 +31 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.79",
3
+ "version": "1.0.81",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -266,6 +266,7 @@ export interface Page {
266
266
  | FeaturedLocationsBlock
267
267
  | FeaturesGridBlock
268
268
  | FormBlock
269
+ | GalleryBlock
269
270
  | HomeHero
270
271
  | HorizontalRuleBlock
271
272
  | SingleTestimonialBlock
@@ -273,7 +274,6 @@ export interface Page {
273
274
  | RentalStepsBlock
274
275
  | SearchCalloutBlock
275
276
  | StoragResourcesBlock
276
- | GalleryBlock
277
277
  | SizeGuideBlock
278
278
  | StorageDefenderBlock
279
279
  )[];
@@ -436,6 +436,7 @@ export interface Market {
436
436
  | FeaturedLocationsBlock
437
437
  | FeaturesGridBlock
438
438
  | FormBlock
439
+ | GalleryBlock
439
440
  | HomeHero
440
441
  | HorizontalRuleBlock
441
442
  | SingleTestimonialBlock
@@ -443,7 +444,6 @@ export interface Market {
443
444
  | RentalStepsBlock
444
445
  | SearchCalloutBlock
445
446
  | StoragResourcesBlock
446
- | GalleryBlock
447
447
  | SizeGuideBlock
448
448
  | StorageDefenderBlock
449
449
  )[]
@@ -499,7 +499,7 @@ export interface ArchiveBlock {
499
499
  */
500
500
  categories?: (string | Category)[] | null;
501
501
  /**
502
- * Select the number of posts to display (limit of 4 max.).
502
+ * Select the number of published posts to display (limit of 4 max.).
503
503
  */
504
504
  limit?: ('1' | '2' | '3' | '4') | null;
505
505
  /**
@@ -1413,6 +1413,19 @@ export interface Form {
1413
1413
  updatedAt: string;
1414
1414
  createdAt: string;
1415
1415
  }
1416
+ /**
1417
+ * This interface was referenced by `Config`'s JSON-Schema
1418
+ * via the `definition` "GalleryBlock".
1419
+ */
1420
+ export interface GalleryBlock {
1421
+ /**
1422
+ * Add a minimum of 2 and up to 4 images to the gallery. If you only want one, use the Media Block.
1423
+ */
1424
+ media: (string | Media)[];
1425
+ id?: string | null;
1426
+ blockName?: string | null;
1427
+ blockType: 'galleryBlock';
1428
+ }
1416
1429
  /**
1417
1430
  * This interface was referenced by `Config`'s JSON-Schema
1418
1431
  * via the `definition` "HomeHero".
@@ -1609,16 +1622,6 @@ export interface StoragResourcesBlock {
1609
1622
  blockName?: string | null;
1610
1623
  blockType: 'storage-resources';
1611
1624
  }
1612
- /**
1613
- * This interface was referenced by `Config`'s JSON-Schema
1614
- * via the `definition` "GalleryBlock".
1615
- */
1616
- export interface GalleryBlock {
1617
- media: (string | Media)[];
1618
- id?: string | null;
1619
- blockName?: string | null;
1620
- blockType: 'galleryBlock';
1621
- }
1622
1625
  /**
1623
1626
  * This interface was referenced by `Config`'s JSON-Schema
1624
1627
  * via the `definition` "SizeGuideBlock".
@@ -1755,7 +1758,6 @@ export interface Menu {
1755
1758
  | 'footer_menu_4'
1756
1759
  | 'policy_menu'
1757
1760
  | 'none';
1758
- columns?: number | null;
1759
1761
  navItems?: NavItem;
1760
1762
  createdBy?: string | null;
1761
1763
  updatedBy?: string | null;
@@ -2057,6 +2059,7 @@ export interface PagesSelect<T extends boolean = true> {
2057
2059
  'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
2058
2060
  'features-grid'?: T | FeaturesGridBlockSelect<T>;
2059
2061
  formBlock?: T | FormBlockSelect<T>;
2062
+ galleryBlock?: T | GalleryBlockSelect<T>;
2060
2063
  homeHero?: T | HomeHeroSelect<T>;
2061
2064
  'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
2062
2065
  singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
@@ -2064,7 +2067,6 @@ export interface PagesSelect<T extends boolean = true> {
2064
2067
  'rental-steps'?: T | RentalStepsBlockSelect<T>;
2065
2068
  'search-callout'?: T | SearchCalloutBlockSelect<T>;
2066
2069
  'storage-resources'?: T | StoragResourcesBlockSelect<T>;
2067
- galleryBlock?: T | GalleryBlockSelect<T>;
2068
2070
  'size-guide'?: T | SizeGuideBlockSelect<T>;
2069
2071
  'storage-defender'?: T | StorageDefenderBlockSelect<T>;
2070
2072
  };
@@ -2223,6 +2225,15 @@ export interface FormBlockSelect<T extends boolean = true> {
2223
2225
  id?: T;
2224
2226
  blockName?: T;
2225
2227
  }
2228
+ /**
2229
+ * This interface was referenced by `Config`'s JSON-Schema
2230
+ * via the `definition` "GalleryBlock_select".
2231
+ */
2232
+ export interface GalleryBlockSelect<T extends boolean = true> {
2233
+ media?: T;
2234
+ id?: T;
2235
+ blockName?: T;
2236
+ }
2226
2237
  /**
2227
2238
  * This interface was referenced by `Config`'s JSON-Schema
2228
2239
  * via the `definition` "HomeHero_select".
@@ -2341,15 +2352,6 @@ export interface StoragResourcesBlockSelect<T extends boolean = true> {
2341
2352
  id?: T;
2342
2353
  blockName?: T;
2343
2354
  }
2344
- /**
2345
- * This interface was referenced by `Config`'s JSON-Schema
2346
- * via the `definition` "GalleryBlock_select".
2347
- */
2348
- export interface GalleryBlockSelect<T extends boolean = true> {
2349
- media?: T;
2350
- id?: T;
2351
- blockName?: T;
2352
- }
2353
2355
  /**
2354
2356
  * This interface was referenced by `Config`'s JSON-Schema
2355
2357
  * via the `definition` "SizeGuideBlock_select".
@@ -2613,7 +2615,6 @@ export interface MenusSelect<T extends boolean = true> {
2613
2615
  tenant?: T;
2614
2616
  title?: T;
2615
2617
  location?: T;
2616
- columns?: T;
2617
2618
  navItems?: T | NavItemSelect<T>;
2618
2619
  createdBy?: T;
2619
2620
  updatedBy?: T;
@@ -2794,6 +2795,7 @@ export interface MarketsSelect<T extends boolean = true> {
2794
2795
  'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
2795
2796
  'features-grid'?: T | FeaturesGridBlockSelect<T>;
2796
2797
  formBlock?: T | FormBlockSelect<T>;
2798
+ galleryBlock?: T | GalleryBlockSelect<T>;
2797
2799
  homeHero?: T | HomeHeroSelect<T>;
2798
2800
  'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
2799
2801
  singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
@@ -2801,7 +2803,6 @@ export interface MarketsSelect<T extends boolean = true> {
2801
2803
  'rental-steps'?: T | RentalStepsBlockSelect<T>;
2802
2804
  'search-callout'?: T | SearchCalloutBlockSelect<T>;
2803
2805
  'storage-resources'?: T | StoragResourcesBlockSelect<T>;
2804
- galleryBlock?: T | GalleryBlockSelect<T>;
2805
2806
  'size-guide'?: T | SizeGuideBlockSelect<T>;
2806
2807
  'storage-defender'?: T | StorageDefenderBlockSelect<T>;
2807
2808
  };
@@ -3209,6 +3210,10 @@ export interface ButtonBlock {
3209
3210
  | 'gray'
3210
3211
  )
3211
3212
  | null;
3213
+ /**
3214
+ * Choose how the link should be aligned.
3215
+ */
3216
+ alignment?: ('left' | 'center' | 'right') | null;
3212
3217
  };
3213
3218
  id?: string | null;
3214
3219
  blockName?: string | null;