n8n/packages/nodes-base/nodes/Magento/OrderDescription.ts
Iván Ovejero b03e358a12
refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)
* 👕 Enable `consistent-type-imports` for nodes-base

* 👕 Apply to nodes-base

*  Undo unrelated changes

* 🚚 Move to `.eslintrc.js` in nodes-base

*  Revert "Enable `consistent-type-imports` for nodes-base"

This reverts commit 529ad72b05.

* 👕 Fix severity
2023-01-27 12:22:44 +01:00

100 lines
2.2 KiB
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import { getSearchFilters } from './GenericFunctions';
export const orderOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['order'],
},
},
options: [
{
name: 'Cancel',
value: 'cancel',
description: 'Cancel an order',
action: 'Cancel an order',
},
{
name: 'Get',
value: 'get',
description: 'Get an order',
action: 'Get an order',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get many orders',
action: 'Get many orders',
},
{
name: 'Ship',
value: 'ship',
description: 'Ship an order',
action: 'Ship an order',
},
],
default: 'cancel',
},
];
export const orderFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* order:cancel */
/* -------------------------------------------------------------------------- */
{
displayName: 'Order ID',
name: 'orderId',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['order'],
operation: ['cancel', 'get', 'ship'],
},
},
},
/* -------------------------------------------------------------------------- */
/* order:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['order'],
operation: ['getAll'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: ['order'],
operation: ['getAll'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
maxValue: 10,
},
default: 5,
description: 'Max number of results to return',
},
...getSearchFilters('order', 'getOrderAttributes', 'getOrderAttributes'),
];