2022-08-17 08:50:24 -07:00
|
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2021-07-02 14:34:12 -07:00
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
currencies,
|
|
|
|
|
mailingAddress,
|
|
|
|
|
makeCustomFieldsFixedCollection,
|
|
|
|
|
makeGetAllFields,
|
|
|
|
|
otherAddress,
|
|
|
|
|
} from './SharedFields';
|
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
|
export const contactOperations: INodeProperties[] = [
|
2021-07-02 14:34:12 -07:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Operation',
|
|
|
|
|
name: 'operation',
|
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
|
noDataExpression: true,
|
2021-07-02 14:34:12 -07:00
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
name: 'Create',
|
|
|
|
|
value: 'create',
|
|
|
|
|
description: 'Create a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Create a contact',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Create or Update',
|
|
|
|
|
value: 'upsert',
|
|
|
|
|
description: 'Create a new record, or update the current one if it already exists (upsert)',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Create or Update a contact',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Delete',
|
|
|
|
|
value: 'delete',
|
|
|
|
|
description: 'Delete a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Delete a contact',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Get',
|
|
|
|
|
value: 'get',
|
|
|
|
|
description: 'Get a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Get a contact',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Get All',
|
|
|
|
|
value: 'getAll',
|
|
|
|
|
description: 'Get all contacts',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Get all contacts',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Update',
|
|
|
|
|
value: 'update',
|
|
|
|
|
description: 'Update a contact',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Update a contact',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
default: 'create',
|
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
|
];
|
2021-07-02 14:34:12 -07:00
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
|
export const contactFields: INodeProperties[] = [
|
2021-07-02 14:34:12 -07:00
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// contact: create
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Last Name',
|
|
|
|
|
name: 'lastName',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['create'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
|
name: 'additionalFields',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
default: {},
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['create'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Assistant',
|
|
|
|
|
name: 'Assistant',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Name of the contact’s assistant',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
makeCustomFieldsFixedCollection('contact'),
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Date of Birth',
|
|
|
|
|
name: 'Date_of_Birth',
|
|
|
|
|
type: 'dateTime',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Department',
|
|
|
|
|
name: 'Department',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Company department to which the contact belongs',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Description',
|
|
|
|
|
name: 'Description',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email (Primary)',
|
|
|
|
|
name: 'Email',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email (Secondary)',
|
|
|
|
|
name: 'Secondary_Email',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Fax',
|
|
|
|
|
name: 'Fax',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'First Name',
|
|
|
|
|
name: 'First_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Full Name',
|
|
|
|
|
name: 'Full_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
mailingAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Mobile',
|
|
|
|
|
name: 'Mobile',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
otherAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone',
|
|
|
|
|
name: 'Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone (Assistant)',
|
|
|
|
|
name: 'Asst_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Phone number of the contact’s assistant',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone (Home)',
|
|
|
|
|
name: 'Home_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone (Other)',
|
|
|
|
|
name: 'Other_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Salutation',
|
|
|
|
|
name: 'Salutation',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Skype ID',
|
|
|
|
|
name: 'Skype_ID',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Title',
|
|
|
|
|
name: 'Title',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Position of the contact at their company',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Twitter',
|
|
|
|
|
name: 'Twitter',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// contact: upsert
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Last Name',
|
|
|
|
|
name: 'lastName',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['upsert'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
|
name: 'additionalFields',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
default: {},
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['upsert'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Assistant',
|
|
|
|
|
name: 'Assistant',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Name of the contact’s assistant',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
makeCustomFieldsFixedCollection('contact'),
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Date of Birth',
|
|
|
|
|
name: 'Date_of_Birth',
|
|
|
|
|
type: 'dateTime',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Department',
|
|
|
|
|
name: 'Department',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Company department to which the contact belongs',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Description',
|
|
|
|
|
name: 'Description',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email (Primary)',
|
|
|
|
|
name: 'Email',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'Email of the contact. If a record with this email exists it will be updated, otherwise a new one will be created.',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email (Secondary)',
|
|
|
|
|
name: 'Secondary_Email',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Fax',
|
|
|
|
|
name: 'Fax',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'First Name',
|
|
|
|
|
name: 'First_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Full Name',
|
|
|
|
|
name: 'Full_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
mailingAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Mobile',
|
|
|
|
|
name: 'Mobile',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
otherAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone',
|
|
|
|
|
name: 'Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone (Assistant)',
|
|
|
|
|
name: 'Asst_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Phone number of the contact’s assistant',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone (Home)',
|
|
|
|
|
name: 'Home_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone (Other)',
|
|
|
|
|
name: 'Other_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Salutation',
|
|
|
|
|
name: 'Salutation',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Skype ID',
|
|
|
|
|
name: 'Skype_ID',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Title',
|
|
|
|
|
name: 'Title',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Position of the contact at their company',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Twitter',
|
|
|
|
|
name: 'Twitter',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// contact: delete
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Contact ID',
|
|
|
|
|
name: 'contactId',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'ID of the contact to delete',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['delete'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// contact: get
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Contact ID',
|
|
|
|
|
name: 'contactId',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'ID of the contact to retrieve',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['get'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// contact: getAll
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
...makeGetAllFields('contact'),
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// contact: update
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Contact ID',
|
|
|
|
|
name: 'contactId',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'ID of the contact to update',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['update'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
|
name: 'updateFields',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
default: {},
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['contact'],
|
|
|
|
|
operation: ['update'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Assistant',
|
|
|
|
|
name: 'Assistant',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Assistant’s Phone',
|
|
|
|
|
name: 'Asst_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Phone number of the contact’s assistant',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Currency',
|
|
|
|
|
name: 'Currency',
|
|
|
|
|
type: 'options',
|
|
|
|
|
default: 'USD',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Symbol of the currency in which revenue is generated',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
options: currencies,
|
|
|
|
|
},
|
|
|
|
|
makeCustomFieldsFixedCollection('contact'),
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Date of Birth',
|
|
|
|
|
name: 'Date_of_Birth',
|
|
|
|
|
type: 'dateTime',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Department',
|
|
|
|
|
name: 'Department',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Description',
|
|
|
|
|
name: 'Description',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email (Primary)',
|
|
|
|
|
name: 'Email',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email (Secondary)',
|
|
|
|
|
name: 'Secondary_Email',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Fax',
|
|
|
|
|
name: 'Fax',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'First Name',
|
|
|
|
|
name: 'First_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Full Name',
|
|
|
|
|
name: 'Full_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Home Phone',
|
|
|
|
|
name: 'Home_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Last Name',
|
|
|
|
|
name: 'Last_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
mailingAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Mobile',
|
|
|
|
|
name: 'Mobile',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
otherAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Other Phone',
|
|
|
|
|
name: 'Other_Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone',
|
|
|
|
|
name: 'Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Salutation',
|
|
|
|
|
name: 'Salutation',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Skype ID',
|
|
|
|
|
name: 'Skype_ID',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Title',
|
|
|
|
|
name: 'Title',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Position of the contact at their company',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Twitter',
|
|
|
|
|
name: 'Twitter',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
|
];
|