@glidevvr/storage-payload-types-pkg 1.0.253 → 1.0.254
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 +36 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -278,6 +278,7 @@ export interface Page {
|
|
|
278
278
|
| SearchCalloutBlock
|
|
279
279
|
| StorageResourcesBlock
|
|
280
280
|
| SizeGuideBlock
|
|
281
|
+
| SizeGuidePreviewBlock
|
|
281
282
|
| StorageDefenderBlock
|
|
282
283
|
| MapLocationsAccordion
|
|
283
284
|
)[];
|
|
@@ -600,6 +601,7 @@ export interface Market {
|
|
|
600
601
|
| SearchCalloutBlock
|
|
601
602
|
| StorageResourcesBlock
|
|
602
603
|
| SizeGuideBlock
|
|
604
|
+
| SizeGuidePreviewBlock
|
|
603
605
|
| StorageDefenderBlock
|
|
604
606
|
| MapLocationsAccordion
|
|
605
607
|
)[]
|
|
@@ -1965,6 +1967,27 @@ export interface SizeGuideBlock {
|
|
|
1965
1967
|
blockName?: string | null;
|
|
1966
1968
|
blockType: 'sizeGuide';
|
|
1967
1969
|
}
|
|
1970
|
+
/**
|
|
1971
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1972
|
+
* via the `definition` "SizeGuidePreviewBlock".
|
|
1973
|
+
*/
|
|
1974
|
+
export interface SizeGuidePreviewBlock {
|
|
1975
|
+
/**
|
|
1976
|
+
* Optional heading for the size guide preview
|
|
1977
|
+
*/
|
|
1978
|
+
heading?: string | null;
|
|
1979
|
+
/**
|
|
1980
|
+
* Optional subheading for the size guide preview
|
|
1981
|
+
*/
|
|
1982
|
+
subheading?: string | null;
|
|
1983
|
+
/**
|
|
1984
|
+
* The text for the button that links to the size guide.
|
|
1985
|
+
*/
|
|
1986
|
+
buttonText?: string | null;
|
|
1987
|
+
id?: string | null;
|
|
1988
|
+
blockName?: string | null;
|
|
1989
|
+
blockType: 'sizeGuidePreview';
|
|
1990
|
+
}
|
|
1968
1991
|
/**
|
|
1969
1992
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1970
1993
|
* via the `definition` "StorageDefenderBlock".
|
|
@@ -2534,6 +2557,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
2534
2557
|
searchCallout?: T | SearchCalloutBlockSelect<T>;
|
|
2535
2558
|
storageResources?: T | StorageResourcesBlockSelect<T>;
|
|
2536
2559
|
sizeGuide?: T | SizeGuideBlockSelect<T>;
|
|
2560
|
+
sizeGuidePreview?: T | SizeGuidePreviewBlockSelect<T>;
|
|
2537
2561
|
storageDefender?: T | StorageDefenderBlockSelect<T>;
|
|
2538
2562
|
mapLocationsAccordion?: T | MapLocationsAccordionSelect<T>;
|
|
2539
2563
|
};
|
|
@@ -2841,6 +2865,17 @@ export interface SizeGuideBlockSelect<T extends boolean = true> {
|
|
|
2841
2865
|
id?: T;
|
|
2842
2866
|
blockName?: T;
|
|
2843
2867
|
}
|
|
2868
|
+
/**
|
|
2869
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2870
|
+
* via the `definition` "SizeGuidePreviewBlock_select".
|
|
2871
|
+
*/
|
|
2872
|
+
export interface SizeGuidePreviewBlockSelect<T extends boolean = true> {
|
|
2873
|
+
heading?: T;
|
|
2874
|
+
subheading?: T;
|
|
2875
|
+
buttonText?: T;
|
|
2876
|
+
id?: T;
|
|
2877
|
+
blockName?: T;
|
|
2878
|
+
}
|
|
2844
2879
|
/**
|
|
2845
2880
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2846
2881
|
* via the `definition` "StorageDefenderBlock_select".
|
|
@@ -3098,6 +3133,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
3098
3133
|
searchCallout?: T | SearchCalloutBlockSelect<T>;
|
|
3099
3134
|
storageResources?: T | StorageResourcesBlockSelect<T>;
|
|
3100
3135
|
sizeGuide?: T | SizeGuideBlockSelect<T>;
|
|
3136
|
+
sizeGuidePreview?: T | SizeGuidePreviewBlockSelect<T>;
|
|
3101
3137
|
storageDefender?: T | StorageDefenderBlockSelect<T>;
|
|
3102
3138
|
mapLocationsAccordion?: T | MapLocationsAccordionSelect<T>;
|
|
3103
3139
|
};
|