@glidevvr/storage-payload-types-pkg 1.0.356 → 1.0.358
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 +119 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -287,6 +287,7 @@ export interface Page {
|
|
|
287
287
|
| GalleryBlock
|
|
288
288
|
| HomeHero
|
|
289
289
|
| MediaOverlayBlock
|
|
290
|
+
| PackingMovingBlock
|
|
290
291
|
| HorizontalRuleBlock
|
|
291
292
|
| SingleTestimonialBlock
|
|
292
293
|
| MediaBlock
|
|
@@ -818,6 +819,7 @@ export interface Market {
|
|
|
818
819
|
| GalleryBlock
|
|
819
820
|
| HomeHero
|
|
820
821
|
| MediaOverlayBlock
|
|
822
|
+
| PackingMovingBlock
|
|
821
823
|
| HorizontalRuleBlock
|
|
822
824
|
| SingleTestimonialBlock
|
|
823
825
|
| MediaBlock
|
|
@@ -2365,6 +2367,62 @@ export interface MediaOverlayBlock {
|
|
|
2365
2367
|
blockName?: string | null;
|
|
2366
2368
|
blockType: 'mediaOverlay';
|
|
2367
2369
|
}
|
|
2370
|
+
/**
|
|
2371
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2372
|
+
* via the `definition` "PackingMovingBlock".
|
|
2373
|
+
*/
|
|
2374
|
+
export interface PackingMovingBlock {
|
|
2375
|
+
heading?: string | null;
|
|
2376
|
+
description?: {
|
|
2377
|
+
root: {
|
|
2378
|
+
type: string;
|
|
2379
|
+
children: {
|
|
2380
|
+
type: any;
|
|
2381
|
+
version: number;
|
|
2382
|
+
[k: string]: unknown;
|
|
2383
|
+
}[];
|
|
2384
|
+
direction: ('ltr' | 'rtl') | null;
|
|
2385
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
2386
|
+
indent: number;
|
|
2387
|
+
version: number;
|
|
2388
|
+
};
|
|
2389
|
+
[k: string]: unknown;
|
|
2390
|
+
} | null;
|
|
2391
|
+
/**
|
|
2392
|
+
* Image displayed alongside the text. Use a horizontal aspect ratio, at least 800x520 pixels.
|
|
2393
|
+
*/
|
|
2394
|
+
image?: (string | null) | Media;
|
|
2395
|
+
buttonLink?: {
|
|
2396
|
+
type?: ('reference' | 'custom') | null;
|
|
2397
|
+
newTab?: boolean | null;
|
|
2398
|
+
reference?:
|
|
2399
|
+
| ({
|
|
2400
|
+
relationTo: 'pages';
|
|
2401
|
+
value: string | Page;
|
|
2402
|
+
} | null)
|
|
2403
|
+
| ({
|
|
2404
|
+
relationTo: 'posts';
|
|
2405
|
+
value: string | Post;
|
|
2406
|
+
} | null)
|
|
2407
|
+
| ({
|
|
2408
|
+
relationTo: 'facilities';
|
|
2409
|
+
value: string | Facility;
|
|
2410
|
+
} | null)
|
|
2411
|
+
| ({
|
|
2412
|
+
relationTo: 'markets';
|
|
2413
|
+
value: string | Market;
|
|
2414
|
+
} | null)
|
|
2415
|
+
| ({
|
|
2416
|
+
relationTo: 'categories';
|
|
2417
|
+
value: string | Category;
|
|
2418
|
+
} | null);
|
|
2419
|
+
url?: string | null;
|
|
2420
|
+
label?: string | null;
|
|
2421
|
+
};
|
|
2422
|
+
id?: string | null;
|
|
2423
|
+
blockName?: string | null;
|
|
2424
|
+
blockType: 'packingMoving';
|
|
2425
|
+
}
|
|
2368
2426
|
/**
|
|
2369
2427
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2370
2428
|
* via the `definition` "HorizontalRuleBlock".
|
|
@@ -3418,6 +3476,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
3418
3476
|
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
3419
3477
|
homeHero?: T | HomeHeroSelect<T>;
|
|
3420
3478
|
mediaOverlay?: T | MediaOverlayBlockSelect<T>;
|
|
3479
|
+
packingMoving?: T | PackingMovingBlockSelect<T>;
|
|
3421
3480
|
horizontalRule?: T | HorizontalRuleBlockSelect<T>;
|
|
3422
3481
|
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
3423
3482
|
mediaBlock?: T | MediaBlockSelect<T>;
|
|
@@ -3675,6 +3734,26 @@ export interface HomeHeroSelect<T extends boolean = true> {
|
|
|
3675
3734
|
id?: T;
|
|
3676
3735
|
blockName?: T;
|
|
3677
3736
|
}
|
|
3737
|
+
/**
|
|
3738
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3739
|
+
* via the `definition` "PackingMovingBlock_select".
|
|
3740
|
+
*/
|
|
3741
|
+
export interface PackingMovingBlockSelect<T extends boolean = true> {
|
|
3742
|
+
heading?: T;
|
|
3743
|
+
description?: T;
|
|
3744
|
+
image?: T;
|
|
3745
|
+
buttonLink?:
|
|
3746
|
+
| T
|
|
3747
|
+
| {
|
|
3748
|
+
type?: T;
|
|
3749
|
+
newTab?: T;
|
|
3750
|
+
reference?: T;
|
|
3751
|
+
url?: T;
|
|
3752
|
+
label?: T;
|
|
3753
|
+
};
|
|
3754
|
+
id?: T;
|
|
3755
|
+
blockName?: T;
|
|
3756
|
+
}
|
|
3678
3757
|
/**
|
|
3679
3758
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3680
3759
|
* via the `definition` "HorizontalRuleBlock_select".
|
|
@@ -4180,6 +4259,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
4180
4259
|
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
4181
4260
|
homeHero?: T | HomeHeroSelect<T>;
|
|
4182
4261
|
mediaOverlay?: T | MediaOverlayBlockSelect<T>;
|
|
4262
|
+
packingMoving?: T | PackingMovingBlockSelect<T>;
|
|
4183
4263
|
horizontalRule?: T | HorizontalRuleBlockSelect<T>;
|
|
4184
4264
|
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
4185
4265
|
mediaBlock?: T | MediaBlockSelect<T>;
|
|
@@ -5101,6 +5181,45 @@ export interface SearchFormBlock {
|
|
|
5101
5181
|
blockName?: string | null;
|
|
5102
5182
|
blockType: 'searchForm';
|
|
5103
5183
|
}
|
|
5184
|
+
/**
|
|
5185
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5186
|
+
* via the `definition` "TableBlock".
|
|
5187
|
+
*/
|
|
5188
|
+
export interface TableBlock {
|
|
5189
|
+
table:
|
|
5190
|
+
| {
|
|
5191
|
+
[k: string]: unknown;
|
|
5192
|
+
}
|
|
5193
|
+
| unknown[]
|
|
5194
|
+
| string
|
|
5195
|
+
| number
|
|
5196
|
+
| boolean
|
|
5197
|
+
| null;
|
|
5198
|
+
/**
|
|
5199
|
+
* Renders the top row as column headers (<th scope="col">).
|
|
5200
|
+
*/
|
|
5201
|
+
firstRowIsHeader?: boolean | null;
|
|
5202
|
+
/**
|
|
5203
|
+
* Renders the left column as row headers (<th scope="row">).
|
|
5204
|
+
*/
|
|
5205
|
+
firstColumnIsHeader?: boolean | null;
|
|
5206
|
+
/**
|
|
5207
|
+
* Table shading color. None = no shading. The header renders as a solid bar in this color.
|
|
5208
|
+
*/
|
|
5209
|
+
rowShading?: ('' | 'primary-light' | 'secondary-light' | 'tertiary-light' | 'neutral-light') | null;
|
|
5210
|
+
/**
|
|
5211
|
+
* How the shading color fills the body: striped alternating rows, or a single solid fill. Only takes effect when a shading color is selected.
|
|
5212
|
+
*/
|
|
5213
|
+
shadingFill?: ('striped' | 'solid') | null;
|
|
5214
|
+
/**
|
|
5215
|
+
* Header row style (when "First row is a header"): a solid brand-color bar, or the same light color as the rows. Requires a shading color.
|
|
5216
|
+
*/
|
|
5217
|
+
headerStyle?: ('bar' | 'match') | null;
|
|
5218
|
+
borders: 'all' | 'outer' | 'inner' | 'rows' | 'columns' | 'none';
|
|
5219
|
+
id?: string | null;
|
|
5220
|
+
blockName?: string | null;
|
|
5221
|
+
blockType: 'table';
|
|
5222
|
+
}
|
|
5104
5223
|
/**
|
|
5105
5224
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
5106
5225
|
* via the `definition` "UnitsTableBlock".
|