mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
66 lines
1.2 KiB
TypeScript
66 lines
1.2 KiB
TypeScript
|
import { INodeProperties } from 'n8n-workflow';
|
|||
|
|
|||
|
export const companyOperations = [
|
|||
|
{
|
|||
|
displayName: 'Operation',
|
|||
|
name: 'operation',
|
|||
|
type: 'options',
|
|||
|
displayOptions: {
|
|||
|
show: {
|
|||
|
resource: [
|
|||
|
'company',
|
|||
|
],
|
|||
|
},
|
|||
|
},
|
|||
|
options: [
|
|||
|
{
|
|||
|
name: 'Enrich',
|
|||
|
value: 'enrich',
|
|||
|
},
|
|||
|
],
|
|||
|
default: 'enrich',
|
|||
|
description: 'The operation to perform.',
|
|||
|
},
|
|||
|
] as INodeProperties[];
|
|||
|
|
|||
|
export const companyFields = [
|
|||
|
|
|||
|
/* -------------------------------------------------------------------------- */
|
|||
|
/* 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)',
|
|||
|
},
|
|||
|
] as INodeProperties[];
|