2023-01-27 03:22:44 -08:00
|
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2021-07-02 14:34:12 -07:00
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
billingAddress,
|
|
|
|
|
currencies,
|
|
|
|
|
makeCustomFieldsFixedCollection,
|
|
|
|
|
makeGetAllFields,
|
|
|
|
|
shippingAddress,
|
|
|
|
|
} from './SharedFields';
|
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
|
export const accountOperations: 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: ['account'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
name: 'Create',
|
|
|
|
|
value: 'create',
|
|
|
|
|
description: 'Create an account',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Create an account',
|
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 an account',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Delete',
|
|
|
|
|
value: 'delete',
|
|
|
|
|
description: 'Delete an account',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Delete an account',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Get',
|
|
|
|
|
value: 'get',
|
|
|
|
|
description: 'Get an account',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Get an account',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
|
name: 'Get Many',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
|
description: 'Get many accounts',
|
2022-09-08 08:10:13 -07:00
|
|
|
|
action: 'Get many accounts',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Update',
|
|
|
|
|
value: 'update',
|
|
|
|
|
description: 'Update an account',
|
2022-07-10 13:50:51 -07:00
|
|
|
|
action: 'Update an account',
|
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 accountFields: INodeProperties[] = [
|
2021-07-02 14:34:12 -07:00
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// account: create
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account Name',
|
|
|
|
|
name: 'accountName',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['account'],
|
|
|
|
|
operation: ['create'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// account: upsert
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account Name',
|
|
|
|
|
name: 'accountName',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'Name of the account. If a record with this account name exists it will be updated, otherwise a new one will be created.',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['account'],
|
|
|
|
|
operation: ['upsert'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// account: create + upsert
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
|
name: 'additionalFields',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
default: {},
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['account'],
|
|
|
|
|
operation: ['create', 'upsert'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account Number',
|
|
|
|
|
name: 'Account_Number',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account Site',
|
|
|
|
|
name: 'Account_Site',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Name of the account’s location, e.g. Headquarters or London',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
|
displayName: 'Account Type Name or ID',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
name: 'Account_Type',
|
|
|
|
|
type: 'options',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
|
|
|
|
typeOptions: {
|
|
|
|
|
loadOptionsMethod: 'getAccountType',
|
|
|
|
|
},
|
2021-07-02 14:34:12 -07:00
|
|
|
|
default: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Annual Revenue',
|
|
|
|
|
name: 'Annual_Revenue',
|
|
|
|
|
type: 'number',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
billingAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Contact Details',
|
|
|
|
|
name: 'Contact_Details',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
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('account'),
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Description',
|
|
|
|
|
name: 'Description',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Employees',
|
|
|
|
|
name: 'Employees',
|
|
|
|
|
type: 'number',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Number of employees in the account’s company',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Exchange Rate',
|
|
|
|
|
name: 'Exchange_Rate',
|
|
|
|
|
type: 'number',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Exchange rate of the default currency to the home currency',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Fax',
|
|
|
|
|
name: 'Fax',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Industry',
|
|
|
|
|
name: 'Industry',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone',
|
|
|
|
|
name: 'Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
shippingAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Ticker Symbol',
|
|
|
|
|
name: 'Ticker_Symbol',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Website',
|
|
|
|
|
name: 'Website',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// account: delete
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account ID',
|
|
|
|
|
name: 'accountId',
|
|
|
|
|
description: 'ID of the account to delete. Can be found at the end of the URL.',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['account'],
|
|
|
|
|
operation: ['delete'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// account: get
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account ID',
|
|
|
|
|
name: 'accountId',
|
|
|
|
|
description: 'ID of the account to retrieve. Can be found at the end of the URL.',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['account'],
|
|
|
|
|
operation: ['get'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// account: getAll
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
...makeGetAllFields('account'),
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
// account: update
|
|
|
|
|
// ----------------------------------------
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account ID',
|
|
|
|
|
name: 'accountId',
|
|
|
|
|
description: 'ID of the account to update. Can be found at the end of the URL.',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
|
resource: ['account'],
|
|
|
|
|
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: ['account'],
|
|
|
|
|
operation: ['update'],
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account Name',
|
|
|
|
|
name: 'Account_Name',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account Number',
|
|
|
|
|
name: 'Account_Number',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Account Site',
|
|
|
|
|
name: 'Account_Site',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Name of the account’s location, e.g. Headquarters or London',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
|
displayName: 'Account Type Name or ID',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
name: 'Account_Type',
|
|
|
|
|
type: 'options',
|
2022-08-17 08:50:24 -07:00
|
|
|
|
description:
|
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
|
|
|
|
typeOptions: {
|
|
|
|
|
loadOptionsMethod: 'getAccountType',
|
|
|
|
|
},
|
2021-07-02 14:34:12 -07:00
|
|
|
|
default: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Annual Revenue',
|
|
|
|
|
name: 'Annual_Revenue',
|
|
|
|
|
type: 'number',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
billingAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Contact Details',
|
|
|
|
|
name: 'Contact_Details',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
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('account'),
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Description',
|
|
|
|
|
name: 'Description',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Employees',
|
|
|
|
|
name: 'Employees',
|
|
|
|
|
type: 'number',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Number of employees in the account’s company',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Exchange Rate',
|
|
|
|
|
name: 'Exchange_Rate',
|
|
|
|
|
type: 'number',
|
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'Exchange rate of the default currency to the home currency',
|
2021-07-02 14:34:12 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Fax',
|
|
|
|
|
name: 'Fax',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Industry',
|
|
|
|
|
name: 'Industry',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Phone',
|
|
|
|
|
name: 'Phone',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
shippingAddress,
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Ticker Symbol',
|
|
|
|
|
name: 'Ticker_Symbol',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Website',
|
|
|
|
|
name: 'Website',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
|
];
|