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
22 lines
710 B
Plaintext
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 |