n8n/packages/nodes-base/nodes/Zoho/descriptions/ProductDescription.ts

353 lines
6.4 KiB
TypeScript
Raw Normal View History

:zap: Expand Zoho node (#1763) * :zap: Initial refactor of Zoho node * :zap: Refactor out extra credentials parameter * :fire: Remove unused filters * :zap: Fix date of birth fields * :zap: Fix param casing * :zap: Adjust param types * :zap: Adjust invoice operations * :zap: Refactor types in adjusters * :zap: Add product resource * :zap: Refactor product details field * :zap: Adjust purchase order params * :zap: Adjust quote params * :zap: Adjust sales orders params * :fire: Remove old unused files * :zap: Add vendor resource * :zap: Fix minor details * :zap: Implement continueOnFail * :bug: Fix empty response for getAll * :zap: Simplify response for single item * :fire: Remove unused import * :hammer: Restore old node name * :zap: Prevent request on empty update * :zap: Apply Dali's suggestions * :zap: Improvements * :zap: Add filters for lead:getAll * :zap: Add upsert to all resources * :zap: Add filters to all getAll operations * :hammer: Restore continue on fail * :hammer: Refactor upsert addition * :hammer: Refactor getFields for readability * :zap: Add custom fields to all create-update ops * :zap: Implement custom fields adjuster * :fire: Remove logging * :shirt: Appease linter * :shirt: Refactor type helper for linter * :zap: Fix refactored type * :hammer: Refactor reduce for simplicity * :zap: Fix vendor:getAll filter options * :zap: Fix custom fields for product operations * :zap: Make sort_by into options param * :truck: Rename upsert operation * :pencil2: Add descriptions to upsert * :zap: Deduplicate system-defined check fields * :hammer: Re-order address fields * :pencil2: Generalize references in getAll fields * :fire: Remove extra comma * :zap: Make getFields helper more readable * :pencil2: Touch up description for account ID * :fire: Remove currency from contacts * :hammer: Resort emails and phones for contact * :bug: Fix sales cycle duration param type * :pencil2: Clarify descriptions with percentages * :hammer: Reorder total fields * :pencil2: Clarify percentages for discounts * :pencil2: Clarify percentages for commissions * :hammer: Convert currency to picklist * :pencil2: Add documentation links * :zap: Add resource loaders for picklists * :zap: Fix build * :hammer: Refactor product details * :zap: Add resolve data to all resources * :zap: Change resolve data toggle default * :zap: Restore lead:getFields operation * :fire: Remove upsert descriptions * :hammer: Change casing for upsert operations * :zap: Add operation descriptions * :hammer: Restore makeResolve default value * :hammer: Return nested details * :zap: Reposition Resolve Data toggles * :pencil2: Document breaking changes * Revert "Reposition Resolve Data toggles" This reverts commit 72ac41780b3ebec9cc6a5bf527e154ffe6ed884a. * :zap: Improvements Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2021-07-02 14:34:12 -07:00
import {
INodeProperties,
} from 'n8n-workflow';
import {
makeCustomFieldsFixedCollection,
makeGetAllFields,
} from './SharedFields';
export const productOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'product',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a product',
},
{
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 a product',
},
{
name: 'Get',
value: 'get',
description: 'Get a product',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all products',
},
{
name: 'Update',
value: 'update',
description: 'Update a product',
},
],
default: 'create',
description: 'Operation to perform',
},
] as INodeProperties[];
export const productFields = [
// ----------------------------------------
// product: create
// ----------------------------------------
{
displayName: 'Product Name',
name: 'productName',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'create',
],
},
},
},
// ----------------------------------------
// product: upsert
// ----------------------------------------
{
displayName: 'Product Name',
name: 'productName',
description: 'Name of the product. If a record with this product name exists it will be updated, otherwise a new one will be created.',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'upsert',
],
},
},
},
// ----------------------------------------
// product: create + upsert
// ----------------------------------------
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'create',
'upsert',
],
},
},
options: [
{
displayName: 'Commission Rate',
name: 'Commission_Rate',
type: 'number',
description: 'Commission rate for the product. For example, enter 12 for 12%.',
typeOptions: {
minValue: 0,
},
default: 0,
},
makeCustomFieldsFixedCollection('product'),
{
displayName: 'Description',
name: 'Description',
type: 'string',
default: '',
},
{
displayName: 'Manufacturer',
name: 'Manufacturer',
type: 'string',
default: '',
},
{
displayName: 'Product Active',
name: 'Product_Active',
type: 'boolean',
default: false,
},
{
displayName: 'Product Category',
name: 'Product_Category',
type: 'string',
default: '',
},
{
displayName: 'Quantity in Demand',
name: 'Qty_in_Demand',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
},
{
displayName: 'Quantity in Stock',
name: 'Qty_in_Stock',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
},
{
displayName: 'Taxable',
name: 'Taxable',
type: 'boolean',
default: false,
},
{
displayName: 'Unit Price',
name: 'Unit_Price',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
},
],
},
// ----------------------------------------
// product: delete
// ----------------------------------------
{
displayName: 'Product ID',
name: 'productId',
description: 'ID of the product to delete.',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'delete',
],
},
},
},
// ----------------------------------------
// product: get
// ----------------------------------------
{
displayName: 'Product ID',
name: 'productId',
description: 'ID of the product to retrieve.',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'get',
],
},
},
},
// ----------------------------------------
// product: getAll
// ----------------------------------------
...makeGetAllFields('product'),
// ----------------------------------------
// product: update
// ----------------------------------------
{
displayName: 'Product ID',
name: 'productId',
description: 'ID of the product to update.',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'update',
],
},
},
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'update',
],
},
},
options: [
{
displayName: 'Commission Rate',
name: 'Commission_Rate',
type: 'number',
description: 'Commission rate for the product. For example, enter 12 for 12%.',
typeOptions: {
minValue: 0,
},
default: 0,
},
makeCustomFieldsFixedCollection('product'),
{
displayName: 'Description',
name: 'Description',
type: 'string',
default: '',
},
{
displayName: 'Manufacturer',
name: 'Manufacturer',
type: 'string',
default: '',
},
{
displayName: 'Product Active',
name: 'Product_Active',
type: 'boolean',
default: false,
},
{
displayName: 'Product Category',
name: 'Product_Category',
type: 'string',
default: '',
},
{
displayName: 'Quantity in Demand',
name: 'Qty_in_Demand',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
},
{
displayName: 'Quantity in Stock',
name: 'Qty_in_Stock',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
},
{
displayName: 'Taxable',
name: 'Taxable',
type: 'boolean',
default: false,
},
{
displayName: 'Unit Price',
name: 'Unit_Price',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
},
],
},
] as INodeProperties[];