@glidevvr/storage-payload-types-pkg 1.0.42 → 1.0.43
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 +21 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -272,6 +272,7 @@ export interface Page {
|
|
|
272
272
|
| SearchCalloutBlock
|
|
273
273
|
| StoragResourcesBlock
|
|
274
274
|
| GalleryBlock
|
|
275
|
+
| SizeGuideBlock
|
|
275
276
|
| StorageDefenderBlock
|
|
276
277
|
)[];
|
|
277
278
|
meta?: {
|
|
@@ -540,6 +541,7 @@ export interface Market {
|
|
|
540
541
|
| SearchCalloutBlock
|
|
541
542
|
| StoragResourcesBlock
|
|
542
543
|
| GalleryBlock
|
|
544
|
+
| SizeGuideBlock
|
|
543
545
|
| StorageDefenderBlock
|
|
544
546
|
)[]
|
|
545
547
|
| null;
|
|
@@ -1639,6 +1641,15 @@ export interface GalleryBlock {
|
|
|
1639
1641
|
blockName?: string | null;
|
|
1640
1642
|
blockType: 'galleryBlock';
|
|
1641
1643
|
}
|
|
1644
|
+
/**
|
|
1645
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1646
|
+
* via the `definition` "SizeGuideBlock".
|
|
1647
|
+
*/
|
|
1648
|
+
export interface SizeGuideBlock {
|
|
1649
|
+
id?: string | null;
|
|
1650
|
+
blockName?: string | null;
|
|
1651
|
+
blockType: 'size-guide';
|
|
1652
|
+
}
|
|
1642
1653
|
/**
|
|
1643
1654
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1644
1655
|
* via the `definition` "StorageDefenderBlock".
|
|
@@ -2055,6 +2066,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
2055
2066
|
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
2056
2067
|
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
2057
2068
|
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2069
|
+
'size-guide'?: T | SizeGuideBlockSelect<T>;
|
|
2058
2070
|
'storage-defender'?: T | StorageDefenderBlockSelect<T>;
|
|
2059
2071
|
};
|
|
2060
2072
|
meta?:
|
|
@@ -2340,6 +2352,14 @@ export interface GalleryBlockSelect<T extends boolean = true> {
|
|
|
2340
2352
|
id?: T;
|
|
2341
2353
|
blockName?: T;
|
|
2342
2354
|
}
|
|
2355
|
+
/**
|
|
2356
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2357
|
+
* via the `definition` "SizeGuideBlock_select".
|
|
2358
|
+
*/
|
|
2359
|
+
export interface SizeGuideBlockSelect<T extends boolean = true> {
|
|
2360
|
+
id?: T;
|
|
2361
|
+
blockName?: T;
|
|
2362
|
+
}
|
|
2343
2363
|
/**
|
|
2344
2364
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2345
2365
|
* via the `definition` "StorageDefenderBlock_select".
|
|
@@ -2809,6 +2829,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2809
2829
|
'search-callout'?: T | SearchCalloutBlockSelect<T>;
|
|
2810
2830
|
'storage-resources'?: T | StoragResourcesBlockSelect<T>;
|
|
2811
2831
|
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2832
|
+
'size-guide'?: T | SizeGuideBlockSelect<T>;
|
|
2812
2833
|
'storage-defender'?: T | StorageDefenderBlockSelect<T>;
|
|
2813
2834
|
};
|
|
2814
2835
|
meta?:
|