2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2020-09-18 00:42:01 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { activeCampaignDefaultGetAllProperties } from './GenericFunctions';
|
2019-11-03 07:42:18 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const ecomCustomerOperations: INodeProperties[] = [
|
2019-11-07 01:50:02 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2019-11-07 01:50:02 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a E-commerce Customer',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create an e-commerce customer',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a E-commerce Customer',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Delete an e-commerce customer',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get data of a E-commerce Customer',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get an e-commerce customer',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2019-11-07 01:50:02 -08:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get data of many E-commerce Customers',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many e-commerce customers',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a E-commerce Customer',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update an e-commerce customer',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2019-11-03 07:42:18 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const ecomCustomerFields: INodeProperties[] = [
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// ecommerceCustomer:create
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Service ID',
|
|
|
|
name: 'connectionid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The ID of the connection object for the service where the customer originates',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Customer ID',
|
|
|
|
name: 'externalid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The ID of the customer in the external service',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Customer Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2019-11-07 01:50:02 -08:00
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The email address of the customer',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['create'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Accepts Marketing',
|
|
|
|
name: 'acceptsMarketing',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Whether customer has opt-ed in to marketing communications',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2019-11-03 07:42:18 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// ecommerceCustomer:update
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Customer ID',
|
|
|
|
name: 'ecommerceCustomerId',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['update'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 0,
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the E-commerce customer to update',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The fields to update',
|
2019-11-07 01:50:02 -08:00
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['update'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Service ID',
|
|
|
|
name: 'connectionid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'The ID of the connection object for the service where the customer originates',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Customer ID',
|
|
|
|
name: 'externalid',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The ID of the customer in the external service',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Customer Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2019-11-07 01:50:02 -08:00
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The email address of the customer',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Accepts Marketing',
|
|
|
|
name: 'acceptsMarketing',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Whether customer has opt-ed in to marketing communications',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2019-11-03 07:42:18 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// ecommerceCustomer:delete
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Customer ID',
|
|
|
|
name: 'ecommerceCustomerId',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['delete'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 0,
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the E-commerce customer to delete',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
2019-11-03 07:42:18 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// ecommerceCustomer:get
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Customer ID',
|
|
|
|
name: 'ecommerceCustomerId',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['get'],
|
|
|
|
resource: ['ecommerceCustomer'],
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 0,
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the E-commerce customer to get',
|
2019-11-07 01:50:02 -08:00
|
|
|
},
|
2019-11-03 07:42:18 -08:00
|
|
|
|
2019-11-07 01:50:02 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// ecommerceCustomer:getAll
|
|
|
|
// ----------------------------------
|
2020-09-18 00:42:01 -07:00
|
|
|
...activeCampaignDefaultGetAllProperties('ecommerceCustomer', 'getAll'),
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|