import { INodeProperties, } from 'n8n-workflow'; export const customObjectOperations = [ { displayName: 'Operation', name: 'operation', type: 'options', displayOptions: { show: { resource: [ 'customObject', ], }, }, options: [ { name: 'Create', value: 'create', description: 'Create a custom object record', }, { name: 'Get', value: 'get', description: 'Get a custom object record', }, { name: 'Get All', value: 'getAll', description: 'Get all custom object records', }, { name: 'Delete', value: 'delete', description: 'Delete a custom object record', }, { name: 'Update', value: 'update', description: 'Update a custom object record', }, ], default: 'create', description: 'The operation to perform.', }, ] as INodeProperties[]; export const customObjectFields = [ /* -------------------------------------------------------------------------- */ /* customObject:create */ /* -------------------------------------------------------------------------- */ { displayName: 'Custom Object', name: 'customObject', type: 'options', typeOptions: { loadOptionsMethod: 'getCustomObjects', }, required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'create', ], }, }, description: 'Name of the custom object', }, { displayName: 'Fields', name: 'customFieldsUi', placeholder: 'Add Field', type: 'fixedCollection', typeOptions: { multipleValues: true, }, displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'create', ], }, }, description: 'Filter by custom fields ', default: {}, options: [ { name: 'customFieldsValues', displayName: 'Custom Field', values: [ { displayName: 'Field ID', name: 'fieldId', type: 'options', typeOptions: { loadOptionsMethod: 'getCustomObjectFields', loadOptionsDependsOn: [ 'customObject', ], }, default: '', description: 'The ID of the field.', }, { displayName: 'Value', name: 'value', type: 'string', default: '', description: 'The value to set on custom field.', }, ], }, ], }, /* -------------------------------------------------------------------------- */ /* customObject:update */ /* -------------------------------------------------------------------------- */ { displayName: 'Custom Object', name: 'customObject', type: 'options', typeOptions: { loadOptionsMethod: 'getCustomObjects', }, required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'update', ], }, }, description: 'Name of the custom object', }, { displayName: 'Record ID', name: 'recordId', type: 'string', required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'update', ], }, }, description: 'Record id to be updated', }, { displayName: 'Fields', name: 'customFieldsUi', placeholder: 'Add Field', type: 'fixedCollection', typeOptions: { multipleValues: true, }, description: 'Filter by custom fields ', default: {}, displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'update', ], }, }, options: [ { name: 'customFieldsValues', displayName: 'Custom Field', values: [ { displayName: 'Field ID', name: 'fieldId', type: 'options', typeOptions: { loadOptionsMethod: 'getCustomObjectFields', loadOptionsDependsOn: [ 'customObject', ], }, default: '', description: 'The ID of the field.', }, { displayName: 'Value', name: 'value', type: 'string', default: '', description: 'The value to set on custom field.', }, ], }, ], }, /* -------------------------------------------------------------------------- */ /* customObject:get */ /* -------------------------------------------------------------------------- */ { displayName: 'Custom Object', name: 'customObject', type: 'options', typeOptions: { loadOptionsMethod: 'getCustomObjects', }, required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'get', ], }, }, description: 'Name of the custom object', }, { displayName: 'Record ID', name: 'recordId', type: 'string', required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'get', ], }, }, description: 'Record id to be retrieved', }, /* -------------------------------------------------------------------------- */ /* customObject:delete */ /* -------------------------------------------------------------------------- */ { displayName: 'Custom Object', name: 'customObject', type: 'options', typeOptions: { loadOptionsMethod: 'getCustomObjects', }, required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'delete', ], }, }, description: 'Name of the custom object', }, { displayName: 'Record ID', name: 'recordId', type: 'string', required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'delete', ], }, }, description: 'Record id to be deleted', }, /* -------------------------------------------------------------------------- */ /* customObject:getAll */ /* -------------------------------------------------------------------------- */ { displayName: 'Custom Object', name: 'customObject', type: 'options', typeOptions: { loadOptionsMethod: 'getCustomObjects', }, required: true, default: '', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'getAll', ], }, }, description: 'Name of the custom object', }, { displayName: 'Return All', name: 'returnAll', type: 'boolean', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'getAll', ], }, }, default: false, description: 'If all results should be returned or only up to a given limit.', }, { displayName: 'Limit', name: 'limit', type: 'number', displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'getAll', ], returnAll: [ false, ], }, }, typeOptions: { minValue: 1, maxValue: 100, }, default: 50, description: 'How many results to return.', }, { displayName: 'Options', name: 'options', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: [ 'customObject', ], operation: [ 'getAll', ], }, }, options: [ { displayName: 'Fields', name: 'fields', type: 'multiOptions', typeOptions: { loadOptionsMethod: 'getCustomObjectFields', loadOptionsDependsOn: [ 'customObject', ], }, default: '', description: 'Fields to include separated by ,', }, ], }, ] as INodeProperties[];