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,
|
|
|
|
ICredentialType,
|
|
|
|
IDataObject,
|
|
|
|
IExecuteFunctions as IExecuteFunctionsBase,
|
|
|
|
IExecuteSingleFunctions as IExecuteSingleFunctionsBase,
|
|
|
|
IHookFunctions as IHookFunctionsBase,
|
|
|
|
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,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
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> {
|
|
|
|
new(): T;
|
|
|
|
}
|
|
|
|
|
2019-08-08 11:38:25 -07:00
|
|
|
export interface IProcessMessage {
|
|
|
|
data?: any; // tslint:disable-line:no-any
|
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
export interface IExecuteFunctions extends IExecuteFunctionsBase {
|
|
|
|
helpers: {
|
|
|
|
prepareBinaryData(binaryData: Buffer, filePath?: string, mimeType?: string): Promise<IBinaryData>;
|
2021-08-20 09:08:40 -07:00
|
|
|
getBinaryDataBuffer(itemIndex: number, propertyName: string): Promise<Buffer>;
|
|
|
|
request: requestPromise.RequestPromiseAPI;
|
|
|
|
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: {
|
|
|
|
prepareBinaryData(binaryData: Buffer, filePath?: string, mimeType?: string): Promise<IBinaryData>;
|
2019-12-31 12:19:37 -08:00
|
|
|
request: requestPromise.RequestPromiseAPI,
|
2020-07-25 10:58:38 -07:00
|
|
|
requestOAuth2(this: IAllExecuteFunctions, credentialsType: string, requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions, oAuth2Options?: IOAuth2Options): Promise<any>, // tslint:disable-line:no-any
|
2020-06-01 17:42:38 -07:00
|
|
|
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: {
|
|
|
|
prepareBinaryData(binaryData: Buffer, filePath?: string, mimeType?: string): Promise<IBinaryData>;
|
|
|
|
request: requestPromise.RequestPromiseAPI,
|
2020-07-25 10:58:38 -07:00
|
|
|
requestOAuth2(this: IAllExecuteFunctions, credentialsType: string, requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions, oAuth2Options?: IOAuth2Options): Promise<any>, // tslint:disable-line:no-any
|
2020-06-01 17:42:38 -07:00
|
|
|
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: {
|
|
|
|
prepareBinaryData(binaryData: Buffer, filePath?: string, mimeType?: string): Promise<IBinaryData>;
|
2019-12-31 12:19:37 -08:00
|
|
|
request: requestPromise.RequestPromiseAPI,
|
2020-07-25 10:58:38 -07:00
|
|
|
requestOAuth2(this: IAllExecuteFunctions, credentialsType: string, requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions, oAuth2Options?: IOAuth2Options): Promise<any>, // tslint:disable-line:no-any
|
2020-06-01 17:42:38 -07:00
|
|
|
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: {
|
2019-12-31 12:19:37 -08:00
|
|
|
request?: requestPromise.RequestPromiseAPI,
|
2020-07-25 10:58:38 -07:00
|
|
|
requestOAuth2?: (this: IAllExecuteFunctions, credentialsType: string, requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions, oAuth2Options?: IOAuth2Options) => Promise<any>, // tslint:disable-line:no-any
|
2020-06-01 17:42:38 -07:00
|
|
|
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 IHookFunctions extends IHookFunctionsBase {
|
|
|
|
helpers: {
|
2019-12-31 12:19:37 -08:00
|
|
|
request: requestPromise.RequestPromiseAPI,
|
2020-07-25 10:58:38 -07:00
|
|
|
requestOAuth2(this: IAllExecuteFunctions, credentialsType: string, requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions, oAuth2Options?: IOAuth2Options): Promise<any>, // tslint:disable-line:no-any
|
2020-06-01 17:42:38 -07:00
|
|
|
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: {
|
|
|
|
prepareBinaryData(binaryData: Buffer, filePath?: string, mimeType?: string): Promise<IBinaryData>;
|
2019-12-31 12:19:37 -08:00
|
|
|
request: requestPromise.RequestPromiseAPI,
|
2020-07-25 10:58:38 -07:00
|
|
|
requestOAuth2(this: IAllExecuteFunctions, credentialsType: string, requestOptions: OptionsWithUri | requestPromise.RequestPromiseOptions, oAuth2Options?: IOAuth2Options): Promise<any>, // tslint:disable-line:no-any
|
2020-06-01 17:42:38 -07:00
|
|
|
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
|
|
|
}
|