n8n/packages/nodes-base/nodes/QuickBase/FieldDescription.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

98 lines
1.9 KiB
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const fieldOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['field'],
},
},
options: [
{
name: 'Get All',
value: 'getAll',
description: 'Get all fields',
action: 'Get all fields',
},
],
default: 'getAll',
},
];
export const fieldFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* field:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Table ID',
name: 'tableId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['field'],
operation: ['getAll'],
},
},
description: 'The table identifier',
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['field'],
operation: ['getAll'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: ['field'],
operation: ['getAll'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
maxValue: 100,
},
default: 50,
description: 'Max number of results to return',
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['field'],
operation: ['getAll'],
},
},
options: [
{
displayName: 'Include Field Perms',
name: 'includeFieldPerms',
type: 'boolean',
default: false,
description: 'Whether to get back the custom permissions for the field(s)',
},
],
},
];