2020-10-16 01:27:09 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const customObjectOperations : INodeProperties [ ] = [
2020-10-16 01:27:09 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-10-16 01:27:09 -07:00
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a custom object record' ,
2022-07-10 13:50:51 -07:00
action : 'Create a custom object' ,
2020-10-16 01:27:09 -07:00
} ,
2021-06-09 20:25:20 -07:00
{
name : 'Create or Update' ,
value : 'upsert' ,
description : 'Create a new record, or update the current one if it already exists (upsert)' ,
2022-07-10 13:50:51 -07:00
action : 'Create or update a custom object' ,
2021-06-09 20:25:20 -07:00
} ,
2022-05-23 23:56:33 -07:00
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a custom object record' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a custom object' ,
2022-05-23 23:56:33 -07:00
} ,
2020-10-16 01:27:09 -07:00
{
name : 'Get' ,
value : 'get' ,
description : 'Get a custom object record' ,
2022-07-10 13:50:51 -07:00
action : 'Get a custom object' ,
2020-10-16 01:27:09 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all custom object records' ,
2022-07-10 13:50:51 -07:00
action : 'Get all custom objects' ,
2020-10-16 01:27:09 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a custom object record' ,
2022-07-10 13:50:51 -07:00
action : 'Update a custom object' ,
2020-10-16 01:27:09 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-10-16 01:27:09 -07:00
2021-12-03 00:44:16 -08:00
export const customObjectFields : INodeProperties [ ] = [
2020-10-16 01:27:09 -07:00
2021-01-13 01:45:41 -08:00
/* -------------------------------------------------------------------------- */
/* customObject:create */
/* -------------------------------------------------------------------------- */
2020-10-16 01:27:09 -07:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Custom Object Name or ID' ,
2020-10-16 01:27:09 -07:00
name : 'customObject' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjects' ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'create' ,
2021-06-09 20:25:20 -07:00
'upsert' ,
2020-10-16 01:27:09 -07:00
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'Name of the custom object. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
2021-06-09 20:25:20 -07:00
{
2022-06-03 10:23:49 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
2021-06-09 20:25:20 -07:00
displayName : 'Match Against' ,
name : 'externalId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getExternalIdFields' ,
loadOptionsDependsOn : [
'customObject' ,
] ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The field to check to see if the object already exists. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-06-09 20:25:20 -07:00
} ,
{
displayName : 'Value to Match' ,
name : 'externalIdValue' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
2022-04-22 09:29:51 -07:00
description : 'If this value exists in the \'match against\' field, update the object. Otherwise create a new one.' ,
2021-06-09 20:25:20 -07:00
} ,
2020-10-16 01:27:09 -07:00
{
displayName : 'Fields' ,
name : 'customFieldsUi' ,
placeholder : 'Add Field' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'create' ,
2021-06-09 20:25:20 -07:00
'upsert' ,
2020-10-16 01:27:09 -07:00
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Filter by custom fields' ,
2020-10-16 01:27:09 -07:00
default : { } ,
options : [
{
name : 'customFieldsValues' ,
displayName : 'Custom Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2020-10-16 01:27:09 -07:00
name : 'fieldId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjectFields' ,
loadOptionsDependsOn : [
'customObject' ,
] ,
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the field. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The value to set on custom field' ,
2020-10-16 01:27:09 -07:00
} ,
] ,
} ,
] ,
} ,
2021-01-13 01:45:41 -08:00
/* -------------------------------------------------------------------------- */
/* customObject:update */
/* -------------------------------------------------------------------------- */
2020-10-16 01:27:09 -07:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Custom Object Name or ID' ,
2020-10-16 01:27:09 -07:00
name : 'customObject' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjects' ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'Name of the custom object. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Record ID' ,
name : 'recordId' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Record ID to be updated' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Fields' ,
name : 'customFieldsUi' ,
placeholder : 'Add Field' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Filter by custom fields' ,
2020-10-16 01:27:09 -07:00
default : { } ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
options : [
{
name : 'customFieldsValues' ,
displayName : 'Custom Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2020-10-16 01:27:09 -07:00
name : 'fieldId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjectFields' ,
loadOptionsDependsOn : [
'customObject' ,
] ,
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the field. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The value to set on custom field' ,
2020-10-16 01:27:09 -07:00
} ,
] ,
} ,
] ,
} ,
2021-01-13 01:45:41 -08:00
/* -------------------------------------------------------------------------- */
/* customObject:get */
/* -------------------------------------------------------------------------- */
2020-10-16 01:27:09 -07:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Custom Object Name or ID' ,
2020-10-16 01:27:09 -07:00
name : 'customObject' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjects' ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'Name of the custom object. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Record ID' ,
name : 'recordId' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Record ID to be retrieved' ,
2020-10-16 01:27:09 -07:00
} ,
2021-01-13 01:45:41 -08:00
/* -------------------------------------------------------------------------- */
/* customObject:delete */
/* -------------------------------------------------------------------------- */
2020-10-16 01:27:09 -07:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Custom Object Name or ID' ,
2020-10-16 01:27:09 -07:00
name : 'customObject' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjects' ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'Name of the custom object. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Record ID' ,
name : 'recordId' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Record ID to be deleted' ,
2020-10-16 01:27:09 -07:00
} ,
2021-01-13 01:45:41 -08:00
/* -------------------------------------------------------------------------- */
/* customObject:getAll */
/* -------------------------------------------------------------------------- */
2020-10-16 01:27:09 -07:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Custom Object Name or ID' ,
2020-10-16 01:27:09 -07:00
name : 'customObject' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjects' ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'Name of the custom object. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
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' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-10-16 01:27:09 -07:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'customObject' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
options : [
2021-01-13 01:45:41 -08:00
{
displayName : 'Conditions' ,
name : 'conditionsUi' ,
placeholder : 'Add Condition' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The condition to set' ,
2021-01-13 01:45:41 -08:00
default : { } ,
options : [
{
name : 'conditionValues' ,
displayName : 'Condition' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2021-01-13 01:45:41 -08:00
name : 'field' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjectFields' ,
loadOptionsDependsOn : [
'customObject' ,
] ,
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
description : 'For date, number, or boolean, please use expressions. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-01-13 01:45:41 -08:00
} ,
2022-05-20 14:47:24 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-operation-without-no-data-expression
2021-01-13 01:45:41 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
options : [
2022-06-03 10:23:49 -07:00
{
name : '<' ,
value : '<' ,
} ,
{
name : '<=' ,
value : '<=' ,
} ,
2021-01-13 01:45:41 -08:00
{
name : '=' ,
value : 'equal' ,
} ,
{
name : '>' ,
value : '>' ,
} ,
{
name : '>=' ,
value : '>=' ,
} ,
] ,
default : 'equal' ,
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
] ,
} ,
2020-10-16 01:27:09 -07:00
{
2022-06-20 07:54:01 -07:00
displayName : 'Field Names or IDs' ,
2020-10-16 01:27:09 -07:00
name : 'fields' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getCustomObjectFields' ,
loadOptionsDependsOn : [
'customObject' ,
] ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'Fields to include separated by commas. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-16 01:27:09 -07:00
} ,
] ,
} ,
2021-08-07 00:41:00 -07:00
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
displayOptions : {
show : {
operation : [
'create' ,
'upsert' ,
] ,
resource : [
'customObject' ,
] ,
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Record Type Name or ID' ,
2021-08-07 00:41:00 -07:00
name : 'recordTypeId' ,
type : 'options' ,
2022-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2021-08-07 00:41:00 -07:00
typeOptions : {
loadOptionsMethod : 'getRecordTypes' ,
loadOptionsDependsOn : [
'customObject' ,
] ,
} ,
default : '' ,
} ,
] ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'customObject' ,
] ,
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Record Type Name or ID' ,
2021-08-07 00:41:00 -07:00
name : 'recordTypeId' ,
type : 'options' ,
2022-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2021-08-07 00:41:00 -07:00
typeOptions : {
loadOptionsMethod : 'getRecordTypes' ,
loadOptionsDependsOn : [
'customObject' ,
] ,
} ,
default : '' ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;