@glidevvr/storage-payload-types-pkg 1.0.230 → 1.0.232
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 +2 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -836,6 +836,7 @@ export interface Brand {
|
|
|
836
836
|
export interface Media {
|
|
837
837
|
id: string;
|
|
838
838
|
tenant?: (string | null) | Tenant;
|
|
839
|
+
prefix?: string | null;
|
|
839
840
|
/**
|
|
840
841
|
* Check this if this image will be used as a hero image. Hero images can be up to 300KB (preferably under 150KB), while regular images are optimized to 100KB or less. Note: The system generates responsive sizes (thumbnail: 150px, small: 320px, medium: 500px, large: 1024px, hero: 1920px) but will only create sizes smaller than your original image - it will not upscale.
|
|
841
842
|
*/
|
|
@@ -3113,6 +3114,7 @@ export interface CategoriesSelect<T extends boolean = true> {
|
|
|
3113
3114
|
*/
|
|
3114
3115
|
export interface MediaSelect<T extends boolean = true> {
|
|
3115
3116
|
tenant?: T;
|
|
3117
|
+
prefix?: T;
|
|
3116
3118
|
isHeroImage?: T;
|
|
3117
3119
|
alt?: T;
|
|
3118
3120
|
caption?: T;
|