mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-30 08:17:06 +02:00
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
import { cronNodeOptions } from 'n8n-workflow';
|
|
|
|
const { NODE_ENV } = process.env;
|
|
export const inProduction = NODE_ENV === 'production';
|
|
export const inDevelopment = !NODE_ENV || NODE_ENV === 'development';
|
|
|
|
export const CUSTOM_EXTENSION_ENV = 'N8N_CUSTOM_EXTENSIONS';
|
|
export const PLACEHOLDER_EMPTY_EXECUTION_ID = '__UNKNOWN__';
|
|
export const PLACEHOLDER_EMPTY_WORKFLOW_ID = '__EMPTY__';
|
|
export const HTTP_REQUEST_NODE_TYPE = 'n8n-nodes-base.httpRequest';
|
|
export const HTTP_REQUEST_TOOL_NODE_TYPE = '@n8n/n8n-nodes-langchain.toolHttpRequest';
|
|
|
|
export const CUSTOM_NODES_CATEGORY = 'Custom Nodes';
|
|
|
|
export const RESTRICT_FILE_ACCESS_TO = 'N8N_RESTRICT_FILE_ACCESS_TO';
|
|
export const BLOCK_FILE_ACCESS_TO_N8N_FILES = 'N8N_BLOCK_FILE_ACCESS_TO_N8N_FILES';
|
|
export const CONFIG_FILES = 'N8N_CONFIG_FILES';
|
|
export const BINARY_DATA_STORAGE_PATH = 'N8N_BINARY_DATA_STORAGE_PATH';
|
|
export const UM_EMAIL_TEMPLATES_INVITE = 'N8N_UM_EMAIL_TEMPLATES_INVITE';
|
|
export const UM_EMAIL_TEMPLATES_PWRESET = 'N8N_UM_EMAIL_TEMPLATES_PWRESET';
|
|
|
|
export const commonPollingParameters: INodeProperties[] = [
|
|
{
|
|
displayName: 'Poll Times',
|
|
name: 'pollTimes',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
multipleValueButtonText: 'Add Poll Time',
|
|
},
|
|
default: { item: [{ mode: 'everyMinute' }] },
|
|
description: 'Time at which polling should occur',
|
|
placeholder: 'Add Poll Time',
|
|
options: cronNodeOptions,
|
|
},
|
|
];
|
|
|
|
export const commonCORSParameters: INodeProperties[] = [
|
|
{
|
|
displayName: 'Allowed Origins (CORS)',
|
|
name: 'allowedOrigins',
|
|
type: 'string',
|
|
default: '*',
|
|
description:
|
|
'Comma-separated list of URLs allowed for cross-origin non-preflight requests. Use * (default) to allow all origins.',
|
|
},
|
|
];
|