mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
327 lines
6.3 KiB
TypeScript
327 lines
6.3 KiB
TypeScript
|
import { INodeProperties } from 'n8n-workflow';
|
||
|
|
||
|
export const customerOperations = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Create',
|
||
|
value: 'create',
|
||
|
description: 'Create a customer.',
|
||
|
},
|
||
|
{
|
||
|
name: 'Delete',
|
||
|
value: 'delete',
|
||
|
description: 'Delete a customer.',
|
||
|
},
|
||
|
{
|
||
|
name: 'Update',
|
||
|
value: 'update',
|
||
|
description: 'Update a customer.',
|
||
|
},
|
||
|
],
|
||
|
default: 'create',
|
||
|
description: 'The operation to perform.',
|
||
|
},
|
||
|
] as INodeProperties[];
|
||
|
|
||
|
export const customerFields = [
|
||
|
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
/* customer:create/delete */
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
{
|
||
|
displayName: 'ID',
|
||
|
name: 'id',
|
||
|
type: 'number',
|
||
|
required: true,
|
||
|
default: 0,
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'create', 'delete'
|
||
|
]
|
||
|
},
|
||
|
},
|
||
|
description: 'The unique identifier for the customer.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Email',
|
||
|
name: 'email',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'create'
|
||
|
]
|
||
|
},
|
||
|
},
|
||
|
description: 'The email address of the user.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Created at',
|
||
|
name: 'createdAt',
|
||
|
type: 'dateTime',
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'create'
|
||
|
]
|
||
|
},
|
||
|
},
|
||
|
description: 'The UNIX timestamp from when the user was created.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'JSON Parameters',
|
||
|
name: 'jsonParameters',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
description: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'create'
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: ' Additional Fields',
|
||
|
name: 'additionalFieldsJson',
|
||
|
type: 'json',
|
||
|
typeOptions: {
|
||
|
alwaysOpenEditWindow: true,
|
||
|
},
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'create'
|
||
|
],
|
||
|
jsonParameters: [
|
||
|
true,
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-companys---companies-api" target="_blank">here</a>.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Additional Fields',
|
||
|
name: 'additionalFields',
|
||
|
type: 'collection',
|
||
|
placeholder: 'Add Field',
|
||
|
default: {},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'create'
|
||
|
],
|
||
|
jsonParameters: [
|
||
|
false,
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Custom Properties',
|
||
|
name: 'customProperties',
|
||
|
type: 'fixedCollection',
|
||
|
description: 'Custom Properties',
|
||
|
typeOptions: {
|
||
|
multipleValues: true,
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Property',
|
||
|
name: 'customProperty',
|
||
|
values: [
|
||
|
{
|
||
|
displayName: 'Key',
|
||
|
name: 'key',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
description: 'Property name.',
|
||
|
placeholder: 'Plan'
|
||
|
},
|
||
|
|
||
|
{
|
||
|
displayName: 'Value',
|
||
|
name: 'value',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
description: 'Property value.',
|
||
|
placeholder: 'Basic'
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
]
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
/* customer:update */
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
{
|
||
|
displayName: 'ID',
|
||
|
name: 'id',
|
||
|
type: 'number',
|
||
|
required: true,
|
||
|
default: 0,
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'update'
|
||
|
]
|
||
|
},
|
||
|
},
|
||
|
description: 'The unique identifier for the customer.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'JSON Parameters',
|
||
|
name: 'jsonParameters',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
description: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'update'
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: ' Additional Fields',
|
||
|
name: 'additionalFieldsJson',
|
||
|
type: 'json',
|
||
|
typeOptions: {
|
||
|
alwaysOpenEditWindow: true,
|
||
|
},
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'update'
|
||
|
],
|
||
|
jsonParameters: [
|
||
|
true,
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-companys---companies-api" target="_blank">here</a>.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Additional Fields',
|
||
|
name: 'additionalFields',
|
||
|
type: 'collection',
|
||
|
placeholder: 'Add Field',
|
||
|
default: {},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'customer',
|
||
|
],
|
||
|
operation: [
|
||
|
'update'
|
||
|
],
|
||
|
jsonParameters: [
|
||
|
false,
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Custom Properties',
|
||
|
name: 'customProperties',
|
||
|
type: 'fixedCollection',
|
||
|
description: 'Custom Properties',
|
||
|
typeOptions: {
|
||
|
multipleValues: true,
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Property',
|
||
|
name: 'customProperty',
|
||
|
values: [
|
||
|
{
|
||
|
displayName: 'Key',
|
||
|
name: 'key',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
description: 'Property name.',
|
||
|
placeholder: 'Plan'
|
||
|
},
|
||
|
|
||
|
{
|
||
|
displayName: 'Value',
|
||
|
name: 'value',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
description: 'Property value.',
|
||
|
placeholder: 'Basic'
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Email',
|
||
|
name: 'email',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
description: 'The email address of the user.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Created at',
|
||
|
name: 'createdAt',
|
||
|
type: 'dateTime',
|
||
|
default: '',
|
||
|
description: 'The UNIX timestamp from when the user was created.',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
] as INodeProperties[];
|