diff --git a/nodes/FriendGrid/FriendGrid.node.ts b/nodes/FriendGrid/FriendGrid.node.ts index 5959897..d54e906 100644 --- a/nodes/FriendGrid/FriendGrid.node.ts +++ b/nodes/FriendGrid/FriendGrid.node.ts @@ -6,10 +6,10 @@ import { ICredentialsDecrypted, ICredentialTestFunctions, IDataObject, + INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeDescription, - NodeCredentialTestResult, } from 'n8n-workflow'; import { @@ -69,7 +69,7 @@ export class FriendGrid implements INodeType { methods = { credentialTest: { - async testFriendGridApiAuth(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise { + async testFriendGridApiAuth(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise { // https://docs.sendgrid.com/api-reference/users-api/retrieve-your-username const options: OptionsWithUri = { @@ -155,4 +155,4 @@ export class FriendGrid implements INodeType { } return [this.helpers.returnJsonArray(returnData)]; } -} \ No newline at end of file +}