2022-08-17 18:50:24 +03:00
|
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2021-02-05 11:25:41 +03:00
|
|
|
|
|
2021-12-03 11:44:16 +03:00
|
|
|
|
export const affiliateOperations: INodeProperties[] = [
|
2021-02-05 11:25:41 +03:00
|
|
|
|
{
|
|
|
|
|
displayName: 'Operation',
|
|
|
|
|
name: 'operation',
|
|
|
|
|
type: 'options',
|
2022-05-21 00:47:24 +03:00
|
|
|
|
noDataExpression: true,
|
2021-02-05 11:25:41 +03:00
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
resource: ['affiliate'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
name: 'Create',
|
|
|
|
|
value: 'create',
|
|
|
|
|
description: 'Create an affiliate',
|
2022-07-10 23:50:51 +03:00
|
|
|
|
action: 'Create an affiliate',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Delete',
|
|
|
|
|
value: 'delete',
|
|
|
|
|
description: 'Delete an affiliate',
|
2022-07-10 23:50:51 +03:00
|
|
|
|
action: 'Delete an affiliate',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Get',
|
|
|
|
|
value: 'get',
|
|
|
|
|
description: 'Get an affiliate by ID',
|
2022-07-10 23:50:51 +03:00
|
|
|
|
action: 'Get an affiliate',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Get All',
|
|
|
|
|
value: 'getAll',
|
|
|
|
|
description: 'Get all affiliates',
|
2022-07-10 23:50:51 +03:00
|
|
|
|
action: 'Get all affiliates',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
default: 'create',
|
|
|
|
|
},
|
2021-12-03 11:44:16 +03:00
|
|
|
|
];
|
2021-02-05 11:25:41 +03:00
|
|
|
|
|
2021-12-03 11:44:16 +03:00
|
|
|
|
export const affiliateFields: INodeProperties[] = [
|
2021-02-05 11:25:41 +03:00
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
/* affiliate:create */
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email',
|
|
|
|
|
name: 'email',
|
|
|
|
|
type: 'string',
|
2022-06-20 17:54:01 +03:00
|
|
|
|
placeholder: 'name@email.com',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
required: true,
|
|
|
|
|
default: '',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
operation: ['create'],
|
|
|
|
|
resource: ['affiliate'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'The affiliate’s email',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'First Name',
|
|
|
|
|
name: 'firstname',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
operation: ['create'],
|
|
|
|
|
resource: ['affiliate'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
default: '',
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'The affiliate’s firstname',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Last Name',
|
|
|
|
|
name: 'lastname',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
operation: ['create'],
|
|
|
|
|
resource: ['affiliate'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
default: '',
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'The affiliate’s lastname',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
|
name: 'additionalFields',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
default: {},
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
resource: ['affiliate'],
|
|
|
|
|
operation: ['create'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Address',
|
|
|
|
|
name: 'addressUi',
|
|
|
|
|
placeholder: 'Address',
|
|
|
|
|
type: 'fixedCollection',
|
|
|
|
|
typeOptions: {
|
|
|
|
|
multipleValues: false,
|
|
|
|
|
},
|
|
|
|
|
default: {},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
name: 'addressValues',
|
|
|
|
|
displayName: 'Address',
|
|
|
|
|
values: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Line 1',
|
|
|
|
|
name: 'address',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Line 2',
|
|
|
|
|
name: 'address_two',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Postal Code',
|
|
|
|
|
name: 'postal_code',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'City',
|
|
|
|
|
name: 'city',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'State',
|
|
|
|
|
name: 'state',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Country Code',
|
|
|
|
|
name: 'country',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-08-17 18:50:24 +03:00
|
|
|
|
description:
|
|
|
|
|
'The country’s ISO_3166-1 code. <a href="https://en.wikipedia.org/wiki/ISO_3166-1">Codes</a>.',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Company Name',
|
|
|
|
|
name: 'companyName',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'The affiliate’s company data',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
/* affiliate:delete */
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Affiliate ID',
|
|
|
|
|
name: 'affiliateId',
|
|
|
|
|
required: true,
|
|
|
|
|
type: 'string',
|
2021-12-03 11:44:16 +03:00
|
|
|
|
default: '',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
resource: ['affiliate'],
|
|
|
|
|
operation: ['delete'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'The ID of the affiliate',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
/* affiliate:get */
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Affiliate ID',
|
|
|
|
|
name: 'affiliateId',
|
|
|
|
|
type: 'string',
|
|
|
|
|
required: true,
|
2021-12-03 11:44:16 +03:00
|
|
|
|
default: '',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
resource: ['affiliate'],
|
|
|
|
|
operation: ['get'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'The ID of the affiliate',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
/* affiliate:getAll */
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Return All',
|
|
|
|
|
name: 'returnAll',
|
|
|
|
|
type: 'boolean',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
resource: ['affiliate'],
|
|
|
|
|
operation: ['getAll'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
default: false,
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Limit',
|
|
|
|
|
name: 'limit',
|
|
|
|
|
type: 'number',
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
resource: ['affiliate'],
|
|
|
|
|
operation: ['getAll'],
|
|
|
|
|
returnAll: [false],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
typeOptions: {
|
|
|
|
|
minValue: 1,
|
|
|
|
|
maxValue: 1000,
|
|
|
|
|
},
|
|
|
|
|
default: 100,
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'Max number of results to return',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Filters',
|
|
|
|
|
name: 'filters',
|
|
|
|
|
type: 'collection',
|
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
|
default: {},
|
|
|
|
|
displayOptions: {
|
|
|
|
|
show: {
|
2022-08-17 18:50:24 +03:00
|
|
|
|
resource: ['affiliate'],
|
|
|
|
|
operation: ['getAll'],
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Affiliate Group ID',
|
|
|
|
|
name: 'affiliate_group_id',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'Retrieves affiliates for a certain affiliate group',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Click ID',
|
|
|
|
|
name: 'click_id',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Email',
|
|
|
|
|
name: 'email',
|
|
|
|
|
type: 'string',
|
2022-06-20 17:54:01 +03:00
|
|
|
|
placeholder: 'name@email.com',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
default: '',
|
|
|
|
|
description: 'An email address,',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Parent ID',
|
|
|
|
|
name: 'parentId',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-05-07 00:01:25 +03:00
|
|
|
|
description: 'Retrieves children for a certain parent affiliate',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Referral Code',
|
|
|
|
|
name: 'referral_code',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
2022-08-17 18:50:24 +03:00
|
|
|
|
description:
|
|
|
|
|
'An affiliate’s referral code. This corresponds to the value of ref= in their referral link.',
|
2021-02-05 11:25:41 +03:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Source ID',
|
|
|
|
|
name: 'source_id',
|
|
|
|
|
type: 'string',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2021-12-03 11:44:16 +03:00
|
|
|
|
];
|