mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 22:19:41 -08:00
3ddc176dfa
Github issue / Community forum post (link here to close automatically): based on https://github.com/joffcom/n8n-nodes-form-trigger --------- Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
22 lines
797 B
TypeScript
22 lines
797 B
TypeScript
export const BINARY_ENCODING = 'base64';
|
|
export const WAIT_TIME_UNLIMITED = '3000-01-01T00:00:00.000Z';
|
|
|
|
export const CODE_LANGUAGES = ['javaScript', 'json', 'python'] as const;
|
|
export const CODE_EXECUTION_MODES = ['runOnceForAllItems', 'runOnceForEachItem'] as const;
|
|
|
|
/**
|
|
* Nodes whose parameter values may refer to other nodes without expressions.
|
|
* Their content may need to be updated when the referenced node is renamed.
|
|
*/
|
|
export const NODES_WITH_RENAMABLE_CONTENT = new Set([
|
|
'n8n-nodes-base.code',
|
|
'n8n-nodes-base.function',
|
|
'n8n-nodes-base.functionItem',
|
|
]);
|
|
|
|
// Arbitrary value to represent an empty credential value
|
|
export const CREDENTIAL_EMPTY_VALUE =
|
|
'__n8n_EMPTY_VALUE_7b1af746-3729-4c60-9b9b-e08eb29e58da' as const;
|
|
|
|
export const FORM_TRIGGER_PATH_IDENTIFIER = 'n8n-form';
|