@glidevvr/storage-payload-types-pkg 1.0.220 → 1.0.222
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 +89 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -264,6 +264,7 @@ export interface Page {
|
|
|
264
264
|
| ArchiveBlock
|
|
265
265
|
| CallToActionBlock
|
|
266
266
|
| ContentBlock
|
|
267
|
+
| FacilityBannerBlock
|
|
267
268
|
| FaqBlock
|
|
268
269
|
| FeaturedLocationsBlock
|
|
269
270
|
| FeaturesGridBlock
|
|
@@ -579,6 +580,7 @@ export interface Market {
|
|
|
579
580
|
| ArchiveBlock
|
|
580
581
|
| CallToActionBlock
|
|
581
582
|
| ContentBlock
|
|
583
|
+
| FacilityBannerBlock
|
|
582
584
|
| FaqBlock
|
|
583
585
|
| FeaturedLocationsBlock
|
|
584
586
|
| FeaturesGridBlock
|
|
@@ -1036,6 +1038,10 @@ export interface Facility {
|
|
|
1036
1038
|
*/
|
|
1037
1039
|
groupBy?: ('width' | 'length' | 'unit_type_id' | 'display_Rate' | 'floor')[] | null;
|
|
1038
1040
|
};
|
|
1041
|
+
/**
|
|
1042
|
+
* Notify customers about a promotion or announcement. Displays above the facility tabs.
|
|
1043
|
+
*/
|
|
1044
|
+
facilityBanner?: FacilityBannerBlock[] | null;
|
|
1039
1045
|
/**
|
|
1040
1046
|
* Notify customers about a promotion or announcement. Displays in a square block at the top of the page.
|
|
1041
1047
|
*/
|
|
@@ -1201,6 +1207,36 @@ export interface ContentTabs {
|
|
|
1201
1207
|
} | null;
|
|
1202
1208
|
};
|
|
1203
1209
|
}
|
|
1210
|
+
/**
|
|
1211
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1212
|
+
* via the `definition` "FacilityBannerBlock".
|
|
1213
|
+
*/
|
|
1214
|
+
export interface FacilityBannerBlock {
|
|
1215
|
+
/**
|
|
1216
|
+
* Select the background color for the banner
|
|
1217
|
+
*/
|
|
1218
|
+
backgroundColor?:
|
|
1219
|
+
| ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
|
|
1220
|
+
| null;
|
|
1221
|
+
content?: {
|
|
1222
|
+
root: {
|
|
1223
|
+
type: string;
|
|
1224
|
+
children: {
|
|
1225
|
+
type: string;
|
|
1226
|
+
version: number;
|
|
1227
|
+
[k: string]: unknown;
|
|
1228
|
+
}[];
|
|
1229
|
+
direction: ('ltr' | 'rtl') | null;
|
|
1230
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
1231
|
+
indent: number;
|
|
1232
|
+
version: number;
|
|
1233
|
+
};
|
|
1234
|
+
[k: string]: unknown;
|
|
1235
|
+
} | null;
|
|
1236
|
+
id?: string | null;
|
|
1237
|
+
blockName?: string | null;
|
|
1238
|
+
blockType: 'facilityBanner';
|
|
1239
|
+
}
|
|
1204
1240
|
/**
|
|
1205
1241
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1206
1242
|
* via the `definition` "ContentBlock".
|
|
@@ -1673,6 +1709,12 @@ export interface SingleTestimonialBlock {
|
|
|
1673
1709
|
*/
|
|
1674
1710
|
export interface MediaBlock {
|
|
1675
1711
|
mediaType?: ('image' | 'video') | null;
|
|
1712
|
+
imageAlignment?: ('left' | 'center' | 'right') | null;
|
|
1713
|
+
/**
|
|
1714
|
+
* The caption is set in the media upload collection document.
|
|
1715
|
+
*/
|
|
1716
|
+
showCaption?: boolean | null;
|
|
1717
|
+
captionAlignment?: ('left' | 'center' | 'right') | null;
|
|
1676
1718
|
/**
|
|
1677
1719
|
* Images should have a horizontal aspect ratio and be at least 800x450 pixels.
|
|
1678
1720
|
*/
|
|
@@ -2331,6 +2373,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
2331
2373
|
archive?: T | ArchiveBlockSelect<T>;
|
|
2332
2374
|
cta?: T | CallToActionBlockSelect<T>;
|
|
2333
2375
|
content?: T | ContentBlockSelect<T>;
|
|
2376
|
+
facilityBanner?: T | FacilityBannerBlockSelect<T>;
|
|
2334
2377
|
faq?: T | FaqBlockSelect<T>;
|
|
2335
2378
|
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|
|
2336
2379
|
featuresGrid?: T | FeaturesGridBlockSelect<T>;
|
|
@@ -2434,6 +2477,16 @@ export interface ContentBlockSelect<T extends boolean = true> {
|
|
|
2434
2477
|
id?: T;
|
|
2435
2478
|
blockName?: T;
|
|
2436
2479
|
}
|
|
2480
|
+
/**
|
|
2481
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2482
|
+
* via the `definition` "FacilityBannerBlock_select".
|
|
2483
|
+
*/
|
|
2484
|
+
export interface FacilityBannerBlockSelect<T extends boolean = true> {
|
|
2485
|
+
backgroundColor?: T;
|
|
2486
|
+
content?: T;
|
|
2487
|
+
id?: T;
|
|
2488
|
+
blockName?: T;
|
|
2489
|
+
}
|
|
2437
2490
|
/**
|
|
2438
2491
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2439
2492
|
* via the `definition` "FaqBlock_select".
|
|
@@ -2563,6 +2616,9 @@ export interface SingleTestimonialBlockSelect<T extends boolean = true> {
|
|
|
2563
2616
|
*/
|
|
2564
2617
|
export interface MediaBlockSelect<T extends boolean = true> {
|
|
2565
2618
|
mediaType?: T;
|
|
2619
|
+
imageAlignment?: T;
|
|
2620
|
+
showCaption?: T;
|
|
2621
|
+
captionAlignment?: T;
|
|
2566
2622
|
image?: T;
|
|
2567
2623
|
video?: T;
|
|
2568
2624
|
id?: T;
|
|
@@ -2747,6 +2803,11 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
2747
2803
|
sort?: T;
|
|
2748
2804
|
groupBy?: T;
|
|
2749
2805
|
};
|
|
2806
|
+
facilityBanner?:
|
|
2807
|
+
| T
|
|
2808
|
+
| {
|
|
2809
|
+
facilityBanner?: T | FacilityBannerBlockSelect<T>;
|
|
2810
|
+
};
|
|
2750
2811
|
facilityNotice?: T;
|
|
2751
2812
|
marketNotice?: T;
|
|
2752
2813
|
backgroundColor?: T;
|
|
@@ -2837,6 +2898,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2837
2898
|
archive?: T | ArchiveBlockSelect<T>;
|
|
2838
2899
|
cta?: T | CallToActionBlockSelect<T>;
|
|
2839
2900
|
content?: T | ContentBlockSelect<T>;
|
|
2901
|
+
facilityBanner?: T | FacilityBannerBlockSelect<T>;
|
|
2840
2902
|
faq?: T | FaqBlockSelect<T>;
|
|
2841
2903
|
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|
|
2842
2904
|
featuresGrid?: T | FeaturesGridBlockSelect<T>;
|
|
@@ -3564,6 +3626,33 @@ export interface ButtonBlock {
|
|
|
3564
3626
|
blockName?: string | null;
|
|
3565
3627
|
blockType: 'button';
|
|
3566
3628
|
}
|
|
3629
|
+
/**
|
|
3630
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3631
|
+
* via the `definition` "RowGroupBlock".
|
|
3632
|
+
*/
|
|
3633
|
+
export interface RowGroupBlock {
|
|
3634
|
+
/**
|
|
3635
|
+
* Content will display in a row on tablet/desktop, and stack vertically on mobile.
|
|
3636
|
+
*/
|
|
3637
|
+
content?: {
|
|
3638
|
+
root: {
|
|
3639
|
+
type: string;
|
|
3640
|
+
children: {
|
|
3641
|
+
type: string;
|
|
3642
|
+
version: number;
|
|
3643
|
+
[k: string]: unknown;
|
|
3644
|
+
}[];
|
|
3645
|
+
direction: ('ltr' | 'rtl') | null;
|
|
3646
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
3647
|
+
indent: number;
|
|
3648
|
+
version: number;
|
|
3649
|
+
};
|
|
3650
|
+
[k: string]: unknown;
|
|
3651
|
+
} | null;
|
|
3652
|
+
id?: string | null;
|
|
3653
|
+
blockName?: string | null;
|
|
3654
|
+
blockType: 'rowGroup';
|
|
3655
|
+
}
|
|
3567
3656
|
/**
|
|
3568
3657
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3569
3658
|
* via the `definition` "auth".
|