@glidevvr/storage-payload-types-pkg 1.0.302 → 1.0.304

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 +14 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.302",
3
+ "version": "1.0.304",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -735,6 +735,10 @@ export interface Page {
735
735
  * Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
736
736
  */
737
737
  videoUpload?: (string | null) | Media;
738
+ /**
739
+ * Show play/pause, volume, and progress controls. When off, the video plays as a silent, looping background.
740
+ */
741
+ showVideoControls?: boolean | null;
738
742
  id?: string | null;
739
743
  blockName?: string | null;
740
744
  blockType: 'mediaBlock';
@@ -1489,6 +1493,10 @@ export interface Market {
1489
1493
  * Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
1490
1494
  */
1491
1495
  videoUpload?: (string | null) | Media;
1496
+ /**
1497
+ * Show play/pause, volume, and progress controls. When off, the video plays as a silent, looping background.
1498
+ */
1499
+ showVideoControls?: boolean | null;
1492
1500
  id?: string | null;
1493
1501
  blockName?: string | null;
1494
1502
  blockType: 'mediaBlock';
@@ -1594,7 +1602,7 @@ export interface Facility {
1594
1602
  featuredFacilityFeatures?: (string | FacilityFeature)[] | null;
1595
1603
  facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
1596
1604
  /**
1597
- * The first image selected is displayed on market pages. For best results, use images with a 16:9 aspect ratio that are at least 1477x831 pixels wide.
1605
+ * The first image in the gallery is used as the facility card thumbnail on market pages. Videos will not be used as thumbnails — ensure at least one image is included. For best results, use images with a 16:9 aspect ratio that are at least 1477x831 pixels wide.
1598
1606
  */
1599
1607
  gallery?: (string | Media)[] | null;
1600
1608
  contentTabs?: ContentTabs;
@@ -4009,6 +4017,7 @@ export interface MediaBlockSelect<T extends boolean = true> {
4009
4017
  image?: T;
4010
4018
  video?: T;
4011
4019
  videoUpload?: T;
4020
+ showVideoControls?: T;
4012
4021
  id?: T;
4013
4022
  blockName?: T;
4014
4023
  }
@@ -5256,6 +5265,10 @@ export interface MediaBlock {
5256
5265
  * Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
5257
5266
  */
5258
5267
  videoUpload?: (string | null) | Media;
5268
+ /**
5269
+ * Show play/pause, volume, and progress controls. When off, the video plays as a silent, looping background.
5270
+ */
5271
+ showVideoControls?: boolean | null;
5259
5272
  id?: string | null;
5260
5273
  blockName?: string | null;
5261
5274
  blockType: 'mediaBlock';