Files
klz-cables.com/.pnpm-store/v10/files/c2/27cea2b37346918906e5c65a8c1c67269dd1e9da4a9dc48fc5ec08d21870b799186828449b500ea928e32492294a046ba85679532519f052c2c6b8d6673758
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

34 lines
940 B
Plaintext

import { MergeCoreCollection } from "../types/schema.cjs";
//#region src/schema/relation.d.ts
type DirectusRelation<Schema = any> = {
collection: string;
field: string;
related_collection: string;
meta: MergeCoreCollection<Schema, 'directus_relations', {
id: number;
junction_field: string | null;
many_collection: string | null;
many_field: string | null;
one_allowed_collections: string | null;
one_collection: string | null;
one_collection_field: string | null;
one_deselect_action: string;
one_field: string | null;
sort_field: string | null;
system: boolean | null;
}>;
schema: {
column: string;
constraint_name: string;
foreign_key_column: string;
foreign_key_schema: string;
foreign_key_table: string;
on_delete: string;
on_update: string;
table: string;
};
};
//#endregion
export { DirectusRelation };
//# sourceMappingURL=relation.d.cts.map