2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2022-02-11 23:40:54 -08:00
export const organizationDescription : INodeProperties [ ] = [
// ----------------------------------
// operations
// ----------------------------------
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
noDataExpression : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'organization' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create an organization' ,
2022-07-10 13:50:51 -07:00
action : 'Create an organization' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete an organization' ,
2022-07-10 13:50:51 -07:00
action : 'Delete an organization' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Retrieve an organization' ,
2022-07-10 13:50:51 -07:00
action : 'Get an organization' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Retrieve all organizations' ,
2022-07-10 13:50:51 -07:00
action : 'Get all organizations' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update an organization' ,
2022-07-10 13:50:51 -07:00
action : 'Update an organization' ,
2022-02-11 23:40:54 -08:00
} ,
] ,
default : 'create' ,
} ,
// ----------------------------------
// fields
// ----------------------------------
{
displayName : 'Organization Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'organization' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Organization ID' ,
name : 'id' ,
type : 'string' ,
2022-08-17 08:50:24 -07:00
description :
'Organization to update. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'organization' ] ,
operation : [ 'update' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Organization ID' ,
name : 'id' ,
type : 'string' ,
2022-08-17 08:50:24 -07:00
description :
'Organization to delete. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'organization' ] ,
operation : [ 'delete' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Organization ID' ,
name : 'id' ,
type : 'string' ,
2022-08-17 08:50:24 -07:00
description :
'Organization to retrieve. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'organization' ] ,
operation : [ 'get' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'organization' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
displayName : 'Active' ,
name : 'active' ,
type : 'boolean' ,
default : true ,
} ,
{
displayName : 'Custom Fields' ,
name : 'customFieldsUi' ,
type : 'fixedCollection' ,
2022-04-22 09:29:51 -07:00
default : { } ,
2022-02-11 23:40:54 -08:00
placeholder : 'Add Custom Field' ,
typeOptions : {
multipleValues : true ,
} ,
options : [
{
name : 'customFieldPairs' ,
displayName : 'Custom Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2022-02-11 23:40:54 -08:00
name : 'name' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'loadOrganizationCustomFields' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
description : 'Value to set on the custom field' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Notes' ,
name : 'note' ,
type : 'string' ,
default : '' ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
} ,
] ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'organization' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
displayName : 'Active' ,
name : 'active' ,
type : 'boolean' ,
default : true ,
} ,
{
displayName : 'Custom Fields' ,
name : 'customFieldsUi' ,
type : 'fixedCollection' ,
2022-04-22 09:29:51 -07:00
default : { } ,
2022-02-11 23:40:54 -08:00
placeholder : 'Add Custom Field' ,
typeOptions : {
multipleValues : true ,
} ,
options : [
{
name : 'customFieldPairs' ,
displayName : 'Custom Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2022-02-11 23:40:54 -08:00
name : 'name' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'loadOrganizationCustomFields' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
description : 'Value to set on the custom field' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Organization Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Notes' ,
name : 'note' ,
type : 'string' ,
default : '' ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
} ,
] ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
description : 'Whether to return all results or only up to a given limit' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'organization' ] ,
operation : [ 'getAll' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 50 ,
description : 'Max number of results to return' ,
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'organization' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
] ;