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