mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* ⚡ Initial setup * 👕 Update `.eslintignore` * 👕 Autofix node-param-default-missing (#3173) * 🔥 Remove duplicate key * 👕 Add exceptions * 📦 Update package-lock.json * 👕 Apply `node-class-description-inputs-wrong-trigger-node` (#3176) * 👕 Apply `node-class-description-inputs-wrong-regular-node` (#3177) * 👕 Apply `node-class-description-outputs-wrong` (#3178) * 👕 Apply `node-execute-block-double-assertion-for-items` (#3179) * 👕 Apply `node-param-default-wrong-for-collection` (#3180) * 👕 Apply node-param-default-wrong-for-boolean (#3181) * Autofixed default missing * Autofixed booleans, worked well * ⚡ Fix params * ⏪ Undo exempted autofixes * 📦 Update package-lock.json * 👕 Apply node-class-description-missing-subtitle (#3182) * ⚡ Fix missing comma * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3184) * 👕 Add exception for `node-class-description-missing-subtitle` * 👕 Apply `node-param-default-wrong-for-multi-options` (#3185) * 👕 Apply `node-param-collection-type-unsorted-items` (#3186) * Missing coma * 👕 Apply `node-param-default-wrong-for-simplify` (#3187) * 👕 Apply `node-param-description-comma-separated-hyphen` (#3190) * 👕 Apply `node-param-description-empty-string` (#3189) * 👕 Apply `node-param-description-excess-inner-whitespace` (#3191) * Rule looks good * Add whitespace rule in eslint config * :zao: fix * 👕 Apply `node-param-description-identical-to-display-name` (#3193) * 👕 Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195) * ⏪ Revert ":zao: fix" This reverts commit ef8a76f3dfedffd1bdccf3178af8a8d90cf5a55c. * 👕 Apply `node-param-description-missing-for-simplify` (#3196) * 👕 Apply `node-param-description-missing-final-period` (#3194) * Rule working as intended * Add rule to eslint * 👕 Apply node-param-description-missing-for-return-all (#3197) * ⚡ Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: agobrech <ael.gobrecht@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com>
363 lines
7.4 KiB
TypeScript
363 lines
7.4 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const programAffiliateOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Add affiliate to program',
|
|
},
|
|
{
|
|
name: 'Approve',
|
|
value: 'approve',
|
|
description: 'Approve an affiliate for a program',
|
|
},
|
|
{
|
|
name: 'Disapprove',
|
|
value: 'disapprove',
|
|
description: 'Disapprove an affiliate',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get an affiliate in a program',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
description: 'Get all affiliates in program',
|
|
},
|
|
],
|
|
default: 'add',
|
|
description: 'The operation to perform.',
|
|
},
|
|
];
|
|
|
|
export const programAffiliateFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* programAffiliate:add */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Program ID',
|
|
name: 'programId',
|
|
type: 'options',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getPrograms',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'add',
|
|
],
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
},
|
|
},
|
|
description: `The ID of the Program to add the affiliate to. This ID can be found as part of the URL when viewing the program on the platform.`,
|
|
},
|
|
{
|
|
displayName: 'Affiliate ID',
|
|
name: 'affiliateId',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'add',
|
|
],
|
|
},
|
|
},
|
|
description: 'The ID of the affiliate.',
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'add',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Approved',
|
|
name: 'approved',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: `An optional approval status.`,
|
|
},
|
|
{
|
|
displayName: 'Coupon',
|
|
name: 'coupon',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'An optional coupon for this affiliate.',
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* programAffiliate:approve */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Program ID',
|
|
name: 'programId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getPrograms',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'approve',
|
|
],
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
},
|
|
},
|
|
description: `The ID of the Program to add the affiliate to. This ID can be found as part of the URL when viewing the program on the platform.`,
|
|
},
|
|
{
|
|
displayName: 'Affiliate ID',
|
|
name: 'affiliateId',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'approve',
|
|
],
|
|
},
|
|
},
|
|
description: 'The ID of the affiliate.',
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* programAffiliate:disapprove */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Program ID',
|
|
name: 'programId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getPrograms',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'disapprove',
|
|
],
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
},
|
|
},
|
|
description: `The ID of the Program to add the affiliate to. This ID can be found as part of the URL when viewing the program on the platform.`,
|
|
},
|
|
{
|
|
displayName: 'Affiliate ID',
|
|
name: 'affiliateId',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'disapprove',
|
|
],
|
|
},
|
|
},
|
|
description: 'The ID of the affiliate.',
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* affiliate:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Program ID',
|
|
name: 'programId',
|
|
type: 'options',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getPrograms',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
],
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
},
|
|
},
|
|
description: `The ID of the Program to add the affiliate to. This ID can be found as part of the URL when viewing the program on the platform.`,
|
|
},
|
|
{
|
|
displayName: 'Affiliate ID',
|
|
name: 'affiliateId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
description: 'The ID of the affiliate.',
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* programAffiliate:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Program ID',
|
|
name: 'programId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getPrograms',
|
|
},
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
},
|
|
},
|
|
description: `The ID of the Program to add the affiliate to. This ID can be found as part of the URL when viewing the program on the platform.`,
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'If set to true, all the results will be returned.',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 1000,
|
|
},
|
|
default: 100,
|
|
description: 'How many results to return.',
|
|
},
|
|
{
|
|
displayName: 'Filters',
|
|
name: 'filters',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'programAffiliate',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Affiliate Group ID',
|
|
name: 'affiliate_group_id',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Retrieves affiliates for a certain affiliate group.',
|
|
},
|
|
{
|
|
displayName: 'Email',
|
|
name: 'email',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'An email address.',
|
|
},
|
|
{
|
|
displayName: 'Parent ID',
|
|
name: 'parentId',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Retrieves children for a certain parent affiliate.',
|
|
},
|
|
{
|
|
displayName: 'Source ID',
|
|
name: 'source_id',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
];
|