2020-01-28 10:51:49 -08:00
|
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
|
export const companyOperations: INodeProperties[] = [
|
2020-01-28 10:51:49 -08:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Operation',
|
|
|
|
|
name: 'operation',
|
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
|
noDataExpression: true,
|
2020-01-28 10:51:49 -08:00
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['company'],
|
2020-01-28 10:51:49 -08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
name: 'Enrich',
|
|
|
|
|
value: 'enrich',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Enrich a company',
|
2020-01-28 10:51:49 -08:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
default: 'enrich',
|
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
|
];
|
2020-01-28 10:51:49 -08:00
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
|
export const companyFields: INodeProperties[] = [
|
2022-08-17 08:50:24 -07:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
/* company:enrich */
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-01-28 10:51:49 -08:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Company',
|
|
|
|
|
name: 'company',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['company'],
|
|
|
|
|
operation: ['enrich'],
|
2020-01-28 10:51:49 -08:00
|
|
|
|
},
|
|
|
|
|
},
|
2022-06-03 10:23:49 -07:00
|
|
|
|
description: 'The name of the company (e.g – amazon)',
|
2020-01-28 10:51:49 -08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Domain',
|
|
|
|
|
name: 'domain',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['company'],
|
|
|
|
|
operation: ['enrich'],
|
2020-01-28 10:51:49 -08:00
|
|
|
|
},
|
|
|
|
|
},
|
2022-06-03 10:23:49 -07:00
|
|
|
|
description: 'The domain name (e.g – amazon.com)',
|
2020-01-28 10:51:49 -08:00
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
|
];
|