frontend_nyla/src/components/FlowEditor/nodes/shared/constants.ts
2026-04-16 23:13:01 +02:00

22 lines
429 B
TypeScript

/**
* Automation2 Flow Editor - Constants
* Category ordering for node sidebar.
*/
/** Node type IDs hidden from the sidebar (empty = show all registered types) */
export const HIDDEN_NODE_IDS = new Set<string>();
/** Default category display order */
export const CATEGORY_ORDER = [
'trigger',
'input',
'flow',
'data',
'context',
'ai',
'file',
'email',
'sharepoint',
'clickup',
'trustee',
] as const;