Merge branch 'develop' into fix/transfer-pull

This commit is contained in:
Bassel Kanso 2024-02-23 14:21:28 +02:00 committed by GitHub
commit ae988dd79b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 0 deletions

View File

@ -89,6 +89,7 @@ module.exports = ({ strapi }) => ({
ext,
mime: type,
size: bytesToKbytes(size),
sizeInBytes: size,
};
const { refId, ref, field } = metas;

View File

@ -27,6 +27,7 @@ export interface File {
ext?: string;
mime: string;
size: number;
sizeInBytes: number;
url: string;
previewUrl?: string;
path?: string;

View File

@ -14,6 +14,7 @@ interface File {
ext?: string;
mime: string;
size: number;
sizeInBytes: number;
url: string;
previewUrl?: string;
path?: string;

View File

@ -15,6 +15,7 @@ interface File {
ext?: string;
mime: string;
size: number;
sizeInBytes: number;
url: string;
previewUrl?: string;
path?: string;