2021-03-10 14:51:05 -08:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const transferOperations: INodeProperties[] = [
|
2021-03-10 14:51:05 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
default: 'get',
|
|
|
|
description: 'Operation to perform',
|
|
|
|
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',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2021-03-10 14:51:05 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const transferFields: INodeProperties[] = [
|
2021-03-10 14:51:05 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// transfer: create
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Profile ID',
|
|
|
|
name: 'profileId',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getProfiles',
|
|
|
|
loadOptionsDependsOn: [
|
|
|
|
'profileId',
|
|
|
|
],
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the user profile to retrieve the balance of',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Quote ID',
|
|
|
|
name: 'quoteId',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the quote based on which to create the transfer',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Target Account ID',
|
|
|
|
name: 'targetAccountId',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getRecipients',
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the account that will receive the funds',
|
2021-03-10 14:51:05 -08:00
|
|
|
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: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the transfer to delete',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// transfer: execute
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Profile ID',
|
|
|
|
name: 'profileId',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getProfiles',
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the user profile to execute the transfer under',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'execute',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Transfer ID',
|
|
|
|
name: 'transferId',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the transfer to execute',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'execute',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// transfer: get
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Transfer ID',
|
|
|
|
name: 'transferId',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the transfer to retrieve',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Download Receipt',
|
|
|
|
name: 'downloadReceipt',
|
|
|
|
type: 'boolean',
|
|
|
|
required: true,
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Download the transfer receipt as a PDF file. Only for executed transfers, having status \'Outgoing Payment Sent\'.',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Binary Property',
|
|
|
|
name: 'binaryProperty',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: 'data',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Name of the binary property to which to write to',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
downloadReceipt: [
|
|
|
|
true,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'File Name',
|
|
|
|
name: 'fileName',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
placeholder: 'data.pdf',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Name of the file that will be downloaded',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
downloadReceipt: [
|
|
|
|
true,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// transfer: getAll
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Profile ID',
|
|
|
|
name: 'profileId',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
default: [],
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getProfiles',
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the user profile to retrieve',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2021-03-10 14:51:05 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'transfer',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
default: 5,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2021-03-10 14:51:05 -08:00
|
|
|
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',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Range of time for filtering the transfers',
|
2021-03-10 14:51:05 -08:00
|
|
|
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: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Code of the source currency for filtering the transfers',
|
2021-03-10 14:51:05 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
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: 'Outgoing Payment Sent',
|
|
|
|
value: 'outgoing_payment_sent',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Funds Converted',
|
|
|
|
value: 'funds_converted',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Funds Refunded',
|
|
|
|
value: 'funds_refunded',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Incoming Payment Waiting',
|
|
|
|
value: 'incoming_payment_waiting',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Code of the target currency for filtering the transfers',
|
2021-03-10 14:51:05 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|