@glidevvr/storage-payload-types-pkg 1.0.296 → 1.0.298
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 +21 -3
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -716,7 +716,7 @@ export interface Page {
|
|
|
716
716
|
blockType: 'singleTestimonial';
|
|
717
717
|
}
|
|
718
718
|
| {
|
|
719
|
-
mediaType?: ('image' | 'video') | null;
|
|
719
|
+
mediaType?: ('image' | 'video' | 'videoUpload') | null;
|
|
720
720
|
imageAlignment?: ('left' | 'center' | 'right') | null;
|
|
721
721
|
/**
|
|
722
722
|
* The caption is set in the media upload collection document.
|
|
@@ -731,6 +731,10 @@ export interface Page {
|
|
|
731
731
|
* Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
|
|
732
732
|
*/
|
|
733
733
|
video?: string | null;
|
|
734
|
+
/**
|
|
735
|
+
* Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
|
|
736
|
+
*/
|
|
737
|
+
videoUpload?: (string | null) | Media;
|
|
734
738
|
id?: string | null;
|
|
735
739
|
blockName?: string | null;
|
|
736
740
|
blockType: 'mediaBlock';
|
|
@@ -1466,7 +1470,7 @@ export interface Market {
|
|
|
1466
1470
|
| HorizontalRuleBlock
|
|
1467
1471
|
| SingleTestimonialBlock
|
|
1468
1472
|
| {
|
|
1469
|
-
mediaType?: ('image' | 'video') | null;
|
|
1473
|
+
mediaType?: ('image' | 'video' | 'videoUpload') | null;
|
|
1470
1474
|
imageAlignment?: ('left' | 'center' | 'right') | null;
|
|
1471
1475
|
/**
|
|
1472
1476
|
* The caption is set in the media upload collection document.
|
|
@@ -1481,6 +1485,10 @@ export interface Market {
|
|
|
1481
1485
|
* Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
|
|
1482
1486
|
*/
|
|
1483
1487
|
video?: string | null;
|
|
1488
|
+
/**
|
|
1489
|
+
* Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
|
|
1490
|
+
*/
|
|
1491
|
+
videoUpload?: (string | null) | Media;
|
|
1484
1492
|
id?: string | null;
|
|
1485
1493
|
blockName?: string | null;
|
|
1486
1494
|
blockType: 'mediaBlock';
|
|
@@ -1591,6 +1599,10 @@ export interface Facility {
|
|
|
1591
1599
|
gallery?: (string | Media)[] | null;
|
|
1592
1600
|
contentTabs?: ContentTabs;
|
|
1593
1601
|
unitTableSettings: {
|
|
1602
|
+
/**
|
|
1603
|
+
* Auto-resolved from the facility/org layout cascade. Do not set manually.
|
|
1604
|
+
*/
|
|
1605
|
+
filterLayout?: ('layout-1' | 'layout-2') | null;
|
|
1594
1606
|
/**
|
|
1595
1607
|
* When enabled, use Cubby for unit table display instead of the standard settings.
|
|
1596
1608
|
*/
|
|
@@ -3996,6 +4008,7 @@ export interface MediaBlockSelect<T extends boolean = true> {
|
|
|
3996
4008
|
captionAlignment?: T;
|
|
3997
4009
|
image?: T;
|
|
3998
4010
|
video?: T;
|
|
4011
|
+
videoUpload?: T;
|
|
3999
4012
|
id?: T;
|
|
4000
4013
|
blockName?: T;
|
|
4001
4014
|
}
|
|
@@ -4211,6 +4224,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
4211
4224
|
unitTableSettings?:
|
|
4212
4225
|
| T
|
|
4213
4226
|
| {
|
|
4227
|
+
filterLayout?: T;
|
|
4214
4228
|
useCubbyUnitTable?: T;
|
|
4215
4229
|
cubbyFacilitySlug?: T;
|
|
4216
4230
|
cubbyUnitLayout?: T;
|
|
@@ -5223,7 +5237,7 @@ export interface GalleryBlock {
|
|
|
5223
5237
|
* via the `definition` "MediaBlock".
|
|
5224
5238
|
*/
|
|
5225
5239
|
export interface MediaBlock {
|
|
5226
|
-
mediaType?: ('image' | 'video') | null;
|
|
5240
|
+
mediaType?: ('image' | 'video' | 'videoUpload') | null;
|
|
5227
5241
|
imageAlignment?: ('left' | 'center' | 'right') | null;
|
|
5228
5242
|
/**
|
|
5229
5243
|
* The caption is set in the media upload collection document.
|
|
@@ -5238,6 +5252,10 @@ export interface MediaBlock {
|
|
|
5238
5252
|
* Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
|
|
5239
5253
|
*/
|
|
5240
5254
|
video?: string | null;
|
|
5255
|
+
/**
|
|
5256
|
+
* Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
|
|
5257
|
+
*/
|
|
5258
|
+
videoUpload?: (string | null) | Media;
|
|
5241
5259
|
id?: string | null;
|
|
5242
5260
|
blockName?: string | null;
|
|
5243
5261
|
blockType: 'mediaBlock';
|