2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-02-13 08:27:08 -08:00
2022-08-17 08:50:24 -07:00
import { customerAdditionalFieldsOptions } from './CustomerAdditionalFieldsOptions' ;
2021-02-13 08:27:08 -08:00
2021-12-03 00:44:16 -08:00
export const customerOperations : 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' ,
2022-07-10 13:50:51 -07:00
action : 'Create a customer' ,
2021-02-13 08:27:08 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
2022-07-10 13:50:51 -07:00
action : 'Get a customer' ,
2021-02-13 08:27:08 -08:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
2022-07-10 13:50:51 -07:00
action : 'Get all customers' ,
2021-02-13 08:27:08 -08:00
} ,
{
name : 'Update' ,
value : 'update' ,
2022-07-10 13:50:51 -07:00
action : 'Update a customer' ,
2021-02-13 08:27:08 -08:00
} ,
] ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
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 customerFields : INodeProperties [ ] = [
2021-02-13 08:27:08 -08:00
// ----------------------------------
// customer: create
// ----------------------------------
{
displayName : 'Display Name' ,
name : 'displayName' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The display name of the customer to create' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'create' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'create' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
options : customerAdditionalFieldsOptions ,
} ,
// ----------------------------------
// customer: get
// ----------------------------------
{
displayName : 'Customer ID' ,
name : 'customerId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the customer to retrieve' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'get' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
// ----------------------------------
// customer: 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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'getAll' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
2022-06-03 11:35:24 -07:00
default : 50 ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
options : [
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
placeholder : "WHERE Metadata.LastUpdatedTime > '2021-01-01'" ,
description :
'The condition for selecting customers. 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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'getAll' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
// ----------------------------------
// customer: update
// ----------------------------------
{
displayName : 'Customer ID' ,
name : 'customerId' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the customer to update' ,
2021-02-13 08:27:08 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'update' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'customer' ] ,
operation : [ 'update' ] ,
2021-02-13 08:27:08 -08:00
} ,
} ,
options : customerAdditionalFieldsOptions ,
} ,
2021-12-03 00:44:16 -08:00
] ;