mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
* ⚡ Update `lintfix` script * ⚡ Run baseline `lintfix` * 🔥 Remove unneeded exceptions (#3538) * 🔥 Remove exceptions for `node-param-default-wrong-for-simplify` * 🔥 Remove exceptions for `node-param-placeholder-miscased-id` * ⚡ Update version * 👕 Apply `node-param-placeholder-missing` (#3542) * 👕 Apply `filesystem-wrong-cred-filename` (#3543) * 👕 Apply `node-param-description-missing-from-dynamic-options` (#3545) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-class-description-empty-string` (#3546) * 👕 Apply `node-class-description-icon-not-svg` (#3548) * 👕 Apply `filesystem-wrong-node-filename` (#3549) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Expand lintings to credentials (#3550) * 👕 Apply `node-param-multi-options-type-unsorted-items` (#3552) * ⚡ fix * ⚡ Minor fixes Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `node-param-description-wrong-for-dynamic-multi-options` (#3541) * ⚡ Add new lint rule, node-param-description-wrong-for-dynamic-multi-options * ⚡ Fix with updated linting rules * ⚡ Minor fixes Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-boolean-without-whether` (#3553) * ⚡ fix * Update packages/nodes-base/nodes/Clockify/ProjectDescription.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-display-name-wrong-for-dynamic-multi-options (#3537) * 👕 Add exceptions * 👕 Add exception * ✏️ Alphabetize rules * ⚡ Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
461 lines
8.5 KiB
TypeScript
461 lines
8.5 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const transferOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
default: 'get',
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
},
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
},
|
|
{
|
|
name: 'Execute',
|
|
value: 'execute',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
];
|
|
|
|
export const transferFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// transfer: create
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Profile Name or ID',
|
|
name: 'profileId',
|
|
type: 'options',
|
|
required: true,
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getProfiles',
|
|
loadOptionsDependsOn: [
|
|
'profileId',
|
|
],
|
|
},
|
|
description: 'ID of the user profile to retrieve the balance of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Quote ID',
|
|
name: 'quoteId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the quote based on which to create the transfer',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Target Account Name or ID',
|
|
name: 'targetAccountId',
|
|
type: 'options',
|
|
required: true,
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getRecipients',
|
|
},
|
|
description: 'ID of the account that will receive the funds. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Reference',
|
|
name: 'reference',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Reference text to show in the recipient\'s bank statement',
|
|
},
|
|
],
|
|
},
|
|
|
|
// ----------------------------------
|
|
// transfer: delete
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Transfer ID',
|
|
name: 'transferId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the transfer to delete',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'delete',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
|
|
// ----------------------------------
|
|
// transfer: execute
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Profile Name or ID',
|
|
name: 'profileId',
|
|
type: 'options',
|
|
required: true,
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getProfiles',
|
|
},
|
|
description: 'ID of the user profile to execute the transfer under. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'execute',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Transfer ID',
|
|
name: 'transferId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the transfer to execute',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'execute',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
|
|
// ----------------------------------
|
|
// transfer: get
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Transfer ID',
|
|
name: 'transferId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the transfer to retrieve',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Download Receipt',
|
|
name: 'downloadReceipt',
|
|
type: 'boolean',
|
|
required: true,
|
|
default: false,
|
|
description: 'Whether to download the transfer receipt as a PDF file. Only for executed transfers, having status \'Outgoing Payment Sent\'.',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Binary Property',
|
|
name: 'binaryProperty',
|
|
type: 'string',
|
|
required: true,
|
|
default: 'data',
|
|
description: 'Name of the binary property to which to write to',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
downloadReceipt: [
|
|
true,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'File Name',
|
|
name: 'fileName',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
placeholder: 'data.pdf',
|
|
description: 'Name of the file that will be downloaded',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
downloadReceipt: [
|
|
true,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
|
|
// ----------------------------------
|
|
// transfer: getAll
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'Profile Name or ID',
|
|
name: 'profileId',
|
|
type: 'options',
|
|
required: true,
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getProfiles',
|
|
},
|
|
description: 'ID of the user profile to retrieve. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
default: 5,
|
|
description: 'Max number of results to return',
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 1000,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Filters',
|
|
name: 'filters',
|
|
type: 'collection',
|
|
placeholder: 'Add Filter',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'transfer',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Range',
|
|
name: 'range',
|
|
type: 'fixedCollection',
|
|
placeholder: 'Add Range',
|
|
description: 'Range of time for filtering the transfers',
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Range Properties',
|
|
name: 'rangeProperties',
|
|
values: [
|
|
{
|
|
displayName: 'Created Date Start',
|
|
name: 'createdDateStart',
|
|
type: 'dateTime',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Created Date End',
|
|
name: 'createdDateEnd',
|
|
type: 'dateTime',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Source Currency',
|
|
name: 'sourceCurrency',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Code of the source currency for filtering the transfers',
|
|
},
|
|
{
|
|
displayName: 'Status',
|
|
name: 'status',
|
|
type: 'options',
|
|
default: 'processing',
|
|
options: [
|
|
{
|
|
name: 'Bounced Back',
|
|
value: 'bounced_back',
|
|
},
|
|
{
|
|
name: 'Cancelled',
|
|
value: 'cancelled',
|
|
},
|
|
{
|
|
name: 'Charged Back',
|
|
value: 'charged_back',
|
|
},
|
|
{
|
|
name: 'Funds Converted',
|
|
value: 'funds_converted',
|
|
},
|
|
{
|
|
name: 'Funds Refunded',
|
|
value: 'funds_refunded',
|
|
},
|
|
{
|
|
name: 'Incoming Payment Waiting',
|
|
value: 'incoming_payment_waiting',
|
|
},
|
|
{
|
|
name: 'Outgoing Payment Sent',
|
|
value: 'outgoing_payment_sent',
|
|
},
|
|
{
|
|
name: 'Processing',
|
|
value: 'processing',
|
|
},
|
|
{
|
|
name: 'Unknown',
|
|
value: 'unknown',
|
|
},
|
|
{
|
|
name: 'Waiting for Recipient Input to Proceed',
|
|
value: 'waiting_recipient_input_to_proceed',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Target Currency',
|
|
name: 'targetCurrency',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Code of the target currency for filtering the transfers',
|
|
},
|
|
],
|
|
},
|
|
];
|