mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 02:07:06 +02:00
Co-authored-by: Yiorgis Gozadinos <yiorgis@n8n.io> Co-authored-by: JP van Oosten <jp@n8n.io> Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com>
34 lines
791 B
TypeScript
34 lines
791 B
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',
|
|
} as const;
|