n8n/packages/nodes-base/nodes/QuickBase/FieldDescription.ts

119 lines
2 KiB
TypeScript
Raw Normal View History

import {
INodeProperties,
} from 'n8n-workflow';
export const fieldOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'field',
],
},
},
options: [
{
name: 'Get All',
value: 'getAll',
description: 'Get all fields',
},
],
2020-11-25 04:09:58 -08:00
default: 'getAll',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const fieldFields = [
/* -------------------------------------------------------------------------- */
/* 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: 'Returns a list of your user contacts.',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: [
'field',
],
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: [
'field',
],
operation: [
'getAll',
],
},
},
options: [
{
displayName: 'Include Field Perms',
name: 'includeFieldPerms',
type: 'boolean',
default: false,
description: `Set to 'true' if you'd like to get back the custom permissions for the field(s)`,
},
],
},
] as INodeProperties[];