mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
6f95121fac
* 👕 Add `action` to `INodePropertyOptions` * 👕 Apply `node-param-operation-option-without-action` * ✏️ Fix add/remove phrasing * ✏️ Fix email template phrasing * ✏️ Fix add/remove phrasing * ✏️ Fix custom fields phrasing * ✏️ Fix job report phrasing * ✏️ Fix query phrasing * ✏️ Various phrasing fixes * ✏️ Fix final phrasings * ✏️ Remove `conversation` * ✏️ Fix plural
268 lines
5 KiB
TypeScript
268 lines
5 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const noteOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
default: 'create',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'note',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
description: 'Create a new note',
|
|
action: 'Create a note',
|
|
},
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
description: 'Delete a note',
|
|
action: 'Delete a note',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get a note',
|
|
action: 'Get a note',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
description: 'Get all notes',
|
|
action: 'Get all notes',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
description: 'Update a note',
|
|
action: 'Update a note',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export const noteDescription: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* note:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Memo',
|
|
name: 'memo',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'create',
|
|
],
|
|
resource: [
|
|
'note',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
// {
|
|
// displayName: 'Additional Fields',
|
|
// name: 'additionalFields',
|
|
// type: 'collection',
|
|
// default: {},
|
|
// placeholder: 'Add Field',
|
|
// displayOptions: {
|
|
// show: {
|
|
// operation: [
|
|
// 'create',
|
|
// ],
|
|
// resource: [
|
|
// 'note',
|
|
// ],
|
|
// },
|
|
// },
|
|
// options: [
|
|
// {
|
|
// displayName: 'Name',
|
|
// name: 'name',
|
|
// type: 'string',
|
|
// default: '',
|
|
// },
|
|
// ],
|
|
// },
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* note:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Note ID',
|
|
name: 'noteId',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
'delete',
|
|
],
|
|
resource: [
|
|
'note',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* note:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'note',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
default: 50,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'note',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 1000,
|
|
},
|
|
description: 'Max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
default: {},
|
|
placeholder: 'Add Field',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
'get',
|
|
],
|
|
resource: [
|
|
'note',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-multi-options
|
|
displayName: 'Fields to Include',
|
|
name: 'fieldsList',
|
|
type: 'multiOptions',
|
|
description: 'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getModelFields',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* note:update */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Note ID',
|
|
name: 'noteId',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'update',
|
|
],
|
|
resource: [
|
|
'note',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Memo',
|
|
name: 'memo',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'update',
|
|
],
|
|
resource: [
|
|
'note',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
// {
|
|
// displayName: 'Update Fields',
|
|
// name: 'updateFields',
|
|
// type: 'collection',
|
|
// default: {},
|
|
// placeholder: 'Add Field',
|
|
// displayOptions: {
|
|
// show: {
|
|
// operation: [
|
|
// 'update',
|
|
// ],
|
|
// resource: [
|
|
// 'note',
|
|
// ],
|
|
// },
|
|
// },
|
|
// options: [
|
|
// {
|
|
// displayName: 'Name',
|
|
// name: 'name',
|
|
// type: 'string',
|
|
// default: '',
|
|
// },
|
|
// {
|
|
// displayName: 'Memo',
|
|
// name: 'memo',
|
|
// type: 'string',
|
|
// default: '',
|
|
// },
|
|
// ],
|
|
// },
|
|
];
|