mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 16:57:08 +02:00
23 lines
874 B
TypeScript
23 lines
874 B
TypeScript
import type { DataStoreProxyProvider } from 'n8n-workflow';
|
|
|
|
import type { ExecutionLifecycleHooks } from './execution-lifecycle-hooks';
|
|
import type { ExternalSecretsProxy } from './external-secrets-proxy';
|
|
|
|
declare module 'n8n-workflow' {
|
|
interface IWorkflowExecuteAdditionalData {
|
|
hooks?: ExecutionLifecycleHooks;
|
|
externalSecretsProxy: ExternalSecretsProxy;
|
|
dataStoreProxyProvider?: DataStoreProxyProvider;
|
|
}
|
|
}
|
|
|
|
export * from './active-workflows';
|
|
export * from './interfaces';
|
|
export * from './routing-node';
|
|
export * from './node-execution-context';
|
|
export * from './partial-execution-utils';
|
|
export * from './node-execution-context/utils/execution-metadata';
|
|
export * from './workflow-execute';
|
|
export { ExecutionLifecycleHooks } from './execution-lifecycle-hooks';
|
|
export { ExternalSecretsProxy, type IExternalSecretsManager } from './external-secrets-proxy';
|