@glidevvr/storage-payload-types-pkg 1.0.79 → 1.0.80
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.
- package/package.json +1 -1
- package/payload-types.ts +28 -26
package/package.json
CHANGED
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,16 @@ 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
|
+
media: (string | Media)[];
|
|
1422
|
+
id?: string | null;
|
|
1423
|
+
blockName?: string | null;
|
|
1424
|
+
blockType: 'galleryBlock';
|
|
1425
|
+
}
|
|
1416
1426
|
/**
|
|
1417
1427
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1418
1428
|
* via the `definition` "HomeHero".
|
|
@@ -1609,16 +1619,6 @@ export interface StoragResourcesBlock {
|
|
|
1609
1619
|
blockName?: string | null;
|
|
1610
1620
|
blockType: 'storage-resources';
|
|
1611
1621
|
}
|
|
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
1622
|
/**
|
|
1623
1623
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1624
1624
|
* via the `definition` "SizeGuideBlock".
|
|
@@ -1755,7 +1755,6 @@ export interface Menu {
|
|
|
1755
1755
|
| 'footer_menu_4'
|
|
1756
1756
|
| 'policy_menu'
|
|
1757
1757
|
| 'none';
|
|
1758
|
-
columns?: number | null;
|
|
1759
1758
|
navItems?: NavItem;
|
|
1760
1759
|
createdBy?: string | null;
|
|
1761
1760
|
updatedBy?: string | null;
|
|
@@ -2057,6 +2056,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
2057
2056
|
'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
|
|
2058
2057
|
'features-grid'?: T | FeaturesGridBlockSelect<T>;
|
|
2059
2058
|
formBlock?: T | FormBlockSelect<T>;
|
|
2059
|
+
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2060
2060
|
homeHero?: T | HomeHeroSelect<T>;
|
|
2061
2061
|
'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
|
|
2062
2062
|
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
@@ -2064,7 +2064,6 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
2064
2064
|
'rental-steps'?: T | RentalStepsBlockSelect<T>;
|
|
2065
2065
|
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
2066
2066
|
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
2067
|
-
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2068
2067
|
'size-guide'?: T | SizeGuideBlockSelect<T>;
|
|
2069
2068
|
'storage-defender'?: T | StorageDefenderBlockSelect<T>;
|
|
2070
2069
|
};
|
|
@@ -2223,6 +2222,15 @@ export interface FormBlockSelect<T extends boolean = true> {
|
|
|
2223
2222
|
id?: T;
|
|
2224
2223
|
blockName?: T;
|
|
2225
2224
|
}
|
|
2225
|
+
/**
|
|
2226
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2227
|
+
* via the `definition` "GalleryBlock_select".
|
|
2228
|
+
*/
|
|
2229
|
+
export interface GalleryBlockSelect<T extends boolean = true> {
|
|
2230
|
+
media?: T;
|
|
2231
|
+
id?: T;
|
|
2232
|
+
blockName?: T;
|
|
2233
|
+
}
|
|
2226
2234
|
/**
|
|
2227
2235
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2228
2236
|
* via the `definition` "HomeHero_select".
|
|
@@ -2341,15 +2349,6 @@ export interface StoragResourcesBlockSelect<T extends boolean = true> {
|
|
|
2341
2349
|
id?: T;
|
|
2342
2350
|
blockName?: T;
|
|
2343
2351
|
}
|
|
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
2352
|
/**
|
|
2354
2353
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2355
2354
|
* via the `definition` "SizeGuideBlock_select".
|
|
@@ -2613,7 +2612,6 @@ export interface MenusSelect<T extends boolean = true> {
|
|
|
2613
2612
|
tenant?: T;
|
|
2614
2613
|
title?: T;
|
|
2615
2614
|
location?: T;
|
|
2616
|
-
columns?: T;
|
|
2617
2615
|
navItems?: T | NavItemSelect<T>;
|
|
2618
2616
|
createdBy?: T;
|
|
2619
2617
|
updatedBy?: T;
|
|
@@ -2794,6 +2792,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2794
2792
|
'featured-locations'?: T | FeaturedLocationsBlockSelect<T>;
|
|
2795
2793
|
'features-grid'?: T | FeaturesGridBlockSelect<T>;
|
|
2796
2794
|
formBlock?: T | FormBlockSelect<T>;
|
|
2795
|
+
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2797
2796
|
homeHero?: T | HomeHeroSelect<T>;
|
|
2798
2797
|
'horizontal-rule'?: T | HorizontalRuleBlockSelect<T>;
|
|
2799
2798
|
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
@@ -2801,7 +2800,6 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2801
2800
|
'rental-steps'?: T | RentalStepsBlockSelect<T>;
|
|
2802
2801
|
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
2803
2802
|
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
2804
|
-
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2805
2803
|
'size-guide'?: T | SizeGuideBlockSelect<T>;
|
|
2806
2804
|
'storage-defender'?: T | StorageDefenderBlockSelect<T>;
|
|
2807
2805
|
};
|
|
@@ -3209,6 +3207,10 @@ export interface ButtonBlock {
|
|
|
3209
3207
|
| 'gray'
|
|
3210
3208
|
)
|
|
3211
3209
|
| null;
|
|
3210
|
+
/**
|
|
3211
|
+
* Choose how the link should be aligned.
|
|
3212
|
+
*/
|
|
3213
|
+
alignment?: ('left' | 'center' | 'right') | null;
|
|
3212
3214
|
};
|
|
3213
3215
|
id?: string | null;
|
|
3214
3216
|
blockName?: string | null;
|