Merge branch 'fix/transfer-pull' of https://github.com/strapi/strapi into fix/transfer-pull

This commit is contained in:
Bassel Kanso 2024-02-26 13:16:42 +02:00
commit 8694c2c798
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;