n8n/packages/nodes-base/nodes/Salesmate/CompanyDescription.ts
Iván Ovejero 0448feec56
refactor: Apply eslint-plugin-n8n-nodes-base autofixable rules (#3174)
*  Initial setup

* 👕 Update `.eslintignore`

* 👕 Autofix node-param-default-missing (#3173)

* 🔥 Remove duplicate key

* 👕 Add exceptions

* 📦 Update package-lock.json

* 👕 Apply `node-class-description-inputs-wrong-trigger-node` (#3176)

* 👕 Apply `node-class-description-inputs-wrong-regular-node` (#3177)

* 👕 Apply `node-class-description-outputs-wrong` (#3178)

* 👕 Apply `node-execute-block-double-assertion-for-items` (#3179)

* 👕 Apply `node-param-default-wrong-for-collection` (#3180)

* 👕 Apply node-param-default-wrong-for-boolean (#3181)

* Autofixed default missing

* Autofixed booleans, worked well

*  Fix params

*  Undo exempted autofixes

* 📦 Update package-lock.json

* 👕 Apply node-class-description-missing-subtitle (#3182)

*  Fix missing comma

* 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3184)

* 👕 Add exception for `node-class-description-missing-subtitle`

* 👕 Apply `node-param-default-wrong-for-multi-options` (#3185)

* 👕 Apply `node-param-collection-type-unsorted-items` (#3186)

* Missing coma

* 👕 Apply `node-param-default-wrong-for-simplify` (#3187)

* 👕 Apply `node-param-description-comma-separated-hyphen` (#3190)

* 👕 Apply `node-param-description-empty-string` (#3189)

* 👕 Apply `node-param-description-excess-inner-whitespace` (#3191)

* Rule looks good

* Add whitespace rule in eslint config

* :zao: fix

* 👕 Apply `node-param-description-identical-to-display-name` (#3193)

* 👕 Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195)

*  Revert ":zao: fix"

This reverts commit ef8a76f3df.

* 👕 Apply `node-param-description-missing-for-simplify`  (#3196)

* 👕 Apply `node-param-description-missing-final-period` (#3194)

* Rule working as intended

* Add rule to eslint

* 👕 Apply node-param-description-missing-for-return-all (#3197)

*  Restore `lintfix` command

Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: agobrech <ael.gobrecht@gmail.com>
Co-authored-by: Michael Kret <michael.k@radency.com>
2022-04-22 18:29:51 +02:00

723 lines
13 KiB
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const companyOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'company',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a company',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a company',
},
{
name: 'Get',
value: 'get',
description: 'Get a company',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all companies',
},
{
name: 'Update',
value: 'update',
description: 'Update a company',
},
],
default: 'create',
description: 'The operation to perform.',
},
];
export const companyFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* company:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'create',
],
},
},
required: true,
},
{
displayName: 'Owner',
name: 'owner',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getUsers',
},
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'create',
],
},
},
required: true,
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'create',
],
},
},
default: false,
description: `If the data should include the fields details`,
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'create',
],
},
},
options: [
{
displayName: 'Website',
name: 'website',
type: 'string',
default: '',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
},
{
displayName: 'Other Phone',
name: 'otherPhone',
type: 'string',
default: '',
},
{
displayName: 'Facebook Handle',
name: 'facebookHandle',
type: 'string',
default: '',
},
{
displayName: 'Google Plus Handle',
name: 'googlePlusHandle',
type: 'string',
default: '',
},
{
displayName: 'LinkedIn Handle',
name: 'linkedInHandle',
type: 'string',
default: '',
},
{
displayName: 'Skype ID',
name: 'skypeId',
type: 'string',
default: '',
},
{
displayName: 'Twitter Handle',
name: 'twitterHandle',
type: 'string',
default: '',
},
{
displayName: 'Currency',
name: 'currency',
type: 'string',
default: '',
},
{
displayName: 'Billing Address Line 1',
name: 'billingAddressLine1',
type: 'string',
default: '',
},
{
displayName: 'Billing Address Line 2',
name: 'billingAddressLine2',
type: 'string',
default: '',
},
{
displayName: 'Billing City',
name: 'billingCity',
type: 'string',
default: '',
},
{
displayName: 'Billing Zip Code',
name: 'billingZipCode',
type: 'string',
default: '',
},
{
displayName: 'Billing State',
name: 'billingState',
type: 'string',
default: '',
},
{
displayName: 'Billing Country',
name: 'billingState',
type: 'string',
default: '',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
},
{
displayName: 'Tags',
name: 'tags',
type: 'string',
default: '',
},
],
},
/* -------------------------------------------------------------------------- */
/* company:update */
/* -------------------------------------------------------------------------- */
{
displayName: 'Company ID',
name: 'id',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'update',
],
},
},
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'update',
],
},
},
default: false,
description: `If the data should include the fields details`,
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'update',
],
},
},
options: [
{
displayName: 'name',
name: 'name',
type: 'string',
default: '',
},
{
displayName: 'Owner',
name: 'owner',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getUsers',
},
},
{
displayName: 'Website',
name: 'website',
type: 'string',
default: '',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
},
{
displayName: 'Other Phone',
name: 'otherPhone',
type: 'string',
default: '',
},
{
displayName: 'Facebook Handle',
name: 'facebookHandle',
type: 'string',
default: '',
},
{
displayName: 'Google Plus Handle',
name: 'googlePlusHandle',
type: 'string',
default: '',
},
{
displayName: 'LinkedIn Handle',
name: 'linkedInHandle',
type: 'string',
default: '',
},
{
displayName: 'Skype ID',
name: 'skypeId',
type: 'string',
default: '',
},
{
displayName: 'Twitter Handle',
name: 'twitterHandle',
type: 'string',
default: '',
},
{
displayName: 'Currency',
name: 'currency',
type: 'string',
default: '',
},
{
displayName: 'Billing Address Line 1',
name: 'billingAddressLine1',
type: 'string',
default: '',
},
{
displayName: 'Billing Address Line 2',
name: 'billingAddressLine2',
type: 'string',
default: '',
},
{
displayName: 'Billing City',
name: 'billingCity',
type: 'string',
default: '',
},
{
displayName: 'Billing Zip Code',
name: 'billingZipCode',
type: 'string',
default: '',
},
{
displayName: 'Billing State',
name: 'billingState',
type: 'string',
default: '',
},
{
displayName: 'Billing Country',
name: 'billingState',
type: 'string',
default: '',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
},
{
displayName: 'Tags',
name: 'tags',
type: 'string',
default: '',
},
],
},
/* -------------------------------------------------------------------------- */
/* company:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Company ID',
name: 'id',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'get',
],
},
},
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'get',
],
},
},
default: false,
description: `If the data should include the fields details`,
},
/* -------------------------------------------------------------------------- */
/* company:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'getAll',
],
},
},
default: false,
description: 'If all results should be returned or only up to a given limit.',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 25,
},
default: 10,
description: 'How many results to return.',
},
{
displayName: 'JSON Parameters',
name: 'jsonParameters',
type: 'boolean',
default: false,
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'company',
],
},
},
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
placeholder: 'Add Option',
default: {},
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'getAll',
],
},
},
options: [
{
displayName: 'Fields',
name: 'fields',
type: 'string',
default: '',
description: 'Comma-separated list of fields to return.',
},
{
displayName: 'Sort By',
name: 'sortBy',
type: 'string',
default: '',
description: 'The field to sort by.',
},
{
displayName: 'Sort Order',
name: 'sortOrder',
type: 'options',
options: [
{
name: 'ASC',
value: 'asc',
},
{
name: 'DESC',
value: 'desc',
},
],
default: 'desc',
},
],
},
{
displayName: 'Filters',
name: 'filtersJson',
type: 'json',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'company',
],
jsonParameters: [
true,
],
},
},
},
{
displayName: 'Filters',
name: 'filters',
placeholder: 'Add filter',
type: 'fixedCollection',
typeOptions: {
multipleValues: false,
},
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'getAll',
],
jsonParameters: [
false,
],
},
},
default: {},
options: [
{
name: 'filtersUi',
displayName: 'Filters',
values: [
{
displayName: 'Operator',
name: 'operator',
type: 'options',
options: [
{
name: 'AND',
value: 'AND',
},
{
name: 'OR',
value: 'OR',
},
],
default: 'AND',
},
{
displayName: 'Conditions',
name: 'conditions',
placeholder: 'Add Condition',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
},
default: {},
options: [
{
name: 'conditionsUi',
displayName: 'Conditions',
values: [
{
displayName: 'Field',
name: 'field',
type: 'options',
options: [
{
name: 'Name',
value: 'name',
},
{
name: 'Email',
value: 'email',
},
{
name: 'Phone',
value: 'phone',
},
],
default: 'name',
},
{
displayName: 'Condition',
name: 'condition',
type: 'options',
options: [
{
name: 'Equals',
value: 'EQUALS',
},
{
name: 'Not Equals',
value: 'NOT_EQUALS',
},
{
name: 'Empty',
value: 'EMPTY',
},
{
name: 'Not Empty',
value: 'NOT_EMPTY',
},
{
name: 'CONTAINS',
value: 'Contains',
},
{
name: 'Does Not Contains',
value: 'DOES_NOT_CONTAINS',
},
{
name: 'Starts With',
value: 'STARTS_WITH',
},
{
name: 'Ends With',
value: 'ENDS_WITH',
},
],
default: 'EQUALS',
description: 'Value of the property to set.',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
},
],
},
],
},
],
},
],
},
/* -------------------------------------------------------------------------- */
/* company:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'Company ID',
name: 'id',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'company',
],
operation: [
'delete',
],
},
},
description: 'If more than one company add them separated by ,',
},
];