n8n/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts

992 lines
19 KiB
TypeScript
Raw Normal View History

2020-04-30 05:03:36 -07:00
import {
INodeProperties,
2020-05-06 01:27:01 -07:00
} from 'n8n-workflow';
2020-04-30 05:03:36 -07:00
export const contactOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'contact',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a new contact',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a contact',
},
2020-04-30 05:03:36 -07:00
{
name: 'Get',
value: 'get',
description: 'Get a contact',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all contacts',
},
2020-05-04 06:14:22 -07:00
{
name: 'Update',
value: 'update',
description: 'Update contact properties',
},
2020-04-30 05:03:36 -07:00
],
default: 'get',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const contactFields = [
2020-05-11 11:22:31 -07:00
/* -------------------------------------------------------------------------- */
/* contact:get */
/* -------------------------------------------------------------------------- */
2020-04-30 05:03:36 -07:00
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'get',
],
},
},
default: '',
description: 'Unique identifier for a particular contact',
},
2020-05-11 11:22:31 -07:00
/* -------------------------------------------------------------------------- */
/* contact:get all */
/* -------------------------------------------------------------------------- */
2020-04-30 05:03:36 -07:00
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 20,
2020-04-30 05:03:36 -07:00
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'getAll',
],
returnAll: [
false,
],
2020-04-30 05:03:36 -07:00
},
2020-05-11 11:22:31 -07:00
},
2020-04-30 05:03:36 -07:00
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
2020-04-30 05:03:36 -07:00
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'getAll',
],
},
},
default: false,
description: 'If all results should be returned or only up to a given limit.',
2020-04-30 05:03:36 -07:00
},
2020-05-06 01:27:01 -07:00
/* -------------------------------------------------------------------------- */
/* contact:create */
/* -------------------------------------------------------------------------- */
2020-04-30 05:03:36 -07:00
2020-05-06 01:27:01 -07:00
{
displayName: 'JSON Parameters',
name: 'jsonParameters',
type: 'boolean',
default: false,
description: '',
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'create',
],
},
2020-04-30 05:03:36 -07:00
},
},
2020-05-06 01:27:01 -07:00
{
displayName: ' Additional Fields',
name: 'additionalFieldsJson',
type: 'json',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '',
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'create',
],
jsonParameters: [
true,
],
},
2020-04-30 05:03:36 -07:00
},
2020-05-11 11:22:31 -07:00
2020-05-06 01:27:01 -07:00
description: `Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-contacts---companies-api" target="_blank">here</a>.`,
2020-04-30 05:03:36 -07:00
},
2020-05-06 01:27:01 -07:00
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'create',
],
jsonParameters: [
false,
],
},
2020-04-30 05:03:36 -07:00
},
2020-05-06 01:27:01 -07:00
options: [
{
displayName: 'Address',
name: 'addressOptions',
type: 'fixedCollection',
description: 'Contacts address.',
typeOptions: {
multipleValues: true,
},
2020-05-06 01:27:01 -07:00
options: [
{
displayName: 'Address Properties',
name: 'addressProperties',
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
2020-05-06 01:27:01 -07:00
description: 'Type of address.',
options: [
{
name: 'Home',
2020-05-11 11:22:31 -07:00
value: 'home',
2020-05-06 01:27:01 -07:00
},
{
name: 'Postal',
2020-05-11 11:22:31 -07:00
value: 'postal',
},
2020-05-06 01:27:01 -07:00
{
name: 'Office',
2020-10-22 06:46:03 -07:00
value: 'office',
2020-05-11 11:22:31 -07:00
},
],
2020-05-06 01:27:01 -07:00
},
{
displayName: 'Address',
name: 'address',
type: 'string',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
2020-05-06 01:27:01 -07:00
description: 'Full address.',
2020-05-11 11:22:31 -07:00
},
],
2020-05-06 01:27:01 -07:00
},
2020-05-11 11:22:31 -07:00
],
},
2020-05-06 01:27:01 -07:00
{
displayName: 'Company',
name: 'company',
type: 'string',
2020-05-11 11:22:31 -07:00
default: '',
description: 'Company Name.',
},
{
displayName: 'Email',
name: 'emailOptions',
2020-05-06 01:27:01 -07:00
type: 'fixedCollection',
description: 'Contact email.',
2020-05-06 01:27:01 -07:00
typeOptions: {
multipleValues: true,
},
2020-05-06 01:27:01 -07:00
options: [
{
displayName: 'Email Properties',
name: 'emailProperties',
2020-05-06 01:27:01 -07:00
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
description: 'Type of Email',
2020-05-06 01:27:01 -07:00
options: [
{
name: 'Work',
2020-05-11 11:22:31 -07:00
value: 'work',
2020-05-06 01:27:01 -07:00
},
{
name: 'Personal',
2020-05-11 11:22:31 -07:00
value: 'personal',
},
],
2020-05-06 01:27:01 -07:00
},
{
displayName: 'Email',
name: 'email',
2020-05-06 01:27:01 -07:00
type: 'string',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
description: 'Email',
2020-05-11 11:22:31 -07:00
},
],
2020-05-06 01:27:01 -07:00
},
2020-05-11 11:22:31 -07:00
],
},
2020-05-06 01:27:01 -07:00
{
displayName: 'First Name',
name: 'firstName',
type: 'string',
2020-05-11 11:22:31 -07:00
default: '',
description: 'Contact first name.',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
2020-05-11 11:22:31 -07:00
default: '',
description: 'Contact last name.',
},
{
displayName: 'Lead Score',
name: 'leadScore',
type: 'number',
default: '',
description: 'Lead score of contact',
typeOptions: {
2020-05-11 11:22:31 -07:00
minValue: 0,
},
},
{
displayName: 'Star Value',
name: 'starValue',
type: 'options',
default: '',
description: 'Rating of contact (Max value 5). This is not applicable for companies.',
options: [
{
name: '0',
2020-05-11 11:22:31 -07:00
value: 0,
},
{
name: '1',
2020-05-11 11:22:31 -07:00
value: 1,
},
{
name: '2',
2020-05-11 11:22:31 -07:00
value: 2,
},
{
name: '3',
2020-05-11 11:22:31 -07:00
value: 3,
},
{
name: '4',
2020-05-11 11:22:31 -07:00
value: 4,
},
{
name: '5',
2020-05-11 11:22:31 -07:00
value: 5,
},
2020-05-11 11:22:31 -07:00
],
},
{
displayName: 'Phone',
name: 'phoneOptions',
type: 'fixedCollection',
description: 'Contacts phone.',
2020-05-06 01:27:01 -07:00
typeOptions: {
multipleValues: true,
},
2020-05-06 01:27:01 -07:00
options: [
{
displayName: 'Phone properties',
name: 'phoneProperties',
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
2020-05-06 01:27:01 -07:00
description: 'Type of phone number.',
options: [
{
name: 'Home',
2020-05-11 11:22:31 -07:00
value: 'home',
2020-05-06 01:27:01 -07:00
},
{
2020-05-11 11:22:31 -07:00
name: 'Home Fax',
value: 'homeFax',
2020-05-06 01:27:01 -07:00
},
{
name: 'Main',
2020-05-11 11:22:31 -07:00
value: 'main',
2020-05-06 01:27:01 -07:00
},
{
2020-05-11 11:22:31 -07:00
name: 'Mobile',
value: 'mobile',
},
{
name: 'Other',
value: 'other',
2020-05-06 01:27:01 -07:00
},
{
name: 'Work Fax',
2020-05-11 11:22:31 -07:00
value: 'workFax',
2020-05-06 01:27:01 -07:00
},
{
2020-05-11 11:22:31 -07:00
name: 'Work',
value: 'work',
2020-05-06 01:27:01 -07:00
},
2020-05-11 11:22:31 -07:00
],
2020-05-06 01:27:01 -07:00
},
{
displayName: 'Number',
name: 'number',
type: 'string',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
2020-05-06 01:27:01 -07:00
description: 'Phone number.',
2020-05-11 11:22:31 -07:00
},
],
2020-05-06 01:27:01 -07:00
},
2020-05-11 11:22:31 -07:00
],
},
{
displayName: 'Tags',
name: 'tags',
type: 'string',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add Tag',
},
default: [],
description: 'Unique identifiers added to contact, for easy management of contacts. This is not applicable for companies.',
2020-05-11 11:22:31 -07:00
},
{
displayName: 'Title',
name: 'title',
type: 'string',
2020-05-11 11:22:31 -07:00
default: '',
description: 'Professional title.',
},
{
displayName: 'Website',
name: 'websiteOptions',
type: 'fixedCollection',
description: 'Contacts websites.',
typeOptions: {
multipleValues: true,
},
options: [
{
displayName: 'Website properties.',
name: 'websiteProperties',
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
description: 'Type of website.',
options: [
{
2020-05-11 11:22:31 -07:00
name: 'Facebook',
value: 'facebook',
},
{
2020-05-11 11:22:31 -07:00
name: 'Feed',
value: 'feed',
},
{
2020-05-11 11:22:31 -07:00
name: 'Flickr',
value: 'flickr',
},
{
2020-05-11 11:22:31 -07:00
name: 'Github',
value: 'github',
},
{
2020-05-11 11:22:31 -07:00
name: 'Google Plus',
value: 'googlePlus',
},
{
2020-05-11 11:22:31 -07:00
name: 'LinkedIn',
value: 'linkedin',
},
{
2020-05-11 11:22:31 -07:00
name: 'Skype',
value: 'skype',
},
{
2020-05-11 11:22:31 -07:00
name: 'Twitter',
value: 'twitter',
},
{
2020-05-11 11:22:31 -07:00
name: 'URL',
value: 'url',
},
{
2020-05-11 11:22:31 -07:00
name: 'Xing',
value: 'xing',
},
{
2020-05-11 11:22:31 -07:00
name: 'YouTube',
value: 'youtube',
},
2020-05-11 11:22:31 -07:00
],
},
{
displayName: 'URL',
name: 'url',
type: 'string',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
description: 'Website URL',
2020-05-11 11:22:31 -07:00
},
],
},
2020-05-11 11:22:31 -07:00
],
},
2020-05-06 01:27:01 -07:00
{
displayName: 'Custom Properties',
name: 'customProperties',
type: 'fixedCollection',
description: 'Custom Properties',
typeOptions: {
multipleValues: true,
},
2020-05-06 01:27:01 -07:00
options: [
{
displayName: 'Property',
name: 'customProperty',
values: [
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
2020-05-11 11:22:31 -07:00
default: '',
description: 'Property name.',
2020-05-06 01:27:01 -07:00
},
{
displayName: 'Sub Type',
name: 'subtype',
type: 'string',
2020-05-11 11:22:31 -07:00
default: '',
2020-05-06 01:27:01 -07:00
description: 'Property sub type.',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
2020-05-11 11:22:31 -07:00
default: '',
2020-05-06 01:27:01 -07:00
description: 'Property value.',
2020-05-11 11:22:31 -07:00
},
],
2020-05-06 01:27:01 -07:00
},
2020-05-11 11:22:31 -07:00
],
2020-05-06 01:27:01 -07:00
},
],
},
2020-05-11 11:22:31 -07:00
2020-05-06 01:27:01 -07:00
/* -------------------------------------------------------------------------- */
/* contact:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'delete',
],
},
2020-05-04 06:14:22 -07:00
},
2020-05-06 01:27:01 -07:00
default: '',
2020-05-06 02:58:46 -07:00
description: 'Id of contact to delete.',
2020-05-04 06:14:22 -07:00
},
2020-05-11 11:22:31 -07:00
/* -------------------------------------------------------------------------- */
/* contact:update */
/* -------------------------------------------------------------------------- */
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'update',
],
},
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
default: '',
description: 'Unique identifier for a particular contact',
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
{
displayName: 'JSON Parameters',
name: 'jsonParameters',
type: 'boolean',
default: false,
description: '',
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'update',
],
},
2020-05-05 02:08:30 -07:00
},
},
2020-05-11 11:22:31 -07:00
{
displayName: ' Additional Fields',
name: 'additionalFieldsJson',
type: 'json',
typeOptions: {
alwaysOpenEditWindow: true,
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
default: '',
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'update',
],
jsonParameters: [
true,
],
},
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
description: `Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-contacts---companies-api" target="_blank">here</a>.`,
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'contact',
],
operation: [
'update',
],
jsonParameters: [
false,
],
},
},
2020-05-11 11:22:31 -07:00
options: [
{
displayName: 'Address',
name: 'addressOptions',
type: 'fixedCollection',
description: 'Contacts address.',
typeOptions: {
multipleValues: true,
},
2020-05-11 11:22:31 -07:00
options: [
{
displayName: 'Address Properties',
name: 'addressProperties',
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
default: '',
description: 'Type of address.',
options: [
{
name: 'Home',
2020-10-22 06:46:03 -07:00
value: 'home',
2020-05-11 11:22:31 -07:00
},
{
name: 'Office',
2020-10-22 06:46:03 -07:00
value: 'office',
2020-05-11 11:22:31 -07:00
},
{
name: 'Postal',
2020-10-22 06:46:03 -07:00
value: 'postal',
2020-05-11 11:22:31 -07:00
},
],
},
{
displayName: 'Address',
name: 'address',
type: 'string',
required: true,
default: '',
description: 'Full address.',
},
],
},
],
},
{
displayName: 'Company',
name: 'company',
type: 'string',
default: '',
description: 'Company Name.',
},
{
displayName: 'Email',
name: 'emailOptions',
type: 'fixedCollection',
description: 'Contact email.',
typeOptions: {
multipleValues: true,
},
2020-05-11 11:22:31 -07:00
options: [
{
displayName: 'Email Properties',
name: 'emailProperties',
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
default: '',
description: 'Type of Email',
options: [
{
name: 'Work',
value: 'work',
},
{
name: 'Personal',
value: 'personal',
2020-10-22 06:46:03 -07:00
},
],
2020-05-11 11:22:31 -07:00
},
{
displayName: 'Email',
name: 'email',
type: 'string',
required: true,
default: '',
description: 'Email',
},
],
},
],
},
{
displayName: 'First Name',
name: 'firstName',
type: 'string',
default: '',
description: 'Contact first name.',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
description: 'Contact last name.',
},
{
displayName: 'Lead Score',
name: 'leadScore',
type: 'number',
default: '',
description: 'Lead score of contact',
typeOptions: {
minValue: 0,
2020-10-22 06:46:03 -07:00
},
2020-05-11 11:22:31 -07:00
},
{
displayName: 'Star Value',
name: 'starValue',
type: 'options',
default: '',
description: 'Rating of contact (Max value 5). This is not applicable for companies.',
options: [
{
name: '0',
value: 0,
},
{
name: '1',
value: 1,
},
{
name: '2',
value: 2,
},
{
name: '3',
value: 3,
},
{
name: '4',
value: 4,
},
{
name: '5',
value: 5,
},
],
},
{
displayName: 'Phone',
name: 'phoneOptions',
type: 'fixedCollection',
description: 'Contacts phone.',
typeOptions: {
multipleValues: true,
},
2020-05-11 11:22:31 -07:00
options: [
{
displayName: 'Phone properties',
name: 'phoneProperties',
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
default: '',
description: 'Type of phone number.',
options: [
{
name: 'Home',
value: 'home',
},
{
name: 'Home Fax',
value: 'homeFax',
},
{
name: 'Main',
value: 'main',
},
{
name: 'Mobile',
value: 'mobile',
},
{
name: 'Other',
value: 'other',
},
{
name: 'Work Fax',
value: 'workFax',
},
{
name: 'Work',
value: 'work',
},
],
},
{
displayName: 'Number',
name: 'number',
type: 'string',
required: true,
default: '',
description: 'Phone number.',
},
],
},
],
},
{
displayName: 'Tags',
name: 'tags',
type: 'string',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add Tag',
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
default: [],
description: 'Unique identifiers added to contact, for easy management of contacts. This is not applicable for companies.',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
description: 'Professional title.',
},
{
displayName: 'Website',
name: 'websiteOptions',
type: 'fixedCollection',
description: 'Contacts websites.',
typeOptions: {
multipleValues: true,
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
options: [
{
displayName: 'Website properties.',
name: 'websiteProperties',
values: [
{
displayName: 'Type',
name: 'subtype',
type: 'options',
required: true,
default: '',
description: 'Type of website.',
options: [
{
name: 'Facebook',
value: 'facebook',
},
{
name: 'Feed',
value: 'feed',
},
{
name: 'Flickr',
value: 'flickr',
},
{
name: 'Github',
value: 'github',
},
{
name: 'Google Plus',
value: 'googlePlus',
},
{
name: 'LinkedIn',
value: 'linkedin',
},
{
name: 'Skype',
value: 'skype',
},
{
name: 'Twitter',
value: 'twitter',
},
{
name: 'URL',
value: 'url',
},
{
name: 'Xing',
value: 'xing',
},
{
name: 'YouTube',
value: 'youtube',
},
],
},
{
displayName: 'URL',
name: 'url',
type: 'string',
required: true,
default: '',
description: 'Website URL',
},
],
},
],
},
{
displayName: 'Custom Properties',
name: 'customProperties',
type: 'fixedCollection',
description: 'Custom Properties',
typeOptions: {
multipleValues: true,
2020-05-05 02:08:30 -07:00
},
2020-05-11 11:22:31 -07:00
options: [
{
displayName: 'Property',
name: 'customProperty',
values: [
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
default: '',
2020-10-22 06:46:03 -07:00
description: 'Property name.',
2020-05-11 11:22:31 -07:00
},
{
displayName: 'Sub Type',
name: 'subtype',
type: 'string',
default: '',
description: 'Property sub type.',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Property value.',
},
],
},
],
},
],
},
2020-04-30 05:03:36 -07:00
] as INodeProperties[];