mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 00:24:07 -08:00
5f76a5dc72
* ⚡ Initial refactor of Zoho node
* ⚡ Refactor out extra credentials parameter
* 🔥 Remove unused filters
* ⚡ Fix date of birth fields
* ⚡ Fix param casing
* ⚡ Adjust param types
* ⚡ Adjust invoice operations
* ⚡ Refactor types in adjusters
* ⚡ Add product resource
* ⚡ Refactor product details field
* ⚡ Adjust purchase order params
* ⚡ Adjust quote params
* ⚡ Adjust sales orders params
* 🔥 Remove old unused files
* ⚡ Add vendor resource
* ⚡ Fix minor details
* ⚡ Implement continueOnFail
* 🐛 Fix empty response for getAll
* ⚡ Simplify response for single item
* 🔥 Remove unused import
* 🔨 Restore old node name
* ⚡ Prevent request on empty update
* ⚡ Apply Dali's suggestions
* ⚡ Improvements
* ⚡ Add filters for lead:getAll
* ⚡ Add upsert to all resources
* ⚡ Add filters to all getAll operations
* 🔨 Restore continue on fail
* 🔨 Refactor upsert addition
* 🔨 Refactor getFields for readability
* ⚡ Add custom fields to all create-update ops
* ⚡ Implement custom fields adjuster
* 🔥 Remove logging
* 👕 Appease linter
* 👕 Refactor type helper for linter
* ⚡ Fix refactored type
* 🔨 Refactor reduce for simplicity
* ⚡ Fix vendor:getAll filter options
* ⚡ Fix custom fields for product operations
* ⚡ Make sort_by into options param
* 🚚 Rename upsert operation
* ✏️ Add descriptions to upsert
* ⚡ Deduplicate system-defined check fields
* 🔨 Re-order address fields
* ✏️ Generalize references in getAll fields
* 🔥 Remove extra comma
* ⚡ Make getFields helper more readable
* ✏️ Touch up description for account ID
* 🔥 Remove currency from contacts
* 🔨 Resort emails and phones for contact
* 🐛 Fix sales cycle duration param type
* ✏️ Clarify descriptions with percentages
* 🔨 Reorder total fields
* ✏️ Clarify percentages for discounts
* ✏️ Clarify percentages for commissions
* 🔨 Convert currency to picklist
* ✏️ Add documentation links
* ⚡ Add resource loaders for picklists
* ⚡ Fix build
* 🔨 Refactor product details
* ⚡ Add resolve data to all resources
* ⚡ Change resolve data toggle default
* ⚡ Restore lead:getFields operation
* 🔥 Remove upsert descriptions
* 🔨 Change casing for upsert operations
* ⚡ Add operation descriptions
* 🔨 Restore makeResolve default value
* 🔨 Return nested details
* ⚡ Reposition Resolve Data toggles
* ✏️ Document breaking changes
* Revert "Reposition Resolve Data toggles"
This reverts commit 72ac41780b
.
* ⚡ Improvements
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
416 lines
7.9 KiB
TypeScript
416 lines
7.9 KiB
TypeScript
import {
|
||
INodeProperties,
|
||
} from 'n8n-workflow';
|
||
|
||
import {
|
||
billingAddress,
|
||
currencies,
|
||
makeCustomFieldsFixedCollection,
|
||
makeGetAllFields,
|
||
shippingAddress,
|
||
} from './SharedFields';
|
||
|
||
export const accountOperations = [
|
||
{
|
||
displayName: 'Operation',
|
||
name: 'operation',
|
||
type: 'options',
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
},
|
||
},
|
||
options: [
|
||
{
|
||
name: 'Create',
|
||
value: 'create',
|
||
description: 'Create an account',
|
||
},
|
||
{
|
||
name: 'Create or Update',
|
||
value: 'upsert',
|
||
description: 'Create a new record, or update the current one if it already exists (upsert)',
|
||
},
|
||
{
|
||
name: 'Delete',
|
||
value: 'delete',
|
||
description: 'Delete an account',
|
||
},
|
||
{
|
||
name: 'Get',
|
||
value: 'get',
|
||
description: 'Get an account',
|
||
},
|
||
{
|
||
name: 'Get All',
|
||
value: 'getAll',
|
||
description: 'Get all accounts',
|
||
},
|
||
{
|
||
name: 'Update',
|
||
value: 'update',
|
||
description: 'Update an account',
|
||
},
|
||
],
|
||
default: 'create',
|
||
description: 'Operation to perform',
|
||
},
|
||
] as INodeProperties[];
|
||
|
||
export const accountFields = [
|
||
// ----------------------------------------
|
||
// account: create
|
||
// ----------------------------------------
|
||
{
|
||
displayName: 'Account Name',
|
||
name: 'accountName',
|
||
type: 'string',
|
||
required: true,
|
||
default: '',
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
operation: [
|
||
'create',
|
||
],
|
||
},
|
||
},
|
||
},
|
||
|
||
// ----------------------------------------
|
||
// account: upsert
|
||
// ----------------------------------------
|
||
{
|
||
displayName: 'Account Name',
|
||
name: 'accountName',
|
||
description: 'Name of the account. If a record with this account name exists it will be updated, otherwise a new one will be created.',
|
||
type: 'string',
|
||
required: true,
|
||
default: '',
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
operation: [
|
||
'upsert',
|
||
],
|
||
},
|
||
},
|
||
},
|
||
|
||
// ----------------------------------------
|
||
// account: create + upsert
|
||
// ----------------------------------------
|
||
{
|
||
displayName: 'Additional Fields',
|
||
name: 'additionalFields',
|
||
type: 'collection',
|
||
placeholder: 'Add Field',
|
||
default: {},
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
operation: [
|
||
'create',
|
||
'upsert',
|
||
],
|
||
},
|
||
},
|
||
options: [
|
||
{
|
||
displayName: 'Account Number',
|
||
name: 'Account_Number',
|
||
type: 'string',
|
||
default: '',
|
||
},
|
||
{
|
||
displayName: 'Account Site',
|
||
name: 'Account_Site',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'Name of the account’s location, e.g. Headquarters or London.',
|
||
},
|
||
{
|
||
displayName: 'Account Type',
|
||
name: 'Account_Type',
|
||
type: 'options',
|
||
typeOptions: {
|
||
loadOptionsMethod: 'getAccountType',
|
||
},
|
||
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',
|
||
description: 'Symbol of the currency in which revenue is generated.',
|
||
options: currencies,
|
||
},
|
||
makeCustomFieldsFixedCollection('account'),
|
||
{
|
||
displayName: 'Description',
|
||
name: 'Description',
|
||
type: 'string',
|
||
default: '',
|
||
},
|
||
{
|
||
displayName: 'Employees',
|
||
name: 'Employees',
|
||
type: 'number',
|
||
default: '',
|
||
description: 'Number of employees in the account’s company.',
|
||
},
|
||
{
|
||
displayName: 'Exchange Rate',
|
||
name: 'Exchange_Rate',
|
||
type: 'number',
|
||
default: '',
|
||
description: 'Exchange rate of the default currency to the home currency.',
|
||
},
|
||
{
|
||
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: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
operation: [
|
||
'delete',
|
||
],
|
||
},
|
||
},
|
||
},
|
||
|
||
// ----------------------------------------
|
||
// 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: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
operation: [
|
||
'get',
|
||
],
|
||
},
|
||
},
|
||
},
|
||
|
||
// ----------------------------------------
|
||
// 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: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
operation: [
|
||
'update',
|
||
],
|
||
},
|
||
},
|
||
},
|
||
{
|
||
displayName: 'Update Fields',
|
||
name: 'updateFields',
|
||
type: 'collection',
|
||
placeholder: 'Add Field',
|
||
default: {},
|
||
displayOptions: {
|
||
show: {
|
||
resource: [
|
||
'account',
|
||
],
|
||
operation: [
|
||
'update',
|
||
],
|
||
},
|
||
},
|
||
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: '',
|
||
description: 'Name of the account’s location, e.g. Headquarters or London.',
|
||
},
|
||
{
|
||
displayName: 'Account Type',
|
||
name: 'Account_Type',
|
||
type: 'options',
|
||
typeOptions: {
|
||
loadOptionsMethod: 'getAccountType',
|
||
},
|
||
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',
|
||
description: 'Symbol of the currency in which revenue is generated.',
|
||
options: currencies,
|
||
},
|
||
makeCustomFieldsFixedCollection('account'),
|
||
{
|
||
displayName: 'Description',
|
||
name: 'Description',
|
||
type: 'string',
|
||
default: '',
|
||
},
|
||
{
|
||
displayName: 'Employees',
|
||
name: 'Employees',
|
||
type: 'number',
|
||
default: '',
|
||
description: 'Number of employees in the account’s company.',
|
||
},
|
||
{
|
||
displayName: 'Exchange Rate',
|
||
name: 'Exchange_Rate',
|
||
type: 'number',
|
||
default: '',
|
||
description: 'Exchange rate of the default currency to the home currency.',
|
||
},
|
||
{
|
||
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: '',
|
||
},
|
||
],
|
||
},
|
||
] as INodeProperties[];
|