Box Node and Trigger (#765)

*  Box Node and Trigger

*  Improvements

*  small fix

* 🐛 Add missing interface

*   add search operation
This commit is contained in:
Ricardo Espinoza
2020-07-25 13:58:38 -04:00
committed by GitHub
parent a5dd08fdbb
commit 8370940713
14 changed files with 1916 additions and 29 deletions

View File

@@ -12,6 +12,11 @@ export interface IBinaryData {
fileExtension?: string;
}
export interface IOAuth2Options {
includeCredentialsOnRefreshOnBody?: boolean;
property?: string;
tokenType?: string;
}
export interface IConnection {
// The node the connection is to
@@ -180,7 +185,6 @@ export interface IExecuteData {
node: INode;
}
export type IContextObject = {
[key: string]: any; // tslint:disable-line:no-any
};