n8n/packages/nodes-base/nodes/Uplead/CompanyDesciption.ts
Ricardo Espinoza 1428895d53 Uplead node
2020-01-28 13:51:49 -05:00

66 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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[];