/** * 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(); /** Default category display order */ export const CATEGORY_ORDER = [ 'trigger', 'input', 'flow', 'data', 'context', 'ai', 'file', 'email', 'sharepoint', 'clickup', 'trustee', ] as const;