2021-08-29 11:58:11 -07:00
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
2019-06-23 03:35:23 -07:00
|
|
|
import {
|
2022-02-05 13:55:43 -08:00
|
|
|
IAdditionalCredentialOptions,
|
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
|
|
|
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,
|
2020-10-22 06:46:03 -07:00
|
|
|
IOAuth2Options,
|
2022-08-30 08:55:33 -07:00
|
|
|
IPairedItemData,
|
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,
|
2022-08-30 08:55:33 -07:00
|
|
|
NodeExecutionWithMetadata,
|
2021-08-29 11:58:11 -07:00
|
|
|
} from 'n8n-workflow';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-10-21 02:38:56 -07:00
|
|
|
import type { OptionsWithUri, OptionsWithUrl } from 'request';
|
|
|
|
import type { RequestPromiseAPI, RequestPromiseOptions } from 'request-promise-native';
|
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: {
|
2022-11-14 06:37:32 -08:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<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>;
|
2022-09-11 07:42:09 -07:00
|
|
|
setBinaryDataBuffer(data: IBinaryData, binaryData: Buffer): Promise<IBinaryData>;
|
2022-11-14 06:37:32 -08:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
requestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2022-02-05 13:55:43 -08:00
|
|
|
additionalCredentialOptions?: IAdditionalCredentialOptions,
|
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2021-08-29 11:58:11 -07:00
|
|
|
oAuth2Options?: IOAuth2Options,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUrl | RequestPromiseOptions,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2019-06-23 03:35:23 -07:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
2022-03-07 01:37:42 -08:00
|
|
|
normalizeItems(items: INodeExecutionData | INodeExecutionData[]): INodeExecutionData[];
|
2022-02-05 13:55:43 -08:00
|
|
|
httpRequestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<any>;
|
2022-08-30 08:55:33 -07:00
|
|
|
constructExecutionMetaData(
|
|
|
|
inputData: INodeExecutionData[],
|
|
|
|
options: { itemData: IPairedItemData | IPairedItemData[] },
|
|
|
|
): NodeExecutionWithMetadata[];
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IExecuteSingleFunctions extends IExecuteSingleFunctionsBase {
|
|
|
|
helpers: {
|
2022-06-28 09:32:09 -07:00
|
|
|
getBinaryDataBuffer(propertyName: string, inputIndex?: number): Promise<Buffer>;
|
2022-09-11 07:42:09 -07:00
|
|
|
setBinaryDataBuffer(data: IBinaryData, binaryData: Buffer): Promise<IBinaryData>;
|
2022-11-14 06:37:32 -08:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2022-11-14 06:37:32 -08:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
requestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2022-02-05 13:55:43 -08:00
|
|
|
additionalCredentialOptions?: IAdditionalCredentialOptions,
|
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2021-08-29 11:58:11 -07:00
|
|
|
oAuth2Options?: IOAuth2Options,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUrl | RequestPromiseOptions,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
httpRequestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<any>;
|
2019-12-31 12:19:37 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPollFunctions extends IPollFunctionsBase {
|
|
|
|
helpers: {
|
2022-11-14 06:37:32 -08:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2022-11-14 06:37:32 -08:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
requestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2022-02-05 13:55:43 -08:00
|
|
|
additionalCredentialOptions?: IAdditionalCredentialOptions,
|
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2021-08-29 11:58:11 -07:00
|
|
|
oAuth2Options?: IOAuth2Options,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUrl | RequestPromiseOptions,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2019-12-31 12:19:37 -08:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
2022-02-05 13:55:43 -08:00
|
|
|
httpRequestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<any>;
|
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: {
|
2022-11-14 06:37:32 -08:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2022-11-14 06:37:32 -08:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
requestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2022-02-05 13:55:43 -08:00
|
|
|
additionalCredentialOptions?: IAdditionalCredentialOptions,
|
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2021-08-29 11:58:11 -07:00
|
|
|
oAuth2Options?: IOAuth2Options,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUrl | RequestPromiseOptions,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2019-06-23 03:35:23 -07:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
2022-02-05 13:55:43 -08:00
|
|
|
httpRequestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<any>;
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IUserSettings {
|
|
|
|
encryptionKey?: string;
|
|
|
|
tunnelSubdomain?: string;
|
2021-10-18 20:57:49 -07:00
|
|
|
instanceId?: string;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ILoadOptionsFunctions extends ILoadOptionsFunctionsBase {
|
|
|
|
helpers: {
|
2022-11-14 06:37:32 -08:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>;
|
|
|
|
request?: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
requestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2022-02-05 13:55:43 -08:00
|
|
|
additionalCredentialOptions?: IAdditionalCredentialOptions,
|
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2?: (
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2021-08-29 11:58:11 -07:00
|
|
|
oAuth2Options?: IOAuth2Options,
|
2022-11-14 06:37:32 -08:00
|
|
|
) => Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth1?(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUrl | RequestPromiseOptions,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
httpRequestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<any>;
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-11 01:15:36 -07:00
|
|
|
export interface ICredentialTestFunctions extends ICredentialTestFunctionsBase {
|
|
|
|
helpers: {
|
2022-10-21 02:38:56 -07:00
|
|
|
request: RequestPromiseAPI;
|
2021-09-11 01:15:36 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
export interface IHookFunctions extends IHookFunctionsBase {
|
|
|
|
helpers: {
|
2022-11-14 06:37:32 -08:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>;
|
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
requestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2022-02-05 13:55:43 -08:00
|
|
|
additionalCredentialOptions?: IAdditionalCredentialOptions,
|
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2021-08-29 11:58:11 -07:00
|
|
|
oAuth2Options?: IOAuth2Options,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUrl | RequestPromiseOptions,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
httpRequestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<any>;
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IWebhookFunctions extends IWebhookFunctionsBase {
|
|
|
|
helpers: {
|
2022-11-14 06:37:32 -08:00
|
|
|
httpRequest(requestOptions: IHttpRequestOptions): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
prepareBinaryData(
|
|
|
|
binaryData: Buffer,
|
|
|
|
filePath?: string,
|
|
|
|
mimeType?: string,
|
|
|
|
): Promise<IBinaryData>;
|
2022-11-14 06:37:32 -08:00
|
|
|
request: (uriOrObject: string | IDataObject | any, options?: IDataObject) => Promise<any>;
|
2022-02-05 13:55:43 -08:00
|
|
|
requestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2022-02-05 13:55:43 -08:00
|
|
|
additionalCredentialOptions?: IAdditionalCredentialOptions,
|
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth2(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUri | RequestPromiseOptions,
|
2021-08-29 11:58:11 -07:00
|
|
|
oAuth2Options?: IOAuth2Options,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2021-08-29 11:58:11 -07:00
|
|
|
requestOAuth1(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
2022-10-21 02:38:56 -07:00
|
|
|
requestOptions: OptionsWithUrl | RequestPromiseOptions,
|
2022-11-14 06:37:32 -08:00
|
|
|
): Promise<any>;
|
2019-06-23 03:35:23 -07:00
|
|
|
returnJsonArray(jsonData: IDataObject | IDataObject[]): INodeExecutionData[];
|
2022-02-05 13:55:43 -08:00
|
|
|
httpRequestWithAuthentication(
|
|
|
|
this: IAllExecuteFunctions,
|
|
|
|
credentialsType: string,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<any>;
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IWorkflowSettings extends IWorkflowSettingsWorkflow {
|
|
|
|
errorWorkflow?: string;
|
|
|
|
timezone?: string;
|
|
|
|
saveManualRuns?: boolean;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2021-12-23 13:29:04 -08:00
|
|
|
|
|
|
|
export interface IBinaryDataConfig {
|
|
|
|
mode: 'default' | 'filesystem';
|
|
|
|
availableModes: string;
|
|
|
|
localStoragePath: string;
|
|
|
|
binaryDataTTL: number;
|
|
|
|
persistedBinaryDataTTL: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IBinaryDataManager {
|
|
|
|
init(startPurger: boolean): Promise<void>;
|
|
|
|
storeBinaryData(binaryBuffer: Buffer, executionId: string): Promise<string>;
|
|
|
|
retrieveBinaryDataByIdentifier(identifier: string): Promise<Buffer>;
|
|
|
|
markDataForDeletionByExecutionId(executionId: string): Promise<void>;
|
|
|
|
deleteMarkedFiles(): Promise<unknown>;
|
|
|
|
deleteBinaryDataByIdentifier(identifier: string): Promise<void>;
|
|
|
|
duplicateBinaryDataByIdentifier(binaryDataId: string, prefix: string): Promise<string>;
|
|
|
|
deleteBinaryDataByExecutionId(executionId: string): Promise<void>;
|
|
|
|
persistBinaryDataForExecutionId(executionId: string): Promise<void>;
|
|
|
|
}
|
2022-11-23 07:20:28 -08:00
|
|
|
|
|
|
|
export namespace n8n {
|
|
|
|
export interface PackageJson {
|
|
|
|
name: string;
|
|
|
|
version: string;
|
|
|
|
n8n?: {
|
|
|
|
credentials?: string[];
|
|
|
|
nodes?: string[];
|
|
|
|
};
|
|
|
|
author?: {
|
|
|
|
name?: string;
|
|
|
|
email?: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|