n8n/packages/nodes-base/nodes/Odoo/descriptions/NoteDescription.ts
Iván Ovejero b03e358a12
refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)
* 👕 Enable `consistent-type-imports` for nodes-base

* 👕 Apply to nodes-base

*  Undo unrelated changes

* 🚚 Move to `.eslintrc.js` in nodes-base

*  Revert "Enable `consistent-type-imports` for nodes-base"

This reverts commit 529ad72b05.

* 👕 Fix severity
2023-01-27 12:22:44 +01:00

233 lines
4.8 KiB
TypeScript

import type { 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 Many',
value: 'getAll',
description: 'Get many notes',
action: 'Get many 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/code-examples/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: '',
// },
// ],
// },
];