@glidevvr/storage-payload-types-pkg 1.0.321 → 1.0.322
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 +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -2463,6 +2463,10 @@ export interface SizeGuidePreviewBlock {
|
|
|
2463
2463
|
* The text for the button that links to the size guide.
|
|
2464
2464
|
*/
|
|
2465
2465
|
buttonText?: string | null;
|
|
2466
|
+
/**
|
|
2467
|
+
* Choose whether each unit category renders its image or its video. If a category has no video, it falls back to its image.
|
|
2468
|
+
*/
|
|
2469
|
+
mediaType?: ('image' | 'video') | null;
|
|
2466
2470
|
id?: string | null;
|
|
2467
2471
|
blockName?: string | null;
|
|
2468
2472
|
blockType: 'sizeGuidePreview';
|
|
@@ -3513,6 +3517,7 @@ export interface SizeGuidePreviewBlockSelect<T extends boolean = true> {
|
|
|
3513
3517
|
heading?: T;
|
|
3514
3518
|
subheading?: T;
|
|
3515
3519
|
buttonText?: T;
|
|
3520
|
+
mediaType?: T;
|
|
3516
3521
|
id?: T;
|
|
3517
3522
|
blockName?: T;
|
|
3518
3523
|
}
|