mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
70ae90fa3c
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com>
554 lines
10 KiB
TypeScript
554 lines
10 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const tableRecordOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
},
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
},
|
|
],
|
|
default: 'get',
|
|
},
|
|
];
|
|
|
|
export const tableRecordFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* tableRecord:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Table Name or ID',
|
|
name: 'tableName',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTables',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Data to Send',
|
|
name: 'dataToSend',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Auto-Map Input Data to Columns',
|
|
value: 'mapInput',
|
|
description: 'Use when node input names match destination field names',
|
|
},
|
|
{
|
|
name: 'Define Below for Each Column',
|
|
value: 'columns',
|
|
description: 'Set the value for each destination column',
|
|
},
|
|
{
|
|
name: 'Nothing',
|
|
value: 'nothing',
|
|
description: 'Don\'t send any column data',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
default: 'columns',
|
|
},
|
|
{
|
|
displayName: 'Inputs to Ignore',
|
|
name: 'inputsToIgnore',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
dataToSend: [
|
|
'mapInput',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'List of input properties to avoid sending, separated by commas. Leave empty to send all inputs.',
|
|
},
|
|
{
|
|
displayName: 'Fields to Send',
|
|
name: 'fieldsToSend',
|
|
type: 'fixedCollection',
|
|
placeholder: 'Add field to send',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
dataToSend: [
|
|
'columns',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Field',
|
|
name: 'field',
|
|
values: [
|
|
{
|
|
displayName: 'Field Name or ID',
|
|
name: 'column',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getColumns',
|
|
loadOptionsDependsOn: [
|
|
'tableName',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Field Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* tableRecord:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Table Name or ID',
|
|
name: 'tableName',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTables',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 500,
|
|
},
|
|
default: 50,
|
|
description: 'Max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Exclude Reference Link',
|
|
name: 'sysparm_exclude_reference_link',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to exclude Table API links for reference fields',
|
|
},
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'sysparm_fields',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getColumns',
|
|
loadOptionsDependsOn: [
|
|
'tableName',
|
|
],
|
|
},
|
|
default: [],
|
|
description: 'A list of fields to return',
|
|
hint: 'String of comma separated values or an array of strings can be set in an expression',
|
|
},
|
|
{
|
|
displayName: 'Filter',
|
|
name: 'sysparm_query',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'An encoded query string used to filter the results. <a href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters">More info</a>.',
|
|
},
|
|
{
|
|
displayName: 'Return Values',
|
|
name: 'sysparm_display_value',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Actual Values',
|
|
value: 'false',
|
|
},
|
|
{
|
|
name: 'Both',
|
|
value: 'all',
|
|
},
|
|
{
|
|
name: 'Display Values',
|
|
value: 'true',
|
|
},
|
|
],
|
|
default: 'false',
|
|
description: 'Choose which values to return',
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* tableRecord:get/delete */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Table Name or ID',
|
|
name: 'tableName',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTables',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'delete',
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'Name of the table in which the record exists. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Table Record ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'delete',
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'Unique identifier of the record',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Exclude Reference Link',
|
|
name: 'sysparm_exclude_reference_link',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to exclude Table API links for reference fields',
|
|
},
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'sysparm_fields',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getColumns',
|
|
loadOptionsDependsOn: [
|
|
'tableName',
|
|
],
|
|
},
|
|
default: [],
|
|
description: 'A list of fields to return',
|
|
hint: 'String of comma separated values or an array of strings can be set in an expression',
|
|
},
|
|
{
|
|
displayName: 'Return Values',
|
|
name: 'sysparm_display_value',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Actual Values',
|
|
value: 'false',
|
|
},
|
|
{
|
|
name: 'Both',
|
|
value: 'all',
|
|
},
|
|
{
|
|
name: 'Display Values',
|
|
value: 'true',
|
|
},
|
|
],
|
|
default: 'false',
|
|
description: 'Choose which values to return',
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* tableRecord:update */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Table Name or ID',
|
|
name: 'tableName',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTables',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Table Record ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'Unique identifier of the record',
|
|
},
|
|
{
|
|
displayName: 'Data to Send',
|
|
name: 'dataToSend',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Auto-Map Input Data to Columns',
|
|
value: 'mapInput',
|
|
description: 'Use when node input names match destination field names',
|
|
},
|
|
{
|
|
name: 'Define Below for Each Column',
|
|
value: 'columns',
|
|
description: 'Set the value for each destination column',
|
|
},
|
|
{
|
|
name: 'Nothing',
|
|
value: 'nothing',
|
|
description: 'Don\'t send any column data',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
default: 'columns',
|
|
},
|
|
{
|
|
displayName: 'Inputs to Ignore',
|
|
name: 'inputsToIgnore',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
dataToSend: [
|
|
'mapInput',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'List of input properties to avoid sending, separated by commas. Leave empty to send all inputs.',
|
|
},
|
|
{
|
|
displayName: 'Fields to Send',
|
|
name: 'fieldsToSend',
|
|
type: 'fixedCollection',
|
|
placeholder: 'Add field to send',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'tableRecord',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
dataToSend: [
|
|
'columns',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Field',
|
|
name: 'field',
|
|
values: [
|
|
{
|
|
displayName: 'Field Name or ID',
|
|
name: 'column',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getColumns',
|
|
loadOptionsDependsOn: [
|
|
'tableName',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Field Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|