mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
616074158c
Revert "feat(core): Fix populating of node custom api call options (#5303)"
This reverts commit e58bc41d24
.
20 lines
890 B
TypeScript
20 lines
890 B
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
export const BINARY_ENCODING = 'base64';
|
|
export const CUSTOM_EXTENSION_ENV = 'N8N_CUSTOM_EXTENSIONS';
|
|
export const DOWNLOADED_NODES_SUBDIRECTORY = 'nodes';
|
|
export const ENCRYPTION_KEY_ENV_OVERWRITE = 'N8N_ENCRYPTION_KEY';
|
|
export const EXTENSIONS_SUBDIRECTORY = 'custom';
|
|
export const USER_FOLDER_ENV_OVERWRITE = 'N8N_USER_FOLDER';
|
|
export const USER_SETTINGS_FILE_NAME = 'config';
|
|
export const USER_SETTINGS_SUBFOLDER = '.n8n';
|
|
export const PLACEHOLDER_EMPTY_EXECUTION_ID = '__UNKNOWN__';
|
|
export const PLACEHOLDER_EMPTY_WORKFLOW_ID = '__EMPTY__';
|
|
export const TUNNEL_SUBDOMAIN_ENV = 'N8N_TUNNEL_SUBDOMAIN';
|
|
export const WAIT_TIME_UNLIMITED = '3000-01-01T00:00:00.000Z';
|
|
|
|
export const RESPONSE_ERROR_MESSAGES = {
|
|
NO_ENCRYPTION_KEY: 'Encryption key is missing or was not set',
|
|
};
|
|
|
|
export const CUSTOM_NODES_CATEGORY = 'Custom Nodes';
|