@glidevvr/storage-payload-types-pkg 1.0.263 → 1.0.264
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 +35 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -357,6 +357,10 @@ export interface Tenant {
|
|
|
357
357
|
* API key for the Cubby Components.
|
|
358
358
|
*/
|
|
359
359
|
cubbyApiKey?: string | null;
|
|
360
|
+
/**
|
|
361
|
+
* Auto-populated Vimeo folder ID for this tenant. Videos are uploaded to this folder.
|
|
362
|
+
*/
|
|
363
|
+
vimeoFolderId?: string | null;
|
|
360
364
|
/**
|
|
361
365
|
* The domain of the website. Used for SEO/preview purposes.
|
|
362
366
|
*/
|
|
@@ -868,6 +872,26 @@ export interface Media {
|
|
|
868
872
|
};
|
|
869
873
|
[k: string]: unknown;
|
|
870
874
|
} | null;
|
|
875
|
+
/**
|
|
876
|
+
* Vimeo video ID (auto-populated after upload)
|
|
877
|
+
*/
|
|
878
|
+
vimeoId?: string | null;
|
|
879
|
+
/**
|
|
880
|
+
* Full Vimeo video URL
|
|
881
|
+
*/
|
|
882
|
+
vimeoUrl?: string | null;
|
|
883
|
+
/**
|
|
884
|
+
* Vimeo-generated thumbnail URL
|
|
885
|
+
*/
|
|
886
|
+
vimeoThumbnailUrl?: string | null;
|
|
887
|
+
/**
|
|
888
|
+
* Status of Vimeo upload processing
|
|
889
|
+
*/
|
|
890
|
+
vimeoStatus?: ('pending' | 'processing' | 'completed' | 'failed') | null;
|
|
891
|
+
/**
|
|
892
|
+
* Error message from failed Vimeo upload
|
|
893
|
+
*/
|
|
894
|
+
vimeoError?: string | null;
|
|
871
895
|
createdBy?: string | null;
|
|
872
896
|
updatedBy?: string | null;
|
|
873
897
|
updatedAt: string;
|
|
@@ -1774,6 +1798,10 @@ export interface HomeHero {
|
|
|
1774
1798
|
* Images should have a horizontal aspect ratio. Full size images should be at least 1920x960 pixels. Half size images should be at least 1280x731 pixels.
|
|
1775
1799
|
*/
|
|
1776
1800
|
backgroundImage?: (string | null) | Media;
|
|
1801
|
+
/**
|
|
1802
|
+
* Optional video background. Only available for full layout. Video will be hidden on mobile devices. The background image will be used as a fallback while the video loads.
|
|
1803
|
+
*/
|
|
1804
|
+
backgroundVideo?: (string | null) | Media;
|
|
1777
1805
|
layoutMode?: ('half' | 'full') | null;
|
|
1778
1806
|
fullImageContentAlign?: ('center' | 'right' | 'left') | null;
|
|
1779
1807
|
halfImageContentSide?: ('right' | 'left') | null;
|
|
@@ -2777,6 +2805,7 @@ export interface HomeHeroSelect<T extends boolean = true> {
|
|
|
2777
2805
|
title?: T;
|
|
2778
2806
|
subtitle?: T;
|
|
2779
2807
|
backgroundImage?: T;
|
|
2808
|
+
backgroundVideo?: T;
|
|
2780
2809
|
layoutMode?: T;
|
|
2781
2810
|
fullImageContentAlign?: T;
|
|
2782
2811
|
halfImageContentSide?: T;
|
|
@@ -3253,6 +3282,11 @@ export interface MediaSelect<T extends boolean = true> {
|
|
|
3253
3282
|
isHeroImage?: T;
|
|
3254
3283
|
alt?: T;
|
|
3255
3284
|
caption?: T;
|
|
3285
|
+
vimeoId?: T;
|
|
3286
|
+
vimeoUrl?: T;
|
|
3287
|
+
vimeoThumbnailUrl?: T;
|
|
3288
|
+
vimeoStatus?: T;
|
|
3289
|
+
vimeoError?: T;
|
|
3256
3290
|
createdBy?: T;
|
|
3257
3291
|
updatedBy?: T;
|
|
3258
3292
|
updatedAt?: T;
|
|
@@ -3577,6 +3611,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
3577
3611
|
googleApiBrowserKey?: T;
|
|
3578
3612
|
cloudfrontDistributionId?: T;
|
|
3579
3613
|
cubbyApiKey?: T;
|
|
3614
|
+
vimeoFolderId?: T;
|
|
3580
3615
|
domain?: T;
|
|
3581
3616
|
gtmId?: T;
|
|
3582
3617
|
gsc?: T;
|