2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2020-10-23 00:31:32 -07:00
2021-12-03 00:44:16 -08:00
export const companyOperations : INodeProperties [ ] = [
2020-10-23 00:31:32 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-10-23 00:31:32 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a new company' ,
2022-07-10 13:50:51 -07:00
action : 'Create a company' ,
2020-10-23 00:31:32 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a company' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a company' ,
2020-10-23 00:31:32 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get data of a company' ,
2022-07-10 13:50:51 -07:00
action : 'Get a company' ,
2020-10-23 00:31:32 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2020-10-23 00:31:32 -07:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get data of many companies' ,
2022-09-08 08:10:13 -07:00
action : 'Get many companies' ,
2020-10-23 00:31:32 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a company' ,
2022-07-10 13:50:51 -07:00
action : 'Update a company' ,
2020-10-23 00:31:32 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-10-23 00:31:32 -07:00
2021-12-03 00:44:16 -08:00
export const companyFields : INodeProperties [ ] = [
2020-10-23 00:31:32 -07:00
/* -------------------------------------------------------------------------- */
/* company:create */
/* -------------------------------------------------------------------------- */
{
displayName : 'Company Name' ,
name : 'name' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'create' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The name of the company to create' ,
2020-10-23 00:31:32 -07:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-10-23 00:31:32 -07:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'create' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-10-23 00:31:32 -07:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'create' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
options : [
2021-08-15 02:52:44 -07:00
{
displayName : 'Address' ,
name : 'addressUi' ,
placeholder : 'Address' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : false ,
} ,
default : { } ,
options : [
{
name : 'addressValues' ,
displayName : 'Address' ,
values : [
{
displayName : 'Address Line 1' ,
name : 'address1' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Address Line 2' ,
name : 'address2' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'State' ,
name : 'state' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zipCode' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Annual Revenue' ,
name : 'annualRevenue' ,
type : 'number' ,
default : 0 ,
} ,
{
displayName : 'Company Email' ,
name : 'companyEmail' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Custom Fields' ,
name : 'customFieldsUi' ,
placeholder : 'Add Custom Fields' ,
2022-05-06 14:01:25 -07:00
description : 'Adds a custom fields to set also values which have not been predefined' ,
2021-08-15 02:52:44 -07:00
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
default : { } ,
options : [
{
name : 'customFieldValues' ,
displayName : 'Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2021-08-15 02:52:44 -07:00
name : 'fieldId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCompanyFields' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-08-15 02:52:44 -07:00
} ,
{
displayName : 'Field Value' ,
name : 'fieldValue' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Value of the field to set' ,
2021-08-15 02:52:44 -07:00
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Fax' ,
name : 'fax' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Industry Name or ID' ,
2021-08-15 02:52:44 -07:00
name : 'industry' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-08-15 02:52:44 -07:00
typeOptions : {
loadOptionsMethod : 'getIndustries' ,
} ,
default : '' ,
} ,
2020-10-23 00:31:32 -07:00
{
displayName : 'Is Published' ,
name : 'isPublished' ,
type : 'boolean' ,
default : false ,
} ,
2021-08-15 02:52:44 -07:00
{
displayName : 'Number of Employees' ,
name : 'numberOfEmpoyees' ,
type : 'number' ,
default : 0 ,
} ,
2020-10-23 00:31:32 -07:00
{
displayName : 'Overwrite With Blank' ,
name : 'overwriteWithBlank' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether empty values are set to fields. Otherwise empty values are skipped.' ,
2020-10-23 00:31:32 -07:00
} ,
2021-08-15 02:52:44 -07:00
{
displayName : 'Phone' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Website' ,
name : 'website' ,
type : 'string' ,
default : '' ,
} ,
2020-10-23 00:31:32 -07:00
] ,
} ,
/* -------------------------------------------------------------------------- */
/* company:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Company ID' ,
name : 'companyId' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'company' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the company to update' ,
2020-10-23 00:31:32 -07:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-10-23 00:31:32 -07:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'update' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-10-23 00:31:32 -07:00
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'update' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
options : [
2021-08-15 02:52:44 -07:00
{
displayName : 'Address' ,
name : 'addressUi' ,
placeholder : 'Address' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : false ,
} ,
default : { } ,
options : [
{
name : 'addressValues' ,
displayName : 'Address' ,
values : [
{
displayName : 'Address Line 1' ,
name : 'address1' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Address Line 2' ,
name : 'address2' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'State' ,
name : 'state' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zipCode' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Annual Revenue' ,
name : 'annualRevenue' ,
type : 'number' ,
default : 0 ,
} ,
{
displayName : 'Company Email' ,
name : 'companyEmail' ,
type : 'string' ,
default : '' ,
} ,
2020-10-23 00:31:32 -07:00
{
displayName : 'Company Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
2021-08-15 02:52:44 -07:00
} ,
{
displayName : 'Custom Fields' ,
name : 'customFieldsUi' ,
placeholder : 'Add Custom Fields' ,
2022-05-06 14:01:25 -07:00
description : 'Adds a custom fields to set also values which have not been predefined' ,
2021-08-15 02:52:44 -07:00
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
default : { } ,
options : [
{
name : 'customFieldValues' ,
displayName : 'Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2021-08-15 02:52:44 -07:00
name : 'fieldId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCompanyFields' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-08-15 02:52:44 -07:00
} ,
{
displayName : 'Field Value' ,
name : 'fieldValue' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Value of the field to set' ,
2021-08-15 02:52:44 -07:00
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Fax' ,
name : 'fax' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Industry Name or ID' ,
2021-08-15 02:52:44 -07:00
name : 'industry' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-08-15 02:52:44 -07:00
typeOptions : {
loadOptionsMethod : 'getIndustries' ,
} ,
default : '' ,
2020-10-23 00:31:32 -07:00
} ,
{
displayName : 'Is Published' ,
name : 'isPublished' ,
type : 'boolean' ,
default : false ,
} ,
2021-08-15 02:52:44 -07:00
{
displayName : 'Number of Employees' ,
name : 'numberOfEmpoyees' ,
type : 'number' ,
default : 0 ,
} ,
2020-10-23 00:31:32 -07:00
{
displayName : 'Overwrite With Blank' ,
name : 'overwriteWithBlank' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether empty values are set to fields. Otherwise, empty values are skipped.' ,
2020-10-23 00:31:32 -07:00
} ,
2021-08-15 02:52:44 -07:00
{
displayName : 'Phone' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Website' ,
name : 'website' ,
type : 'string' ,
default : '' ,
} ,
2020-10-23 00:31:32 -07:00
] ,
} ,
/* -------------------------------------------------------------------------- */
/* company:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Company ID' ,
name : 'companyId' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'company' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the company to return' ,
2020-10-23 00:31:32 -07:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-10-23 00:31:32 -07:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'get' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-10-23 00:31:32 -07:00
} ,
/* -------------------------------------------------------------------------- */
/* company:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'getAll' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
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-23 00:31:32 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 30 ,
} ,
default : 30 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-10-23 00:31:32 -07:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-10-23 00:31:32 -07:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'getAll' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-10-23 00:31:32 -07:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'getAll' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
options : [
{
displayName : 'Order Direction' ,
name : 'orderByDir' ,
type : 'options' ,
options : [
{
name : 'ASC' ,
value : 'asc' ,
} ,
{
name : 'DESC' ,
value : 'desc' ,
} ,
] ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Sort direction: asc or desc' ,
2020-10-23 00:31:32 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Order By Name or ID' ,
2020-10-23 00:31:32 -07:00
name : 'orderBy' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCompanyFields' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Column to sort by. Can use any column listed in the response. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-23 00:31:32 -07:00
} ,
{
displayName : 'Search' ,
2021-08-15 02:52:44 -07:00
name : 'search' ,
type : 'string' ,
2020-10-23 00:31:32 -07:00
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'String or search command to filter entities by' ,
2020-10-23 00:31:32 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* company:delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Company ID' ,
name : 'companyId' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'company' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the company to delete' ,
2020-10-23 00:31:32 -07:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-10-23 00:31:32 -07:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'company' ] ,
operation : [ 'delete' ] ,
2020-10-23 00:31:32 -07:00
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-10-23 00:31:32 -07:00
} ,
2021-12-03 00:44:16 -08:00
] ;