mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
66 lines
1.2 KiB
TypeScript
66 lines
1.2 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
||
|
||
export const companyOperations: INodeProperties[] = [
|
||
{
|
||
displayName: 'Operation',
|
||
name: 'operation',
|
||
type: 'options',
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'company',
|
||
],
|
||
},
|
||
},
|
||
options: [
|
||
{
|
||
name: 'Enrich',
|
||
value: 'enrich',
|
||
},
|
||
],
|
||
default: 'enrich',
|
||
description: 'The operation to perform.',
|
||
},
|
||
];
|
||
|
||
export const companyFields: INodeProperties[] = [
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* company:enrich */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Company',
|
||
name: 'company',
|
||
type: 'string',
|
||
default: '',
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'company',
|
||
],
|
||
operation: [
|
||
'enrich',
|
||
],
|
||
},
|
||
},
|
||
description: 'the name of the company (e.g – amazon)',
|
||
},
|
||
{
|
||
displayName: 'Domain',
|
||
name: 'domain',
|
||
type: 'string',
|
||
default: '',
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'company',
|
||
],
|
||
operation: [
|
||
'enrich',
|
||
],
|
||
},
|
||
},
|
||
description: 'the domain name (e.g – amazon.com)',
|
||
},
|
||
];
|