@glidevvr/storage-payload-types-pkg 1.0.333 → 1.0.335
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 +115 -1
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -1605,6 +1605,9 @@ export interface CallToActionBlock {
|
|
|
1605
1605
|
| 'secondary'
|
|
1606
1606
|
| 'secondary-light'
|
|
1607
1607
|
| 'outline-secondary'
|
|
1608
|
+
| 'tertiary'
|
|
1609
|
+
| 'tertiary-light'
|
|
1610
|
+
| 'outline-tertiary'
|
|
1608
1611
|
| 'destructive'
|
|
1609
1612
|
| 'link'
|
|
1610
1613
|
| 'white'
|
|
@@ -1682,6 +1685,9 @@ export interface ContentBlock {
|
|
|
1682
1685
|
| 'secondary'
|
|
1683
1686
|
| 'secondary-light'
|
|
1684
1687
|
| 'outline-secondary'
|
|
1688
|
+
| 'tertiary'
|
|
1689
|
+
| 'tertiary-light'
|
|
1690
|
+
| 'outline-tertiary'
|
|
1685
1691
|
| 'destructive'
|
|
1686
1692
|
| 'link'
|
|
1687
1693
|
| 'white'
|
|
@@ -2052,6 +2058,10 @@ export interface GalleryBlock {
|
|
|
2052
2058
|
* via the `definition` "HomeHero".
|
|
2053
2059
|
*/
|
|
2054
2060
|
export interface HomeHero {
|
|
2061
|
+
/**
|
|
2062
|
+
* Visual layout variant for this hero block.
|
|
2063
|
+
*/
|
|
2064
|
+
blockLayout?: ('layout-1' | 'layout-2') | null;
|
|
2055
2065
|
title?: string | null;
|
|
2056
2066
|
subtitle?: string | null;
|
|
2057
2067
|
/**
|
|
@@ -2066,6 +2076,22 @@ export interface HomeHero {
|
|
|
2066
2076
|
fullImageContentAlign?: ('center' | 'right' | 'left') | null;
|
|
2067
2077
|
halfImageContentSide?: ('right' | 'left') | null;
|
|
2068
2078
|
searchLayout?: 'default' | null;
|
|
2079
|
+
eyebrow?: string | null;
|
|
2080
|
+
imageCount?: ('1' | '2' | '3') | null;
|
|
2081
|
+
/**
|
|
2082
|
+
* Order:
|
|
2083
|
+
* 3 images: Top-left (portrait), top-right, bottom-right
|
|
2084
|
+
* 2 images: Top-left, top-right (portrait)
|
|
2085
|
+
* 1 image: Fills full space
|
|
2086
|
+
*/
|
|
2087
|
+
images?:
|
|
2088
|
+
| {
|
|
2089
|
+
image: string | Media;
|
|
2090
|
+
label?: string | null;
|
|
2091
|
+
id?: string | null;
|
|
2092
|
+
}[]
|
|
2093
|
+
| null;
|
|
2094
|
+
labelPosition?: ('top-left' | 'top-right' | 'bottom-left' | 'bottom-right') | null;
|
|
2069
2095
|
id?: string | null;
|
|
2070
2096
|
blockName?: string | null;
|
|
2071
2097
|
blockType: 'homeHero';
|
|
@@ -2281,11 +2307,72 @@ export interface RentalStepsBlock {
|
|
|
2281
2307
|
* via the `definition` "SearchCalloutBlock".
|
|
2282
2308
|
*/
|
|
2283
2309
|
export interface SearchCalloutBlock {
|
|
2310
|
+
/**
|
|
2311
|
+
* Visual layout variant for this Search Callout block.
|
|
2312
|
+
*/
|
|
2313
|
+
blockLayout?: ('layout-1' | 'layout-2') | null;
|
|
2284
2314
|
text: string;
|
|
2315
|
+
/**
|
|
2316
|
+
* Supporting text shown beneath the CTA text. Use <Tenant Name> as a placeholder for the organization name.
|
|
2317
|
+
*/
|
|
2318
|
+
descriptiveText?: string | null;
|
|
2319
|
+
/**
|
|
2320
|
+
* Select the background color for the callout card.
|
|
2321
|
+
*/
|
|
2322
|
+
backgroundColor?: ('primary' | 'secondary' | 'tertiary') | null;
|
|
2285
2323
|
/**
|
|
2286
2324
|
* The button will direct the user to the All Locations page selected for the organization.
|
|
2287
2325
|
*/
|
|
2288
|
-
buttonText
|
|
2326
|
+
buttonText?: string | null;
|
|
2327
|
+
buttonLink?: {
|
|
2328
|
+
type?: ('reference' | 'custom') | null;
|
|
2329
|
+
newTab?: boolean | null;
|
|
2330
|
+
reference?:
|
|
2331
|
+
| ({
|
|
2332
|
+
relationTo: 'pages';
|
|
2333
|
+
value: string | Page;
|
|
2334
|
+
} | null)
|
|
2335
|
+
| ({
|
|
2336
|
+
relationTo: 'posts';
|
|
2337
|
+
value: string | Post;
|
|
2338
|
+
} | null)
|
|
2339
|
+
| ({
|
|
2340
|
+
relationTo: 'facilities';
|
|
2341
|
+
value: string | Facility;
|
|
2342
|
+
} | null)
|
|
2343
|
+
| ({
|
|
2344
|
+
relationTo: 'markets';
|
|
2345
|
+
value: string | Market;
|
|
2346
|
+
} | null)
|
|
2347
|
+
| ({
|
|
2348
|
+
relationTo: 'categories';
|
|
2349
|
+
value: string | Category;
|
|
2350
|
+
} | null);
|
|
2351
|
+
url?: string | null;
|
|
2352
|
+
label?: string | null;
|
|
2353
|
+
/**
|
|
2354
|
+
* Choose how the link should be rendered.
|
|
2355
|
+
*/
|
|
2356
|
+
appearance?:
|
|
2357
|
+
| (
|
|
2358
|
+
| 'default'
|
|
2359
|
+
| 'primary'
|
|
2360
|
+
| 'primary-light'
|
|
2361
|
+
| 'outline-primary'
|
|
2362
|
+
| 'secondary'
|
|
2363
|
+
| 'secondary-light'
|
|
2364
|
+
| 'outline-secondary'
|
|
2365
|
+
| 'tertiary'
|
|
2366
|
+
| 'tertiary-light'
|
|
2367
|
+
| 'outline-tertiary'
|
|
2368
|
+
| 'destructive'
|
|
2369
|
+
| 'link'
|
|
2370
|
+
| 'white'
|
|
2371
|
+
| 'ghost'
|
|
2372
|
+
| 'gray'
|
|
2373
|
+
)
|
|
2374
|
+
| null;
|
|
2375
|
+
};
|
|
2289
2376
|
id?: string | null;
|
|
2290
2377
|
blockName?: string | null;
|
|
2291
2378
|
blockType: 'searchCallout';
|
|
@@ -3389,6 +3476,7 @@ export interface GalleryBlockSelect<T extends boolean = true> {
|
|
|
3389
3476
|
* via the `definition` "HomeHero_select".
|
|
3390
3477
|
*/
|
|
3391
3478
|
export interface HomeHeroSelect<T extends boolean = true> {
|
|
3479
|
+
blockLayout?: T;
|
|
3392
3480
|
title?: T;
|
|
3393
3481
|
subtitle?: T;
|
|
3394
3482
|
backgroundImage?: T;
|
|
@@ -3397,6 +3485,16 @@ export interface HomeHeroSelect<T extends boolean = true> {
|
|
|
3397
3485
|
fullImageContentAlign?: T;
|
|
3398
3486
|
halfImageContentSide?: T;
|
|
3399
3487
|
searchLayout?: T;
|
|
3488
|
+
eyebrow?: T;
|
|
3489
|
+
imageCount?: T;
|
|
3490
|
+
images?:
|
|
3491
|
+
| T
|
|
3492
|
+
| {
|
|
3493
|
+
image?: T;
|
|
3494
|
+
label?: T;
|
|
3495
|
+
id?: T;
|
|
3496
|
+
};
|
|
3497
|
+
labelPosition?: T;
|
|
3400
3498
|
id?: T;
|
|
3401
3499
|
blockName?: T;
|
|
3402
3500
|
}
|
|
@@ -3470,8 +3568,21 @@ export interface RentalStepsBlockSelect<T extends boolean = true> {
|
|
|
3470
3568
|
* via the `definition` "SearchCalloutBlock_select".
|
|
3471
3569
|
*/
|
|
3472
3570
|
export interface SearchCalloutBlockSelect<T extends boolean = true> {
|
|
3571
|
+
blockLayout?: T;
|
|
3473
3572
|
text?: T;
|
|
3573
|
+
descriptiveText?: T;
|
|
3574
|
+
backgroundColor?: T;
|
|
3474
3575
|
buttonText?: T;
|
|
3576
|
+
buttonLink?:
|
|
3577
|
+
| T
|
|
3578
|
+
| {
|
|
3579
|
+
type?: T;
|
|
3580
|
+
newTab?: T;
|
|
3581
|
+
reference?: T;
|
|
3582
|
+
url?: T;
|
|
3583
|
+
label?: T;
|
|
3584
|
+
appearance?: T;
|
|
3585
|
+
};
|
|
3475
3586
|
id?: T;
|
|
3476
3587
|
blockName?: T;
|
|
3477
3588
|
}
|
|
@@ -4666,6 +4777,9 @@ export interface ButtonBlock {
|
|
|
4666
4777
|
| 'secondary'
|
|
4667
4778
|
| 'secondary-light'
|
|
4668
4779
|
| 'outline-secondary'
|
|
4780
|
+
| 'tertiary'
|
|
4781
|
+
| 'tertiary-light'
|
|
4782
|
+
| 'outline-tertiary'
|
|
4669
4783
|
| 'destructive'
|
|
4670
4784
|
| 'link'
|
|
4671
4785
|
| 'white'
|