n8n/packages/nodes-base/nodes/Wise/descriptions/AccountDescription.ts
Iván Ovejero 8d2371917f
Add Wise node (#1496)
* 🎉 Register node and credentials

* 🎨 Add SVG icon

*  Add node stub

*  Update credentials registration

*  Add API credentials

*  Add generic functions stub

*  Update node stub

*  Add stubs for resource descriptions

* 🎨 Fix SVG icon size and positioning

* 🔨 Fix credentials casing

*  Implement account operations

*  Add borderless accounts to account:get

*  Remove redundant option

*  Complete account:get with statement

*  Implement exchangeRate:get

*  Implement profile:get and profile:getAll

*  Implement quote:create and quote:get

*  Add findRequiredFields for recipient:create

* 🔥 Remove resource per feedback

*  Implement transfer:create

*  Implement transfer:delete and transfer:get

* 📚 Add documentation links

*  Implement transfer:getAll

*  Implement transfer:execute

*  Simulate transfer completion for PDF receipt

*  Remove logging

*  Add missing divider

*  Add Wise Trigger and improvements

* 🔨 Refactor account operations

*  Small improvement

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-03-10 23:51:05 +01:00

196 lines
3.7 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const accountOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
default: 'getBalances',
description: 'Operation to perform',
options: [
{
name: 'Get Balances',
value: 'getBalances',
description: 'Retrieve balances for all account currencies of this user.',
},
{
name: 'Get Currencies',
value: 'getCurrencies',
description: 'Retrieve currencies in the borderless account of this user.',
},
{
name: 'Get Statement',
value: 'getStatement',
description: 'Retrieve the statement for the borderless account of this user.',
},
],
displayOptions: {
show: {
resource: [
'account',
],
},
},
},
] as INodeProperties[];
export const accountFields = [
// ----------------------------------
// account: getBalances
// ----------------------------------
{
displayName: 'Profile ID',
name: 'profileId',
type: 'options',
required: true,
default: [],
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
description: 'ID of the user profile to retrieve the balance of.',
displayOptions: {
show: {
resource: [
'account',
],
operation: [
'getBalances',
],
},
},
},
// ----------------------------------
// account: getStatement
// ----------------------------------
{
displayName: 'Profile ID',
name: 'profileId',
type: 'options',
default: [],
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
description: 'ID of the user profile whose account to retrieve the statement of.',
displayOptions: {
show: {
resource: [
'account',
],
operation: [
'getStatement',
],
},
},
},
{
displayName: 'Borderless Account ID',
name: 'borderlessAccountId',
type: 'options',
default: [],
required: true,
typeOptions: {
loadOptionsMethod: 'getBorderlessAccounts',
loadOptionsDependsOn: [
'profileId',
],
},
description: 'ID of the borderless account to retrieve the statement of.',
displayOptions: {
show: {
resource: [
'account',
],
operation: [
'getStatement',
],
},
},
},
{
displayName: 'Currency',
name: 'currency',
type: 'string',
default: '',
// TODO: preload
description: 'Code of the currency of the borderless account to retrieve the statement of.',
displayOptions: {
show: {
resource: [
'account',
],
operation: [
'getStatement',
],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'account',
],
operation: [
'getStatement',
],
},
},
options: [
{
displayName: 'Line Style',
name: 'lineStyle',
type: 'options',
default: 'COMPACT',
description: 'Line style to retrieve the statement in.',
options: [
{
name: 'Compact',
value: 'COMPACT',
description: 'Single line per transaction.',
},
{
name: 'Flat',
value: 'FLAT',
description: 'Separate lines for transaction fees.',
},
],
},
{
displayName: 'Range',
name: 'range',
type: 'fixedCollection',
placeholder: 'Add Range',
default: {},
options: [
{
displayName: 'Range Properties',
name: 'rangeProperties',
values: [
{
displayName: 'Range Start',
name: 'intervalStart',
type: 'dateTime',
default: '',
},
{
displayName: 'Range End',
name: 'intervalEnd',
type: 'dateTime',
default: '',
},
],
},
],
},
],
},
] as INodeProperties[];