Files
klz-cables.com/.pnpm-store/v10/files/2a/a7b535394db9e6d3f3a50266c375dbad571a846ca6a8d5001d5ec58572c8c7cc8145bfc02b39d484ce7e350f237468fc4ac0b4e54cb6d75fe8444d748d7ff8
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

22 lines
710 B
Plaintext

import { DirectusUser } from "./user.js";
import { DirectusOperation } from "./operation.js";
import { MergeCoreCollection } from "../types/schema.js";
//#region src/schema/flow.d.ts
type DirectusFlow<Schema = any> = MergeCoreCollection<Schema, 'directus_flows', {
id: string;
name: string;
icon: string | null;
color: string | null;
description: string | null;
status: string;
trigger: string | null;
accountability: string | null;
options: Record<string, any> | null;
operation: DirectusOperation<Schema> | string | null;
date_created: 'datetime' | null;
user_created: DirectusUser<Schema> | string | null;
}>;
//#endregion
export { DirectusFlow };
//# sourceMappingURL=flow.d.ts.map