* add typedi * convert ActiveWorkflowRunner into an injectable service * convert ExternalHooks into an injectable service * convert InternalHooks into an injectable service * convert LoadNodesAndCredentials into an injectable service * convert NodeTypes and CredentialTypes into an injectable service * convert ActiveExecutions into an injectable service * convert WaitTracker into an injectable service * convert Push into an injectable service * convert ActiveWebhooks and TestWebhooks into an injectable services * handle circular references, and log errors when a circular dependency is found
34 lines
1002 B
TypeScript
34 lines
1002 B
TypeScript
/* eslint-disable import/first */
|
|
export * from './CredentialsHelper';
|
|
export * from './CredentialTypes';
|
|
export * from './CredentialsOverwrites';
|
|
export * from './Interfaces';
|
|
export * from './NodeTypes';
|
|
export * from './WaitingWebhooks';
|
|
export * from './WorkflowCredentials';
|
|
export * from './WorkflowRunner';
|
|
|
|
import { ActiveExecutions } from './ActiveExecutions';
|
|
import * as Db from './Db';
|
|
import * as GenericHelpers from './GenericHelpers';
|
|
import * as ResponseHelper from './ResponseHelper';
|
|
import * as Server from './Server';
|
|
import * as TestWebhooks from './TestWebhooks';
|
|
import * as WebhookHelpers from './WebhookHelpers';
|
|
import * as WebhookServer from './WebhookServer';
|
|
import * as WorkflowExecuteAdditionalData from './WorkflowExecuteAdditionalData';
|
|
import * as WorkflowHelpers from './WorkflowHelpers';
|
|
|
|
export {
|
|
ActiveExecutions,
|
|
Db,
|
|
GenericHelpers,
|
|
ResponseHelper,
|
|
Server,
|
|
TestWebhooks,
|
|
WebhookHelpers,
|
|
WebhookServer,
|
|
WorkflowExecuteAdditionalData,
|
|
WorkflowHelpers,
|
|
};
|