@glidevvr/storage-payload-types-pkg 1.0.221 → 1.0.223

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 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.221",
3
+ "version": "1.0.223",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1709,6 +1709,12 @@ export interface SingleTestimonialBlock {
1709
1709
  */
1710
1710
  export interface MediaBlock {
1711
1711
  mediaType?: ('image' | 'video') | null;
1712
+ imageAlignment?: ('left' | 'center' | 'right') | null;
1713
+ /**
1714
+ * The caption is set in the media upload collection document.
1715
+ */
1716
+ showCaption?: boolean | null;
1717
+ captionAlignment?: ('left' | 'center' | 'right') | null;
1712
1718
  /**
1713
1719
  * Images should have a horizontal aspect ratio and be at least 800x450 pixels.
1714
1720
  */
@@ -2610,6 +2616,9 @@ export interface SingleTestimonialBlockSelect<T extends boolean = true> {
2610
2616
  */
2611
2617
  export interface MediaBlockSelect<T extends boolean = true> {
2612
2618
  mediaType?: T;
2619
+ imageAlignment?: T;
2620
+ showCaption?: T;
2621
+ captionAlignment?: T;
2613
2622
  image?: T;
2614
2623
  video?: T;
2615
2624
  id?: T;