mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
b03e358a12
* 👕 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
136 lines
2.6 KiB
TypeScript
136 lines
2.6 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const customerCardOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
default: 'get',
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Add a customer card',
|
|
action: 'Add a customer card',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get a customer card',
|
|
action: 'Get a customer card',
|
|
},
|
|
{
|
|
name: 'Remove',
|
|
value: 'remove',
|
|
description: 'Remove a customer card',
|
|
action: 'Remove a customer card',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['customerCard'],
|
|
},
|
|
},
|
|
},
|
|
];
|
|
|
|
export const customerCardFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// customerCard: add
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Customer ID',
|
|
name: 'customerId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the customer to be associated with this card',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['customerCard'],
|
|
operation: ['add'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Card Token',
|
|
name: 'token',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
placeholder: 'tok_1IMfKdJhRTnqS5TKQVG1LI9o',
|
|
description: 'Token representing sensitive card information',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['customerCard'],
|
|
operation: ['add'],
|
|
},
|
|
},
|
|
},
|
|
|
|
// ----------------------------------
|
|
// customerCard: remove
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Customer ID',
|
|
name: 'customerId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the customer whose card to remove',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['customerCard'],
|
|
operation: ['remove'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Card ID',
|
|
name: 'cardId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the card to remove',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['customerCard'],
|
|
operation: ['remove'],
|
|
},
|
|
},
|
|
},
|
|
|
|
// ----------------------------------
|
|
// customerCard: get
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Customer ID',
|
|
name: 'customerId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the customer whose card to retrieve',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['customerCard'],
|
|
operation: ['get'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Source ID',
|
|
name: 'sourceId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the source to retrieve',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['customerCard'],
|
|
operation: ['get'],
|
|
},
|
|
},
|
|
},
|
|
];
|