mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 17:44:09 -08:00
1e42effc3a
* introduce binary data management
* merge fixes
* fixes
* init binary data manager for other modes
* improve binary manager
* improve binary manager
* delete binary data on executions delete
* lazy delete non-saved executions binary data
* merge fixes + error handing
* improve structure
* leftovers and cleanups
* formatting
* fix config description
* fixes
* fix races
* duplicate binary data for execute workflow node
* clean up and cr
* update mode name, add binary mode to diagnostics
* update mode name, add prefix to filename
* update filename
* allow multiple modes, backward compatibility
* improve file and id naming
* use execution id for binary data storage
* delete binary data by execution id
* add meta for persisted binary data
* delete marked persisted files
* mark deletion by executionid
* add env var for persisted binary data ttl
* improvements
* lint fix
* fix env var description
* cleanup
* cleanup
* ⚡ Minor improvements
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
21 lines
812 B
TypeScript
21 lines
812 B
TypeScript
/* eslint-disable import/no-cycle */
|
|
import * as NodeExecuteFunctions from './NodeExecuteFunctions';
|
|
import * as UserSettings from './UserSettings';
|
|
|
|
try {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, import/no-extraneous-dependencies, global-require, @typescript-eslint/no-var-requires
|
|
require('source-map-support').install();
|
|
// eslint-disable-next-line no-empty
|
|
} catch (error) {}
|
|
|
|
export * from './ActiveWorkflows';
|
|
export * from './ActiveWebhooks';
|
|
export * from './BinaryDataManager';
|
|
export * from './Constants';
|
|
export * from './Credentials';
|
|
export * from './Interfaces';
|
|
export * from './LoadNodeParameterOptions';
|
|
export * from './NodeExecuteFunctions';
|
|
export * from './WorkflowExecute';
|
|
export { NodeExecuteFunctions, UserSettings };
|