2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IConnections,
|
|
|
|
ICredentialsDecrypted,
|
|
|
|
ICredentialsEncrypted,
|
|
|
|
ICredentialType,
|
|
|
|
IDataObject,
|
|
|
|
GenericValue,
|
|
|
|
IWorkflowSettings as IWorkflowSettingsWorkflow,
|
|
|
|
INode,
|
|
|
|
INodeCredentials,
|
|
|
|
INodeIssues,
|
|
|
|
INodePropertyOptions,
|
|
|
|
INodeTypeDescription,
|
|
|
|
IRunExecutionData,
|
|
|
|
IRun,
|
|
|
|
IRunData,
|
|
|
|
ITaskData,
|
|
|
|
WorkflowExecuteMode,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
PaintStyle,
|
|
|
|
} from 'jsplumb';
|
|
|
|
|
|
|
|
declare module 'jsplumb' {
|
|
|
|
interface Anchor {
|
|
|
|
lastReturnValue: number[];
|
|
|
|
}
|
|
|
|
|
|
|
|
interface Connection {
|
|
|
|
// bind(event: string, (connection: Connection): void;): void; // tslint:disable-line:no-any
|
|
|
|
bind(event: string, callback: Function): void; // tslint:disable-line:no-any
|
|
|
|
removeOverlay(name: string): void;
|
2019-06-27 02:27:02 -07:00
|
|
|
removeOverlays(): void;
|
2019-06-23 03:35:23 -07:00
|
|
|
setParameter(name: string, value: any): void; // tslint:disable-line:no-any
|
|
|
|
setPaintStyle(arg0: PaintStyle): void;
|
|
|
|
addOverlay(arg0: any[]): void; // tslint:disable-line:no-any
|
|
|
|
setConnector(arg0: any[]): void; // tslint:disable-line:no-any
|
|
|
|
}
|
|
|
|
|
2019-06-27 02:27:02 -07:00
|
|
|
interface Endpoint {
|
|
|
|
getOverlay(name: string): any; // tslint:disable-line:no-any
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
interface Overlay {
|
|
|
|
setVisible(visible: boolean): void;
|
|
|
|
}
|
2019-08-02 08:06:06 -07:00
|
|
|
|
|
|
|
interface OnConnectionBindInfo {
|
|
|
|
originalSourceEndpoint: Endpoint;
|
|
|
|
originalTargetEndpoint: Endpoint;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// EndpointOptions from jsplumb seems incomplete and wrong so we define an own one
|
|
|
|
export interface IEndpointOptions {
|
|
|
|
anchor?: any; // tslint:disable-line:no-any
|
|
|
|
createEndpoint?: boolean;
|
|
|
|
dragAllowedWhenFull?: boolean;
|
|
|
|
dropOptions?: any; // tslint:disable-line:no-any
|
|
|
|
dragProxy?: any; // tslint:disable-line:no-any
|
|
|
|
endpoint?: string;
|
|
|
|
endpointStyle?: object;
|
|
|
|
isSource?: boolean;
|
|
|
|
isTarget?: boolean;
|
|
|
|
maxConnections?: number;
|
|
|
|
overlays?: any; // tslint:disable-line:no-any
|
|
|
|
parameters?: any; // tslint:disable-line:no-any
|
|
|
|
uuid?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IConnectionsUi {
|
|
|
|
[key: string]: {
|
|
|
|
[key: string]: IEndpointOptions;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IUpdateInformation {
|
|
|
|
name: string;
|
|
|
|
key: string;
|
|
|
|
value: string | number; // with null makes problems in NodeSettings.vue
|
|
|
|
node?: string;
|
|
|
|
oldValue?: string | number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface INodeUpdatePropertiesInformation {
|
|
|
|
name: string; // Node-Name
|
|
|
|
properties: {
|
|
|
|
[key: string]: IDataObject;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export type XYPositon = [number, number];
|
|
|
|
|
|
|
|
export type MessageType = 'success' | 'warning' | 'info' | 'error';
|
|
|
|
|
|
|
|
export interface INodeUi extends INode {
|
|
|
|
position: XYPositon;
|
|
|
|
color?: string;
|
|
|
|
notes?: string;
|
|
|
|
issues?: INodeIssues;
|
|
|
|
_jsPlumb?: {
|
|
|
|
endpoints?: {
|
|
|
|
[key: string]: IEndpointOptions[];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface INodeTypesMaxCount {
|
|
|
|
[key: string]: {
|
|
|
|
exist: number;
|
|
|
|
max: number;
|
|
|
|
nodeNames: string[];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IRestApi {
|
|
|
|
getActiveWorkflows(): Promise<string[]>;
|
|
|
|
getActivationError(id: string): Promise<IActivationError | undefined >;
|
|
|
|
getCurrentExecutions(filter: object): Promise<IExecutionsCurrentSummaryExtended[]>;
|
2019-07-22 11:29:06 -07:00
|
|
|
getPastExecutions(filter: object, limit: number, lastStartedAt?: Date): Promise<IExecutionsListResponse>;
|
2019-06-23 03:35:23 -07:00
|
|
|
stopCurrentExecution(executionId: string): Promise<IExecutionsStopData>;
|
|
|
|
makeRestApiRequest(method: string, endpoint: string, data?: any): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
getSettings(): Promise<IN8nUISettings>;
|
|
|
|
getNodeTypes(): Promise<INodeTypeDescription[]>;
|
|
|
|
getNodeParameterOptions(nodeType: string, methodName: string, credentials?: INodeCredentials): Promise<INodePropertyOptions[]>;
|
|
|
|
removeTestWebhook(workflowId: string): Promise<boolean>;
|
|
|
|
runWorkflow(runData: IStartRunData): Promise<IExecutionPushResponse>;
|
|
|
|
createNewWorkflow(sendData: IWorkflowData): Promise<IWorkflowDb>;
|
|
|
|
updateWorkflow(id: string, data: IWorkflowDataUpdate): Promise<IWorkflowDb>;
|
|
|
|
deleteWorkflow(name: string): Promise<void>;
|
|
|
|
getWorkflow(id: string): Promise<IWorkflowDb>;
|
|
|
|
getWorkflows(filter?: object): Promise<IWorkflowShortResponse[]>;
|
|
|
|
getWorkflowFromUrl(url: string): Promise<IWorkflowDb>;
|
|
|
|
createNewCredentials(sendData: ICredentialsDecrypted): Promise<ICredentialsResponse>;
|
|
|
|
deleteCredentials(id: string): Promise<void>;
|
|
|
|
updateCredentials(id: string, data: ICredentialsDecrypted): Promise<ICredentialsResponse>;
|
|
|
|
getAllCredentials(filter?: object): Promise<ICredentialsResponse[]>;
|
|
|
|
getCredentials(id: string, includeData?: boolean): Promise<ICredentialsDecryptedResponse | ICredentialsResponse | undefined>;
|
|
|
|
getCredentialTypes(): Promise<ICredentialType[]>;
|
|
|
|
getExecution(id: string): Promise<IExecutionResponse>;
|
|
|
|
deleteExecutions(sendData: IExecutionDeleteFilter): Promise<void>;
|
2019-08-08 22:37:10 -07:00
|
|
|
retryExecution(id: string): Promise<boolean>;
|
2019-06-23 03:35:23 -07:00
|
|
|
getTimezones(): Promise<IDataObject>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IBinaryDisplayData {
|
|
|
|
index: number;
|
|
|
|
key: string;
|
|
|
|
node: string;
|
|
|
|
outputIndex: number;
|
|
|
|
runIndex: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IStartRunData {
|
|
|
|
workflowData: IWorkflowData;
|
|
|
|
startNodes?: string[];
|
|
|
|
destinationNode?: string;
|
|
|
|
runData?: IRunData;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IRunDataUi {
|
|
|
|
node?: string;
|
|
|
|
workflowData: IWorkflowData;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ITableData {
|
|
|
|
columns: string[];
|
|
|
|
data: GenericValue[][];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IVariableItemSelected {
|
|
|
|
variable: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IVariableSelectorOption {
|
|
|
|
name: string;
|
|
|
|
key?: string;
|
|
|
|
value?: string;
|
|
|
|
options?: IVariableSelectorOption[] | null;
|
|
|
|
allowParentSelect?: boolean;
|
|
|
|
dataType?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Simple version of n8n-workflow.Workflow
|
|
|
|
export interface IWorkflowData {
|
|
|
|
id?: string;
|
|
|
|
name?: string;
|
|
|
|
active?: boolean;
|
|
|
|
nodes: INode[];
|
|
|
|
connections: IConnections;
|
|
|
|
settings?: IWorkflowSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IWorkflowDataUpdate {
|
|
|
|
name?: string;
|
|
|
|
nodes?: INode[];
|
|
|
|
connections?: IConnections;
|
|
|
|
settings?: IWorkflowSettings;
|
|
|
|
active?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Almost identical to cli.Interfaces.ts
|
|
|
|
export interface IWorkflowDb {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
active: boolean;
|
|
|
|
createdAt: number | string;
|
|
|
|
updatedAt: number | string;
|
|
|
|
nodes: INodeUi[];
|
|
|
|
connections: IConnections;
|
|
|
|
settings?: IWorkflowSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Identical to cli.Interfaces.ts
|
|
|
|
export interface IWorkflowShortResponse {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
active: boolean;
|
|
|
|
createdAt: number | string;
|
|
|
|
updatedAt: number | string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Identical or almost identical to cli.Interfaces.ts
|
|
|
|
|
|
|
|
export interface IActivationError {
|
|
|
|
time: number;
|
|
|
|
error: {
|
|
|
|
message: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ICredentialsResponse extends ICredentialsEncrypted {
|
|
|
|
id?: string;
|
|
|
|
createdAt: number | string;
|
|
|
|
updatedAt: number | string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ICredentialsBase {
|
|
|
|
createdAt: number | string;
|
|
|
|
updatedAt: number | string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ICredentialsDecryptedResponse extends ICredentialsBase, ICredentialsDecrypted{
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionBase {
|
|
|
|
id?: number | string;
|
|
|
|
finished: boolean;
|
|
|
|
mode: WorkflowExecuteMode;
|
|
|
|
retryOf?: string;
|
|
|
|
retrySuccessId?: string;
|
2019-07-22 11:29:06 -07:00
|
|
|
startedAt: Date;
|
|
|
|
stoppedAt?: Date;
|
2019-06-23 03:35:23 -07:00
|
|
|
workflowId?: string; // To be able to filter executions easily //
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionFlatted extends IExecutionBase {
|
|
|
|
data: string;
|
|
|
|
workflowData: IWorkflowDb;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionFlattedResponse extends IExecutionFlatted {
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionPushResponse {
|
|
|
|
executionId?: string;
|
|
|
|
waitingForWebhook?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionResponse extends IExecutionBase {
|
|
|
|
id: string;
|
|
|
|
data: IRunExecutionData;
|
|
|
|
workflowData: IWorkflowDb;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionShortResponse {
|
|
|
|
id: string;
|
|
|
|
workflowData: {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
};
|
|
|
|
mode: WorkflowExecuteMode;
|
|
|
|
finished: boolean;
|
2019-07-22 11:29:06 -07:00
|
|
|
startedAt: Date;
|
|
|
|
stoppedAt: Date;
|
2019-06-23 03:35:23 -07:00
|
|
|
executionTime?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionsListResponse {
|
|
|
|
count: number;
|
|
|
|
results: IExecutionsSummary[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionsCurrentSummaryExtended {
|
2019-07-24 05:25:30 -07:00
|
|
|
id?: string;
|
|
|
|
idActive: string;
|
2019-06-23 03:35:23 -07:00
|
|
|
finished?: boolean;
|
|
|
|
mode: WorkflowExecuteMode;
|
2019-08-08 22:37:10 -07:00
|
|
|
retryOf?: string;
|
|
|
|
retrySuccessId?: string;
|
2019-07-22 11:29:06 -07:00
|
|
|
startedAt: Date;
|
|
|
|
stoppedAt?: Date;
|
2019-06-23 03:35:23 -07:00
|
|
|
workflowId: string;
|
|
|
|
workflowName?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionsStopData {
|
|
|
|
finished?: boolean;
|
|
|
|
mode: WorkflowExecuteMode;
|
2019-07-22 11:29:06 -07:00
|
|
|
startedAt: Date;
|
|
|
|
stoppedAt: Date;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionsSummary {
|
2019-07-24 05:25:30 -07:00
|
|
|
id?: string; // executionIdDb
|
|
|
|
idActive?: string; // executionIdActive
|
2019-06-23 03:35:23 -07:00
|
|
|
mode: WorkflowExecuteMode;
|
|
|
|
finished?: boolean;
|
|
|
|
retryOf?: string;
|
|
|
|
retrySuccessId?: string;
|
2019-07-22 11:29:06 -07:00
|
|
|
startedAt: Date;
|
|
|
|
stoppedAt?: Date;
|
2019-06-23 03:35:23 -07:00
|
|
|
workflowId: string;
|
|
|
|
workflowName?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecutionDeleteFilter {
|
2019-07-22 11:29:06 -07:00
|
|
|
deleteBefore?: Date;
|
2019-06-23 03:35:23 -07:00
|
|
|
filters?: IDataObject;
|
|
|
|
ids?: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPushData {
|
|
|
|
data: IPushDataExecutionFinished | IPushDataNodeExecuteAfter | IPushDataNodeExecuteBefore | IPushDataTestWebhook;
|
|
|
|
type: IPushDataType;
|
|
|
|
}
|
|
|
|
|
2019-07-24 05:25:30 -07:00
|
|
|
export type IPushDataType = 'executionFinished' | 'executionStarted' | 'nodeExecuteAfter' | 'nodeExecuteBefore' | 'testWebhookDeleted' | 'testWebhookReceived';
|
|
|
|
|
|
|
|
export interface IPushDataExecutionStarted {
|
|
|
|
executionId: string;
|
|
|
|
mode: WorkflowExecuteMode;
|
|
|
|
startedAt: Date;
|
|
|
|
retryOf?: string;
|
|
|
|
workflowId: string;
|
|
|
|
workflowName?: string;
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
export interface IPushDataExecutionFinished {
|
|
|
|
data: IRun;
|
2019-07-24 05:25:30 -07:00
|
|
|
executionIdActive: string;
|
|
|
|
executionIdDb?: string;
|
2019-08-08 22:37:10 -07:00
|
|
|
retryOf?: string;
|
2019-07-24 05:25:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPushDataExecutionStarted {
|
2019-06-23 03:35:23 -07:00
|
|
|
executionId: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPushDataNodeExecuteAfter {
|
|
|
|
data: ITaskData;
|
|
|
|
executionId: string;
|
|
|
|
nodeName: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPushDataNodeExecuteBefore {
|
|
|
|
executionId: string;
|
|
|
|
nodeName: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPushDataTestWebhook {
|
2019-07-26 05:17:00 -07:00
|
|
|
executionId: string;
|
2019-06-23 03:35:23 -07:00
|
|
|
workflowId: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IN8nUISettings {
|
|
|
|
endpointWebhook: string;
|
|
|
|
endpointWebhookTest: string;
|
2019-07-10 11:53:13 -07:00
|
|
|
saveDataErrorExecution: string;
|
|
|
|
saveDataSuccessExecution: string;
|
2019-07-10 09:06:26 -07:00
|
|
|
saveManualExecutions: boolean;
|
2019-06-23 03:35:23 -07:00
|
|
|
timezone: string;
|
|
|
|
urlBaseWebhook: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IWorkflowSettings extends IWorkflowSettingsWorkflow {
|
|
|
|
errorWorkflow?: string;
|
2019-07-10 11:53:13 -07:00
|
|
|
saveDataErrorExecution?: string;
|
|
|
|
saveDataSuccessExecution?: string;
|
2019-07-10 09:06:26 -07:00
|
|
|
saveManualExecutions?: boolean;
|
2019-06-23 03:35:23 -07:00
|
|
|
timezone?: string;
|
|
|
|
}
|