2021-08-29 11:58:11 -07:00
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
2019-06-23 03:35:23 -07:00
|
|
|
import {
|
2020-01-13 18:46:58 -08:00
|
|
|
IAllExecuteFunctions,
|
2019-06-23 03:35:23 -07:00
|
|
|
IBinaryData,
|
2021-09-11 01:15:36 -07:00
|
|
|
ICredentialTestFunctions as ICredentialTestFunctionsBase,
|
2019-06-23 03:35:23 -07:00
|
|
|
ICredentialType,
|
|
|
|
IDataObject,
|
|
|
|
IExecuteFunctions as IExecuteFunctionsBase,
|
|
|
|
IExecuteSingleFunctions as IExecuteSingleFunctionsBase,
|
|
|
|
IHookFunctions as IHookFunctionsBase,
|
2021-09-21 10:38:24 -07:00
|
|
|
IHttpRequestOptions,
|
2019-06-23 03:35:23 -07:00
|
|
|
ILoadOptionsFunctions as ILoadOptionsFunctionsBase,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
2020-10-22 06:46:03 -07:00
|
|
|
IOAuth2Options,
|
2019-12-31 12:19:37 -08:00
|
|
|
IPollFunctions as IPollFunctionsBase,
|
|
|
|
IPollResponse,
|
2019-06-23 03:35:23 -07:00
|
|
|
ITriggerFunctions as ITriggerFunctionsBase,
|
2019-12-31 12:19:37 -08:00
|
|
|
ITriggerResponse,
|
2019-06-23 03:35:23 -07:00
|
|
|
IWebhookFunctions as IWebhookFunctionsBase,
|
|
|
|
IWorkflowSettings as IWorkflowSettingsWorkflow,
|
2021-08-29 11:58:11 -07:00
|
|
|
} from 'n8n-workflow';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2020-06-01 17:42:38 -07:00
|
|
|
import { OptionsWithUri, OptionsWithUrl } from 'request';
|
2019-06-23 03:35:23 -07:00
|
|
|
import * as requestPromise from 'request-promise-native';
|
|
|
|
|
|
|
|
interface Constructable<T> {
|
2021-08-29 11:58:11 -07:00
|
|
|
new (): T;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2019-08-08 11:38:25 -07:00
|
|
|
export interface IProcessMessage {
|
2021-08-29 11:58:11 -07:00
|
|
|
data?: any;
|
2019-08-08 11:38:25 -07:00
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
export interface IExecuteFunctions extends IExecuteFunctionsBase {
|
|
|
|
helpers: {
|
2021-09-21 10:38:24 -07:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2021-08-20 09:08:40 -07:00
|
|
|
getBinaryDataBuffer(itemIndex: number, propertyName: string): Promise<Buffer>;
|
2021-09-21 10:38:24 -07:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions,
|
|
|
|
oAuth2Options?: IOAuth2Options,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUrl | requestPromise.RequestPromiseOptions,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
2019-06-23 03:35:23 -07:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecuteSingleFunctions extends IExecuteSingleFunctionsBase {
|
|
|
|
helpers: {
|
2021-09-21 10:38:24 -07:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2021-09-21 10:38:24 -07:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions,
|
|
|
|
oAuth2Options?: IOAuth2Options,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUrl | requestPromise.RequestPromiseOptions,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
2019-12-31 12:19:37 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPollFunctions extends IPollFunctionsBase {
|
|
|
|
helpers: {
|
2021-09-21 10:38:24 -07:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2021-09-21 10:38:24 -07:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions,
|
|
|
|
oAuth2Options?: IOAuth2Options,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUrl | requestPromise.RequestPromiseOptions,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
2019-12-31 12:19:37 -08:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-01-13 18:46:58 -08:00
|
|
|
export interface IResponseError extends Error {
|
|
|
|
statusCode?: number;
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
export interface ITriggerFunctions extends ITriggerFunctionsBase {
|
|
|
|
helpers: {
|
2021-09-21 10:38:24 -07:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2021-09-21 10:38:24 -07:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions,
|
|
|
|
oAuth2Options?: IOAuth2Options,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUrl | requestPromise.RequestPromiseOptions,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
2019-06-23 03:35:23 -07:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-12-31 12:19:37 -08:00
|
|
|
export interface ITriggerTime {
|
|
|
|
mode: string;
|
|
|
|
hour: number;
|
|
|
|
minute: number;
|
|
|
|
dayOfMonth: number;
|
|
|
|
weekeday: number;
|
|
|
|
[key: string]: string | number;
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
export interface IUserSettings {
|
|
|
|
encryptionKey?: string;
|
|
|
|
tunnelSubdomain?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ILoadOptionsFunctions extends ILoadOptionsFunctionsBase {
|
|
|
|
helpers: {
|
2021-09-21 10:38:24 -07:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
request?: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2?: (
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions,
|
|
|
|
oAuth2Options?: IOAuth2Options,
|
|
|
|
) => Promise<any>; // tslint:disable-line:no-any
|
|
|
|
requestOAuth1?(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUrl | requestPromise.RequestPromiseOptions,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-11 01:15:36 -07:00
|
|
|
export interface ICredentialTestFunctions extends ICredentialTestFunctionsBase {
|
|
|
|
helpers: {
|
|
|
|
request: requestPromise.RequestPromiseAPI;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
export interface IHookFunctions extends IHookFunctionsBase {
|
|
|
|
helpers: {
|
2021-09-21 10:38:24 -07:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions,
|
|
|
|
oAuth2Options?: IOAuth2Options,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUrl | requestPromise.RequestPromiseOptions,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IWebhookFunctions extends IWebhookFunctionsBase {
|
|
|
|
helpers: {
|
2021-09-21 10:38:24 -07:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2021-09-21 10:38:24 -07:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>; // tslint:disable-line:no-any
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions,
|
|
|
|
oAuth2Options?: IOAuth2Options,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: OptionsWithUrl | requestPromise.RequestPromiseOptions,
|
|
|
|
): Promise<any>; // tslint:disable-line:no-any
|
2019-06-23 03:35:23 -07:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IWorkflowSettings extends IWorkflowSettingsWorkflow {
|
|
|
|
errorWorkflow?: string;
|
|
|
|
timezone?: string;
|
|
|
|
saveManualRuns?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
// New node definition in file
|
|
|
|
export interface INodeDefinitionFile {
|
|
|
|
[key: string]: Constructable<INodeType | ICredentialType>;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is identical to TaskDataConnections but does not allow null value to be used as input for nodes
|
|
|
|
export interface INodeInputDataConnections {
|
|
|
|
[key: string]: INodeExecutionData[][];
|
|
|
|
}
|
2019-12-31 12:19:37 -08:00
|
|
|
|
|
|
|
export interface IWorkflowData {
|
2020-01-10 11:38:55 -08:00
|
|
|
pollResponses?: IPollResponse[];
|
|
|
|
triggerResponses?: ITriggerResponse[];
|
2019-12-31 12:19:37 -08:00
|
|
|
}
|