n8n/packages/nodes-base/nodes/Keap/EcommerceProductDescription.ts
Iván Ovejero 6f95121fac
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions`

* 👕 Apply `node-param-operation-option-without-action`

* ✏️ Fix add/remove phrasing

* ✏️ Fix email template phrasing

* ✏️ Fix add/remove phrasing

* ✏️ Fix custom fields phrasing

* ✏️ Fix job report phrasing

* ✏️ Fix query phrasing

* ✏️ Various phrasing fixes

* ✏️ Fix final phrasings

* ✏️ Remove `conversation`

* ✏️ Fix plural
2022-07-10 23:50:51 +03:00

241 lines
4.6 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const ecommerceProductOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'ecommerceProduct',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create an ecommerce product',
action: 'Create an e-commerce product',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete an ecommerce product',
action: 'Delete an e-commerce product',
},
{
name: 'Get',
value: 'get',
description: 'Get an ecommerce product',
action: 'Get an e-commerce product',
},
{
name: 'Get All',
value: 'getAll',
description: 'Retrieve all ecommerce product',
action: 'Get all e-commerce products',
},
],
default: 'create',
},
];
export const ecommerceProductFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* ecommerceProduct:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Product Name',
name: 'productName',
type: 'string',
required: true,
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'ecommerceProduct',
],
},
},
default: '',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'ecommerceProduct',
],
},
},
options: [
{
displayName: 'Active',
name: 'active',
type: 'boolean',
default: false,
},
{
displayName: 'Product Description',
name: 'productDesc',
typeOptions: {
alwaysOpenEditWindow: true,
},
type: 'string',
default: '',
},
{
displayName: 'Product Price',
name: 'productPrice',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
},
{
displayName: 'Product Short Desc',
name: 'productShortDesc',
type: 'string',
default: '',
},
{
displayName: 'SKU',
name: 'sku',
type: 'string',
default: '',
},
{
displayName: 'Subscription Only',
name: 'subscriptionOnly',
type: 'boolean',
default: false,
},
],
},
/* -------------------------------------------------------------------------- */
/* ecommerceProduct:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'Product ID',
name: 'productId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: [
'delete',
],
resource: [
'ecommerceProduct',
],
},
},
default: '',
},
/* -------------------------------------------------------------------------- */
/* ecommerceProduct:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Product ID',
name: 'productId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: [
'get',
],
resource: [
'ecommerceProduct',
],
},
},
default: '',
},
/* -------------------------------------------------------------------------- */
/* ecommerceProduct:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'ecommerceProduct',
],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'ecommerceProduct',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 200,
},
default: 100,
description: 'Max number of results to return',
},
{
displayName: 'Filters',
name: 'filters',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'ecommerceProduct',
],
},
},
options: [
{
displayName: 'Active',
name: 'active',
type: 'boolean',
default: false,
},
],
},
];