@glidevvr/storage-payload-types-pkg 1.0.120 → 1.0.121

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +9 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.120",
3
+ "version": "1.0.121",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
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
- position?: ('default' | 'fullscreen') | null;
1478
- media?: (string | null) | Media;
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
- position?: T;
2272
- media?: T;
2275
+ mediaType?: T;
2276
+ image?: T;
2277
+ video?: T;
2273
2278
  id?: T;
2274
2279
  blockName?: T;
2275
2280
  }