mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 23:24:06 -08:00
70ae90fa3c
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.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: INodeProperties[] = [
|
||
{
|
||
displayName: 'Operation',
|
||
name: 'operation',
|
||
type: 'options',
|
||
noDataExpression: true,
|
||
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',
|
||
},
|
||
];
|
||
|
||
export const accountFields: INodeProperties[] = [
|
||
// ----------------------------------------
|
||
// 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 or ID',
|
||
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 or ID',
|
||
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: '',
|
||
},
|
||
],
|
||
},
|
||
];
|