@glidevvr/storage-payload-types-pkg 1.0.120 → 1.0.122
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 +9 -4
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -1474,8 +1474,12 @@ export interface SingleTestimonialBlock {
|
|
|
1474
1474
|
* via the `definition` "MediaBlock".
|
|
1475
1475
|
*/
|
|
1476
1476
|
export interface MediaBlock {
|
|
1477
|
-
|
|
1478
|
-
|
|
1477
|
+
mediaType?: ('image' | 'video') | null;
|
|
1478
|
+
image?: (string | null) | Media;
|
|
1479
|
+
/**
|
|
1480
|
+
* Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
|
|
1481
|
+
*/
|
|
1482
|
+
video?: string | null;
|
|
1479
1483
|
id?: string | null;
|
|
1480
1484
|
blockName?: string | null;
|
|
1481
1485
|
blockType: 'mediaBlock';
|
|
@@ -2268,8 +2272,9 @@ export interface SingleTestimonialBlockSelect<T extends boolean = true> {
|
|
|
2268
2272
|
* via the `definition` "MediaBlock_select".
|
|
2269
2273
|
*/
|
|
2270
2274
|
export interface MediaBlockSelect<T extends boolean = true> {
|
|
2271
|
-
|
|
2272
|
-
|
|
2275
|
+
mediaType?: T;
|
|
2276
|
+
image?: T;
|
|
2277
|
+
video?: T;
|
|
2273
2278
|
id?: T;
|
|
2274
2279
|
blockName?: T;
|
|
2275
2280
|
}
|