From 7dacdf119a904382b1cf223b2e19ab8e60f0104d Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Sun, 3 Apr 2022 09:48:09 +0200 Subject: [PATCH] :shirt: Fix lint issue --- .../credentials/ServiceNowBasicApi.credentials.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/nodes-base/credentials/ServiceNowBasicApi.credentials.ts b/packages/nodes-base/credentials/ServiceNowBasicApi.credentials.ts index b55cbb7e7..f5cdd04d5 100644 --- a/packages/nodes-base/credentials/ServiceNowBasicApi.credentials.ts +++ b/packages/nodes-base/credentials/ServiceNowBasicApi.credentials.ts @@ -1,14 +1,14 @@ import { IAuthenticateBasicAuth, + ICredentialTestRequest, ICredentialType, INodeProperties, - ICredentialTestRequest, } from 'n8n-workflow'; export class ServiceNowBasicApi implements ICredentialType { name = 'serviceNowBasicApi'; extends = [ - 'httpBasicAuth' + 'httpBasicAuth', ]; displayName = 'ServiceNow Basic Auth API'; documentationUrl = 'serviceNow'; @@ -30,6 +30,6 @@ export class ServiceNowBasicApi implements ICredentialType { request: { baseURL: '=https://{{$credentials?.subdomain}}.service-now.com', url: '/api/now/table/sys_user_role', - } - } + }, + }; }