Minor improvements to Clearbit-Node

This commit is contained in:
Jan Oberhauser
2020-01-29 21:49:04 -08:00
parent 5784df637d
commit cb6a1924d2
5 changed files with 49 additions and 58 deletions

View File

@@ -65,18 +65,25 @@ export const personFields = [
},
options: [
{
displayName: 'Webhook URL',
name: 'webhookUrl',
displayName: 'Company',
name: 'company',
type: 'string',
default: '',
description: 'A webhook URL that results will be sent to.',
description: 'The name of the persons employer.',
},
{
displayName: 'Given Name',
name: 'givenName',
displayName: 'Company Domain',
name: 'companyDomain',
type: 'string',
default: '',
description: 'First name of person.',
description: 'The domain for the persons employer.',
},
{
displayName: 'Facebook',
name: 'facebook',
type: 'string',
default: '',
description: 'The Facebook URL for the person.',
},
{
displayName: 'Family Name',
@@ -85,6 +92,13 @@ export const personFields = [
default: '',
description: 'Last name of person. If you have this, passing this is strongly recommended to improve match rates.',
},
{
displayName: 'Given Name',
name: 'givenName',
type: 'string',
default: '',
description: 'First name of person.',
},
{
displayName: 'IP Address',
name: 'ipAddress',
@@ -100,22 +114,8 @@ export const personFields = [
description: 'The city or country where the person resides.',
},
{
displayName: 'Company',
name: 'company',
type: 'string',
default: '',
description: 'The name of the persons employer.',
},
{
displayName: 'Company Domain',
name: 'companyDomain',
type: 'string',
default: '',
description: 'The domain for the persons employer.',
},
{
displayName: 'Linkedin',
name: 'linkedin',
displayName: 'LinkedIn',
name: 'linkedIn',
type: 'string',
default: '',
description: 'The LinkedIn URL for the person.',
@@ -127,13 +127,6 @@ export const personFields = [
default: '',
description: 'The Twitter handle for the person.',
},
{
displayName: 'Facebook',
name: 'facebook',
type: 'string',
default: '',
description: 'The Facebook URL for the person.',
},
],
},
] as INodeProperties[];