2021-10-28 17:00:25 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
import {
getAccountFields ,
} from '../GenericFunctions' ;
2021-12-03 00:44:16 -08:00
export const accountOperations : INodeProperties [ ] = [
2021-10-28 17:00:25 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-10-28 17:00:25 -07:00
displayOptions : {
show : {
resource : [
'account' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
2022-07-10 13:50:51 -07:00
action : 'Create an account' ,
2021-10-28 17:00:25 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2022-07-10 13:50:51 -07:00
action : 'Delete an account' ,
2021-10-28 17:00:25 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
2022-07-10 13:50:51 -07:00
action : 'Get an account' ,
2021-10-28 17:00:25 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
2022-07-10 13:50:51 -07:00
action : 'Get all accounts' ,
2021-10-28 17:00:25 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
2022-07-10 13:50:51 -07:00
action : 'Update an account' ,
2021-10-28 17:00:25 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-10-28 17:00:25 -07:00
2021-12-03 00:44:16 -08:00
export const accountFields : INodeProperties [ ] = [
2021-10-28 17:00:25 -07:00
// ----------------------------------------
// account:create
// ----------------------------------------
{
displayName : 'Name' ,
name : 'name' ,
description : 'Company or business name' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
options : [
. . . getAccountFields ( ) ,
] ,
} ,
// ----------------------------------------
// account:get
// ----------------------------------------
{
displayName : 'Account ID' ,
name : 'accountId' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'delete' ,
'get' ,
'update' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// account:getAll
// ----------------------------------------
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-10-28 17:00:25 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 10 ,
} ,
default : 5 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-10-28 17:00:25 -07:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'get' ,
'getAll' ,
] ,
} ,
} ,
options : [
{
2022-06-20 07:54:01 -07:00
displayName : 'Return Field Names or IDs' ,
2021-10-28 17:00:25 -07:00
name : 'returnFields' ,
type : 'multiOptions' ,
2022-07-14 13:05:11 -07:00
description : 'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-10-28 17:00:25 -07:00
typeOptions : {
loadOptionsMethod : 'getAccountFields' ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2021-10-28 17:00:25 -07:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Expand Field Names or IDs' ,
2021-10-28 17:00:25 -07:00
name : 'expandFields' ,
type : 'multiOptions' ,
2022-07-14 13:05:11 -07:00
description : 'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-10-28 17:00:25 -07:00
typeOptions : {
loadOptionsMethod : 'getExpandableAccountFields' ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2021-10-28 17:00:25 -07:00
} ,
] ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Filter' ,
default : { } ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
options : [
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
2022-04-22 09:29:51 -07:00
description : 'Query to filter the results. Check <a href="https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/query-data-web-api#filter-results" target="_blank">filters</a>.' ,
2021-10-28 17:00:25 -07:00
} ,
] ,
} ,
// ----------------------------------------
// account:update
// ----------------------------------------
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
options : [
. . . getAccountFields ( ) ,
] ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
resource : [
'account' ,
] ,
operation : [
'create' ,
'update' ,
] ,
} ,
} ,
options : [
{
2022-06-20 07:54:01 -07:00
displayName : 'Return Field Names or IDs' ,
2021-10-28 17:00:25 -07:00
name : 'returnFields' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getAccountFields' ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2022-07-14 13:05:11 -07:00
description : 'Fields the response will include. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-10-28 17:00:25 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;