n8n/packages/nodes-base/nodes/Google/Gmail/MessageLabelDescription.ts
Iván Ovejero 6f95121fac
refactor: Add action to all operations on all nodes (#3655)
* 👕 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
2022-07-10 23:50:51 +03:00

80 lines
1.4 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const messageLabelOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'messageLabel',
],
},
},
options: [
{
name: 'Add',
value: 'add',
description: 'Add a label to a message',
action: 'Add a label to a message',
},
{
name: 'Remove',
value: 'remove',
description: 'Remove a label from a message',
action: 'Remove a label from a message',
},
],
default: 'add',
},
];
export const messageLabelFields: INodeProperties[] = [
{
displayName: 'Message ID',
name: 'messageId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'messageLabel',
],
operation: [
'add',
'remove',
],
},
},
placeholder: '172ce2c4a72cc243',
description: 'The message ID of your email',
},
{
displayName: 'Label Names or IDs',
name: 'labelIds',
type: 'multiOptions',
typeOptions: {
loadOptionsMethod: 'getLabels',
},
default: [],
required: true,
displayOptions: {
show: {
resource: [
'messageLabel',
],
operation: [
'add',
'remove',
],
},
},
description: 'The ID of the label. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
},
];