@glidevvr/storage-payload-types-pkg 1.0.334 → 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 +84 -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'
|
|
@@ -2301,11 +2307,72 @@ export interface RentalStepsBlock {
|
|
|
2301
2307
|
* via the `definition` "SearchCalloutBlock".
|
|
2302
2308
|
*/
|
|
2303
2309
|
export interface SearchCalloutBlock {
|
|
2310
|
+
/**
|
|
2311
|
+
* Visual layout variant for this Search Callout block.
|
|
2312
|
+
*/
|
|
2313
|
+
blockLayout?: ('layout-1' | 'layout-2') | null;
|
|
2304
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;
|
|
2305
2323
|
/**
|
|
2306
2324
|
* The button will direct the user to the All Locations page selected for the organization.
|
|
2307
2325
|
*/
|
|
2308
|
-
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
|
+
};
|
|
2309
2376
|
id?: string | null;
|
|
2310
2377
|
blockName?: string | null;
|
|
2311
2378
|
blockType: 'searchCallout';
|
|
@@ -3501,8 +3568,21 @@ export interface RentalStepsBlockSelect<T extends boolean = true> {
|
|
|
3501
3568
|
* via the `definition` "SearchCalloutBlock_select".
|
|
3502
3569
|
*/
|
|
3503
3570
|
export interface SearchCalloutBlockSelect<T extends boolean = true> {
|
|
3571
|
+
blockLayout?: T;
|
|
3504
3572
|
text?: T;
|
|
3573
|
+
descriptiveText?: T;
|
|
3574
|
+
backgroundColor?: T;
|
|
3505
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
|
+
};
|
|
3506
3586
|
id?: T;
|
|
3507
3587
|
blockName?: T;
|
|
3508
3588
|
}
|
|
@@ -4697,6 +4777,9 @@ export interface ButtonBlock {
|
|
|
4697
4777
|
| 'secondary'
|
|
4698
4778
|
| 'secondary-light'
|
|
4699
4779
|
| 'outline-secondary'
|
|
4780
|
+
| 'tertiary'
|
|
4781
|
+
| 'tertiary-light'
|
|
4782
|
+
| 'outline-tertiary'
|
|
4700
4783
|
| 'destructive'
|
|
4701
4784
|
| 'link'
|
|
4702
4785
|
| 'white'
|