mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-27 22:10:26 +02:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
export const STORES = {
|
|
COMMUNITY_NODES: 'communityNodes',
|
|
ROOT: 'root',
|
|
SETTINGS: 'settings',
|
|
UI: 'ui',
|
|
USERS: 'users',
|
|
WORKFLOWS: 'workflows',
|
|
WORKFLOWS_V2: 'workflowsV2',
|
|
WORKFLOWS_EE: 'workflowsEE',
|
|
EXECUTIONS: 'executions',
|
|
NDV: 'ndv',
|
|
TEMPLATES: 'templates',
|
|
NODE_TYPES: 'nodeTypes',
|
|
CREDENTIALS: 'credentials',
|
|
TAGS: 'tags',
|
|
ANNOTATION_TAGS: 'annotationTags',
|
|
VERSIONS: 'versions',
|
|
NODE_CREATOR: 'nodeCreator',
|
|
WEBHOOKS: 'webhooks',
|
|
HISTORY: 'history',
|
|
CLOUD_PLAN: 'cloudPlan',
|
|
RBAC: 'rbac',
|
|
PUSH: 'push',
|
|
COLLABORATION: 'collaboration',
|
|
ASSISTANT: 'assistant',
|
|
BUILDER: 'builder',
|
|
BECOME_TEMPLATE_CREATOR: 'becomeTemplateCreator',
|
|
PROJECTS: 'projects',
|
|
API_KEYS: 'apiKeys',
|
|
EVALUATION: 'evaluation',
|
|
FOLDERS: 'folders',
|
|
MODULES: 'modules',
|
|
FOCUS_PANEL: 'focusPanel',
|
|
AI_TEMPLATES_STARTER_COLLECTION: 'aiTemplatesStarterCollection',
|
|
PERSONALIZED_TEMPLATES: 'personalizedTemplates',
|
|
EXPERIMENT_READY_TO_RUN_WORKFLOWS: 'readyToRunWorkflows',
|
|
EXPERIMENT_TEMPLATE_RECO_V2: 'templateRecoV2',
|
|
} as const;
|