mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-24 04:59:13 +00:00
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
This commit is contained in:
@@ -1,23 +1,8 @@
|
||||
import {
|
||||
IExecuteFunctions,
|
||||
} from 'n8n-core';
|
||||
import {
|
||||
IDataObject,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
import {
|
||||
upleadApiRequest,
|
||||
} from './GenericFunctions';
|
||||
import {
|
||||
companyFields,
|
||||
companyOperations,
|
||||
} from './CompanyDesciption';
|
||||
import {
|
||||
personFields,
|
||||
personOperations,
|
||||
} from './PersonDescription';
|
||||
import { IExecuteFunctions } from 'n8n-core';
|
||||
import { IDataObject, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
||||
import { upleadApiRequest } from './GenericFunctions';
|
||||
import { companyFields, companyOperations } from './CompanyDesciption';
|
||||
import { personFields, personOperations } from './PersonDescription';
|
||||
|
||||
export class Uplead implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
@@ -50,12 +35,14 @@ export class Uplead implements INodeType {
|
||||
{
|
||||
name: 'Company',
|
||||
value: 'company',
|
||||
description: 'Company API lets you lookup company data via a domain name or company name',
|
||||
description:
|
||||
'Company API lets you lookup company data via a domain name or company name',
|
||||
},
|
||||
{
|
||||
name: 'Person',
|
||||
value: 'person',
|
||||
description: 'Person API lets you lookup a person based on an email address OR based on a domain name + first name + last name',
|
||||
description:
|
||||
'Person API lets you lookup a person based on an email address OR based on a domain name + first name + last name',
|
||||
},
|
||||
],
|
||||
default: 'company',
|
||||
|
||||
Reference in New Issue
Block a user