n8n/packages/nodes-base/nodes/Freshservice/descriptions/LocationDescription.ts
Iván Ovejero 3a9c7acb04
refactor(nodes-base): Apply lint rule node-param-operation-option-description-wrong-for-get-many (#4064)
* 👕 Enable rule

* ⬆️ Upgrade linter

* 📦 Update `package-lock.json`

* 👕 Apply rule

* ✏️ Fix plurals

* ✏️ More typos

* ✏️ Final typos
2022-09-13 12:36:36 +02:00

295 lines
5.6 KiB
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const locationOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['location'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a location',
action: 'Create a location',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a location',
action: 'Delete a location',
},
{
name: 'Get',
value: 'get',
description: 'Retrieve a location',
action: 'Get a location',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Retrieve many locations',
action: 'Get many locations',
},
{
name: 'Update',
value: 'update',
description: 'Update a location',
action: 'Update a location',
},
],
default: 'create',
},
];
export const locationFields: INodeProperties[] = [
// ----------------------------------------
// location: create
// ----------------------------------------
{
displayName: 'Name',
name: 'name',
description: 'Name of the location',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['location'],
operation: ['create'],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['location'],
operation: ['create'],
},
},
options: [
{
displayName: 'Address',
name: 'address',
placeholder: 'Add Address Fields',
type: 'fixedCollection',
default: {},
options: [
{
displayName: 'Address Details',
name: 'addressFields',
values: [
{
displayName: 'Line 1',
name: 'line1',
type: 'string',
default: '',
},
{
displayName: 'Line 2',
name: 'line2',
type: 'string',
default: '',
},
{
displayName: 'City',
name: 'city',
type: 'string',
default: '',
},
{
displayName: 'Country',
name: 'country',
type: 'string',
default: '',
},
{
displayName: 'State',
name: 'state',
type: 'string',
default: '',
},
{
displayName: 'Zip Code',
name: 'zipcode',
type: 'string',
default: '',
},
],
},
],
},
],
},
// ----------------------------------------
// location: delete
// ----------------------------------------
{
displayName: 'Location ID',
name: 'locationId',
description: 'ID of the location to delete',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['location'],
operation: ['delete'],
},
},
},
// ----------------------------------------
// location: get
// ----------------------------------------
{
displayName: 'Location ID',
name: 'locationId',
description: 'ID of the location to retrieve',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['location'],
operation: ['get'],
},
},
},
// ----------------------------------------
// location: getAll
// ----------------------------------------
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: ['location'],
operation: ['getAll'],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
},
displayOptions: {
show: {
resource: ['location'],
operation: ['getAll'],
returnAll: [false],
},
},
},
// ----------------------------------------
// location: update
// ----------------------------------------
{
displayName: 'Location ID',
name: 'locationId',
description: 'ID of the location to update',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['location'],
operation: ['update'],
},
},
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['location'],
operation: ['update'],
},
},
options: [
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
},
{
displayName: 'Address',
name: 'address',
placeholder: 'Add Address Fields',
type: 'fixedCollection',
default: {},
options: [
{
displayName: 'Address Details',
name: 'addressFields',
values: [
{
displayName: 'Line 1',
name: 'line1',
type: 'string',
default: '',
},
{
displayName: 'Line 2',
name: 'line2',
type: 'string',
default: '',
},
{
displayName: 'City',
name: 'city',
type: 'string',
default: '',
},
{
displayName: 'Country',
name: 'country',
type: 'string',
default: '',
},
{
displayName: 'State',
name: 'state',
type: 'string',
default: '',
},
{
displayName: 'Zip Code',
name: 'zipcode',
type: 'string',
default: '',
},
],
},
],
},
],
},
];