2021-02-13 08:27:08 -08:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
import {
paymentAdditionalFieldsOptions
} from './PaymentAdditionalFieldsOptions' ;
2021-12-03 00:44:16 -08:00
export const paymentOperations : INodeProperties [ ] = [
2021-02-13 08:27:08 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-02-13 08:27:08 -08:00
default : 'get' ,
options : [
{
name : 'Create' ,
value : 'create' ,
} ,
{
name : 'Delete' ,
value : 'delete' ,
} ,
{
name : 'Get' ,
value : 'get' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
} ,
{
name : 'Send' ,
value : 'send' ,
} ,
{
name : 'Update' ,
value : 'update' ,
} ,
{
name : 'Void' ,
value : 'void' ,
} ,
] ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-13 08:27:08 -08:00
2021-12-03 00:44:16 -08:00
export const paymentFields : INodeProperties [ ] = [
2021-02-13 08:27:08 -08:00
// ----------------------------------
// payment: create
// ----------------------------------
{
displayName : 'For Customer ID' ,
name : 'CustomerRef' ,
type : 'options' ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the customer who the payment is for' ,
2021-02-13 08:27:08 -08:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getCustomers' ,
} ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Total Amount' ,
name : 'TotalAmt' ,
2022-05-06 14:01:25 -07:00
description : 'Total amount of the transaction' ,
2021-02-13 08:27:08 -08:00
type : 'number' ,
default : 0 ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
options : paymentAdditionalFieldsOptions ,
} ,
// ----------------------------------
// payment: delete
// ----------------------------------
{
displayName : 'Payment ID' ,
name : 'paymentId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the payment to delete' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// payment: get
// ----------------------------------
{
displayName : 'Payment ID' ,
name : 'paymentId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the payment to retrieve' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
{
displayName : 'Download' ,
name : 'download' ,
type : 'boolean' ,
required : true ,
default : false ,
description : 'Download estimate as PDF file' ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
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-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'get' ,
] ,
download : [
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-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'get' ,
] ,
download : [
true ,
] ,
} ,
} ,
} ,
// ----------------------------------
// payment: 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-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
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-02-13 08:27:08 -08:00
typeOptions : {
minValue : 1 ,
maxValue : 1000 ,
} ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
options : [
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
placeholder : 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'' ,
2021-08-26 10:42:38 -07:00
description : 'The condition for selecting payments. See the <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/explore-the-quickbooks-online-api/data-queries">guide</a> for supported syntax.' ,
2021-02-13 08:27:08 -08:00
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
} ,
] ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// payment: send
// ----------------------------------
{
displayName : 'Payment ID' ,
name : 'paymentId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the payment to send' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'send' ,
] ,
} ,
} ,
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The email of the recipient of the payment' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'send' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// payment: void
// ----------------------------------
{
displayName : 'Payment ID' ,
name : 'paymentId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the payment to void' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'void' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// payment: update
// ----------------------------------
{
displayName : 'Payment ID' ,
name : 'paymentId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the payment to update' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
required : true ,
displayOptions : {
show : {
resource : [
'payment' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
options : paymentAdditionalFieldsOptions ,
} ,
2021-12-03 00:44:16 -08:00
] ;