22 lines
429 B
TypeScript
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;
|