mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
275 lines
4.4 KiB
TypeScript
275 lines
4.4 KiB
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
import {
|
||
|
addressFixedCollection,
|
||
|
emailFixedCollection,
|
||
|
phoneNumbersFixedCollection,
|
||
|
} from '../utils/sharedFields';
|
||
|
|
||
|
export const leadOperations = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Create',
|
||
|
value: 'create',
|
||
|
},
|
||
|
{
|
||
|
name: 'Delete',
|
||
|
value: 'delete',
|
||
|
},
|
||
|
{
|
||
|
name: 'Get',
|
||
|
value: 'get',
|
||
|
},
|
||
|
{
|
||
|
name: 'Get All',
|
||
|
value: 'getAll',
|
||
|
},
|
||
|
{
|
||
|
name: 'Update',
|
||
|
value: 'update',
|
||
|
},
|
||
|
],
|
||
|
default: 'create',
|
||
|
description: 'Operation to perform',
|
||
|
},
|
||
|
] as INodeProperties[];
|
||
|
|
||
|
export const leadFields = [
|
||
|
// ----------------------------------------
|
||
|
// lead: create
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'Name',
|
||
|
name: 'name',
|
||
|
description: 'Name of the lead to create.',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'create',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Additional Fields',
|
||
|
name: 'additionalFields',
|
||
|
type: 'collection',
|
||
|
default: {},
|
||
|
placeholder: 'Add Field',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'create',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
addressFixedCollection,
|
||
|
emailFixedCollection,
|
||
|
phoneNumbersFixedCollection,
|
||
|
],
|
||
|
},
|
||
|
|
||
|
// ----------------------------------------
|
||
|
// lead: delete
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'Lead ID',
|
||
|
name: 'leadId',
|
||
|
description: 'ID of the lead to delete.',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'delete',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
// ----------------------------------------
|
||
|
// lead: get
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'Lead ID',
|
||
|
name: 'leadId',
|
||
|
description: 'ID of the lead to retrieve.',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
// ----------------------------------------
|
||
|
// lead: getAll
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'Return All',
|
||
|
name: 'returnAll',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
description: 'Return all results.',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'getAll',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Limit',
|
||
|
name: 'limit',
|
||
|
type: 'number',
|
||
|
default: 5,
|
||
|
description: 'The number of results to return.',
|
||
|
typeOptions: {
|
||
|
minValue: 1,
|
||
|
maxValue: 1000,
|
||
|
},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'getAll',
|
||
|
],
|
||
|
returnAll: [
|
||
|
false,
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Filters',
|
||
|
name: 'filterFields',
|
||
|
type: 'collection',
|
||
|
placeholder: 'Add Filter',
|
||
|
default: {},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'getAll',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Country',
|
||
|
name: 'country',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
description: 'Name of the country to filter by.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Name',
|
||
|
name: 'name',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
description: 'Name of the lead to filter by.',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
|
||
|
// ----------------------------------------
|
||
|
// lead: update
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'Lead ID',
|
||
|
name: 'leadId',
|
||
|
description: 'ID of the lead to update.',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'update',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Update Fields',
|
||
|
name: 'updateFields',
|
||
|
type: 'collection',
|
||
|
placeholder: 'Add Field',
|
||
|
default: {},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'lead',
|
||
|
],
|
||
|
operation: [
|
||
|
'update',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
addressFixedCollection,
|
||
|
{
|
||
|
displayName: 'Details',
|
||
|
name: 'details',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
description: 'Description to set for the lead.',
|
||
|
},
|
||
|
emailFixedCollection,
|
||
|
{
|
||
|
displayName: 'Name',
|
||
|
name: 'name',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
description: 'Name to set for the lead.',
|
||
|
},
|
||
|
phoneNumbersFixedCollection,
|
||
|
],
|
||
|
},
|
||
|
] as INodeProperties[];
|