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' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-03-10 14:51:05 -08:00
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' ,
] ,
} ,
} ,
} ,
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
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Profile Name or ID' ,
2021-03-10 14:51:05 -08:00
name : 'profileId' ,
type : 'options' ,
required : true ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getProfiles' ,
loadOptionsDependsOn : [
'profileId' ,
] ,
} ,
2022-06-03 10:23:49 -07:00
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>.' ,
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' ,
] ,
} ,
} ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Target Account Name or ID' ,
2021-03-10 14:51:05 -08:00
name : 'targetAccountId' ,
type : 'options' ,
required : true ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getRecipients' ,
} ,
2022-06-03 10:23:49 -07:00
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>.' ,
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
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Profile Name or ID' ,
2021-03-10 14:51:05 -08:00
name : 'profileId' ,
type : 'options' ,
required : true ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getProfiles' ,
} ,
2022-06-03 10:23:49 -07:00
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>.' ,
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
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Profile Name or ID' ,
2021-03-10 14:51:05 -08:00
name : 'profileId' ,
type : 'options' ,
required : true ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getProfiles' ,
} ,
2022-06-03 10:23:49 -07:00
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>.' ,
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 : 'Funds Converted' ,
value : 'funds_converted' ,
} ,
{
name : 'Funds Refunded' ,
value : 'funds_refunded' ,
} ,
{
name : 'Incoming Payment Waiting' ,
value : 'incoming_payment_waiting' ,
} ,
2022-06-03 10:23:49 -07:00
{
name : 'Outgoing Payment Sent' ,
value : 'outgoing_payment_sent' ,
} ,
2021-03-10 14:51:05 -08:00
{
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
] ;