Files
klz-cables.com/.pnpm-store/v10/files/4a/9179095982b5ca34446748acc74d32801f1b690eec1dd17a5e6ea939193e87253ebb0c1a39871d2ffccf2e158986a4b63e35f10c50f0c8a698dffeb5538a8f
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

44 lines
1.3 KiB
Plaintext

import { DirectusField } from "./field.cjs";
import { NestedPartial } from "../types/utils.cjs";
import { MergeCoreCollection } from "../types/schema.cjs";
//#region src/schema/collection.d.ts
type DirectusCollection<Schema = any> = {
collection: string;
meta: MergeCoreCollection<Schema, 'directus_collections', {
collection: string;
icon: string | null;
note: string | null;
display_template: string | null;
hidden: boolean;
singleton: boolean;
translations: CollectionMetaTranslationType[] | null;
archive_field: string | null;
archive_app_filter: boolean;
archive_value: string | null;
unarchive_value: string | null;
sort_field: string | null;
accountability: string | null;
color: string | null;
item_duplication_fields: string[] | null;
sort: number | null;
group: string | null;
collapse: string;
preview_url: string | null;
versioning: boolean;
}>;
schema: ({
name: string;
comment: string | null;
} & Record<string, unknown>) | null;
fields?: NestedPartial<DirectusField<Schema>>[];
};
type CollectionMetaTranslationType = {
language: string;
plural: string;
singular: string;
translation: string;
};
//#endregion
export { CollectionMetaTranslationType, DirectusCollection };
//# sourceMappingURL=collection.d.cts.map