2020-10-23 00:31:32 -07:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
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',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a new company',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a company',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get data of a company',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
|
|
|
description: 'Get data of all companies',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a company',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
description: 'The operation to perform',
|
|
|
|
},
|
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: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'The name of the company to create.',
|
|
|
|
},
|
|
|
|
{
|
2021-07-10 02:38:45 -07:00
|
|
|
displayName: 'Simplify Response',
|
2020-10-23 00:31:32 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-07-10 02:38:45 -07:00
|
|
|
description: '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: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
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',
|
|
|
|
description: 'Adds a custom fields to set also values which have not been predefined.',
|
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: true,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'customFieldValues',
|
|
|
|
displayName: 'Field',
|
|
|
|
values: [
|
|
|
|
{
|
|
|
|
displayName: 'Field ID',
|
|
|
|
name: 'fieldId',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getCompanyFields',
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'ID of the field to set.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Field Value',
|
|
|
|
name: 'fieldValue',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Value of the field to set.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Fax',
|
|
|
|
name: 'fax',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Industry',
|
|
|
|
name: 'industry',
|
|
|
|
type: 'options',
|
|
|
|
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,
|
|
|
|
description: 'If true, then empty values are set to fields. Otherwise empty values are skipped',
|
|
|
|
},
|
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: {
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'The ID of the company to update.',
|
|
|
|
},
|
|
|
|
{
|
2021-07-10 02:38:45 -07:00
|
|
|
displayName: 'Simplify Response',
|
2020-10-23 00:31:32 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-07-10 02:38:45 -07:00
|
|
|
description: '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: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
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',
|
|
|
|
description: 'Adds a custom fields to set also values which have not been predefined.',
|
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: true,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'customFieldValues',
|
|
|
|
displayName: 'Field',
|
|
|
|
values: [
|
|
|
|
{
|
|
|
|
displayName: 'Field ID',
|
|
|
|
name: 'fieldId',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getCompanyFields',
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'ID of the field to set.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Field Value',
|
|
|
|
name: 'fieldValue',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Value of the field to set.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Fax',
|
|
|
|
name: 'fax',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Industry',
|
|
|
|
name: 'industry',
|
|
|
|
type: 'options',
|
|
|
|
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,
|
|
|
|
description: 'If true, then empty values are set to fields. Otherwise empty values are skipped',
|
|
|
|
},
|
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: {
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'The ID of the company to return.',
|
|
|
|
},
|
|
|
|
{
|
2021-07-10 02:38:45 -07:00
|
|
|
displayName: 'Simplify Response',
|
2020-10-23 00:31:32 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-07-10 02:38:45 -07:00
|
|
|
description: '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: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
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: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
returnAll: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 30,
|
|
|
|
},
|
|
|
|
default: 30,
|
|
|
|
description: 'How many results to return.',
|
|
|
|
},
|
|
|
|
{
|
2021-07-10 02:38:45 -07:00
|
|
|
displayName: 'Simplify Response',
|
2020-10-23 00:31:32 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-07-10 02:38:45 -07:00
|
|
|
description: '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: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Order Direction',
|
|
|
|
name: 'orderByDir',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'ASC',
|
|
|
|
value: 'asc',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'DESC',
|
|
|
|
value: 'desc',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: '',
|
|
|
|
description: 'Sort direction: asc or desc.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Order By',
|
|
|
|
name: 'orderBy',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getCompanyFields',
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'Column to sort by. Can use any column listed in the response.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Search',
|
2021-08-15 02:52:44 -07:00
|
|
|
name: 'search',
|
|
|
|
type: 'string',
|
2020-10-23 00:31:32 -07:00
|
|
|
default: '',
|
|
|
|
description: 'String or search command to filter entities by.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* company:delete */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Company ID',
|
|
|
|
name: 'companyId',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'The ID of the company to delete.',
|
|
|
|
},
|
|
|
|
{
|
2021-07-10 02:38:45 -07:00
|
|
|
displayName: 'Simplify Response',
|
2020-10-23 00:31:32 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'company',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-07-10 02:38:45 -07:00
|
|
|
description: '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
|
|
|
];
|