Files
klz-cables.com/.pnpm-store/v10/files/54/c598f7cc26d9d7996fd3f924a3200cd488874c1caa130456c9d3290e88dbd8f28c4b1ec05eaa96c01edce00db63ef20efe64ac37066e0a69c984771d6f7d16
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

23 lines
764 B
Plaintext

import { DirectusUser } from "./user.js";
import { DirectusRole } from "./role.js";
import { MergeCoreCollection } from "../types/schema.js";
//#region src/schema/preset.d.ts
type DirectusPreset<Schema = any> = MergeCoreCollection<Schema, 'directus_presets', {
id: number;
bookmark: string | null;
user: DirectusUser<Schema> | string | null;
role: DirectusRole<Schema> | string | null;
collection: string | null;
search: string | null;
layout: string | null;
layout_query: Record<string, any> | null;
layout_options: Record<string, any> | null;
refresh_interval: number | null;
filter: Record<string, any> | null;
icon: string | null;
color: string | null;
}>;
//#endregion
export { DirectusPreset };
//# sourceMappingURL=preset.d.ts.map