mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
366 lines
8.8 KiB
TypeScript
366 lines
8.8 KiB
TypeScript
|
|
||
|
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;
|
||
|
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
|
||
|
}
|
||
|
|
||
|
interface Overlay {
|
||
|
setVisible(visible: boolean): void;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
// 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[]>;
|
||
|
getPastExecutions(filter: object, limit: number, lastStartedAt?: number): Promise<IExecutionsListResponse>;
|
||
|
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>;
|
||
|
retryExecution(id: string): Promise<IExecutionResponse>;
|
||
|
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;
|
||
|
startedAt: number;
|
||
|
stoppedAt: number;
|
||
|
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;
|
||
|
startedAt: number | string;
|
||
|
stoppedAt: number | string;
|
||
|
executionTime?: number;
|
||
|
}
|
||
|
|
||
|
export interface IExecutionsListResponse {
|
||
|
count: number;
|
||
|
results: IExecutionsSummary[];
|
||
|
}
|
||
|
|
||
|
export interface IExecutionsCurrentSummaryExtended {
|
||
|
id: string;
|
||
|
finished?: boolean;
|
||
|
mode: WorkflowExecuteMode;
|
||
|
startedAt: number | string;
|
||
|
stoppedAt?: number | string;
|
||
|
workflowId: string;
|
||
|
workflowName?: string;
|
||
|
}
|
||
|
|
||
|
export interface IExecutionsStopData {
|
||
|
finished?: boolean;
|
||
|
mode: WorkflowExecuteMode;
|
||
|
startedAt: number | string;
|
||
|
stoppedAt: number | string;
|
||
|
}
|
||
|
|
||
|
export interface IExecutionsSummary {
|
||
|
id: string;
|
||
|
mode: WorkflowExecuteMode;
|
||
|
finished?: boolean;
|
||
|
retryOf?: string;
|
||
|
retrySuccessId?: string;
|
||
|
startedAt: number | string;
|
||
|
stoppedAt?: number | string;
|
||
|
workflowId: string;
|
||
|
workflowName?: string;
|
||
|
}
|
||
|
|
||
|
export interface IExecutionDeleteFilter {
|
||
|
deleteBefore?: number;
|
||
|
filters?: IDataObject;
|
||
|
ids?: string[];
|
||
|
}
|
||
|
|
||
|
export interface IPushData {
|
||
|
data: IPushDataExecutionFinished | IPushDataNodeExecuteAfter | IPushDataNodeExecuteBefore | IPushDataTestWebhook;
|
||
|
type: IPushDataType;
|
||
|
}
|
||
|
|
||
|
export type IPushDataType = 'executionFinished' | 'nodeExecuteAfter' | 'nodeExecuteBefore' | 'testWebhookDeleted' | 'testWebhookReceived';
|
||
|
|
||
|
export interface IPushDataExecutionFinished {
|
||
|
data: IRun;
|
||
|
executionId: string;
|
||
|
}
|
||
|
|
||
|
export interface IPushDataNodeExecuteAfter {
|
||
|
data: ITaskData;
|
||
|
executionId: string;
|
||
|
nodeName: string;
|
||
|
}
|
||
|
|
||
|
export interface IPushDataNodeExecuteBefore {
|
||
|
executionId: string;
|
||
|
nodeName: string;
|
||
|
}
|
||
|
|
||
|
export interface IPushDataTestWebhook {
|
||
|
workflowId: string;
|
||
|
}
|
||
|
|
||
|
export interface IN8nUISettings {
|
||
|
endpointWebhook: string;
|
||
|
endpointWebhookTest: string;
|
||
|
saveManualRuns: boolean;
|
||
|
timezone: string;
|
||
|
urlBaseWebhook: string;
|
||
|
}
|
||
|
|
||
|
export interface IWorkflowSettings extends IWorkflowSettingsWorkflow {
|
||
|
errorWorkflow?: string;
|
||
|
saveManualRuns?: boolean;
|
||
|
timezone?: string;
|
||
|
}
|