mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -38,7 +38,7 @@ export class Clearbit implements INodeType {
|
||||
{
|
||||
name: 'clearbitApi',
|
||||
required: true,
|
||||
}
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
@@ -55,7 +55,7 @@ export class Clearbit implements INodeType {
|
||||
name: 'Person',
|
||||
value: 'person',
|
||||
description: `The Person API lets you retrieve social information associated with an email address,<br/>
|
||||
such as a person’s name, location and Twitter handle.`
|
||||
such as a person’s name, location and Twitter handle.`,
|
||||
},
|
||||
],
|
||||
default: 'company',
|
||||
|
||||
@@ -18,7 +18,7 @@ export async function clearbitApiRequest(this: IHookFunctions | IExecuteFunction
|
||||
qs,
|
||||
body,
|
||||
uri: uri ||`https://${api}-stream.clearbit.com${resource}`,
|
||||
json: true
|
||||
json: true,
|
||||
};
|
||||
options = Object.assign({}, options, option);
|
||||
if (Object.keys(options.body).length === 0) {
|
||||
|
||||
Reference in New Issue
Block a user