Files
klz-cables.com/.pnpm-store/v10/files/c4/995a6bbc4c73e58e138988de5e33f0c8491d53968bf42beee41c6efe788e5c0e17488da7cf9b578960e99daa5d9b2f71ecde8f7a1678f175287a91767708ba
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
768 B
Plaintext

import { DirectusUser } from "./user.cjs";
import { DirectusRole } from "./role.cjs";
import { MergeCoreCollection } from "../types/schema.cjs";
//#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.cts.map