Files
klz-cables.com/.pnpm-store/v10/files/d4/27e62d83558b18619e571c7a3ad0c9cc76d4f6b3d9495431e02ed5ec3a537ca021237ecb461d1268bd1cbe62ac65abfb15a3467b67571a9557a230adc08dd5
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
938 B
Plaintext

import { MergeCoreCollection } from "../types/schema.js";
//#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.ts.map