n8n/packages/nodes-base/nodes/Paddle/ProductDescription.ts
2020-06-30 13:34:09 +02:00

32 lines
496 B
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const productOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'product',
],
},
},
options: [
{
name: 'Get All',
value: 'getAll',
description: 'Get all products.',
}
],
default: 'getAll',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const productFields = [
] as INodeProperties[];