Files
klz-cables.com/.pnpm-store/v10/files/f0/40677b547b032e3a77ab8965c2343c6b22973e0e96f1793e5385f872d10a1ff7c80d0d5d2d50d746f2eb9a8586998d825ee47dce533b04ae6cc3f56ccf823b
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

33 lines
1.0 KiB
Plaintext

import { DirectusFolder } from "./folder.js";
import { DirectusUser } from "./user.js";
import { MergeCoreCollection } from "../types/schema.js";
//#region src/schema/file.d.ts
type DirectusFile<Schema = any> = MergeCoreCollection<Schema, 'directus_files', {
id: string;
storage: string;
filename_disk: string | null;
filename_download: string;
title: string | null;
type: string | null;
folder: DirectusFolder<Schema> | string | null;
uploaded_by: DirectusUser<Schema> | string | null;
uploaded_on: 'datetime';
modified_by: DirectusUser<Schema> | string | null;
modified_on: 'datetime';
charset: string | null;
filesize: string | null;
width: number | null;
height: number | null;
duration: number | null;
embed: unknown | null;
description: string | null;
location: string | null;
tags: string[] | null;
metadata: Record<string, any> | null;
focal_point_x: number | null;
focal_point_y: number | null;
}>;
//#endregion
export { DirectusFile };
//# sourceMappingURL=file.d.ts.map