n8n/packages/nodes-base/nodes/Microsoft/Teams/ChannelMessageDescription.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

249 lines
4.7 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const channelMessageOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'channelMessage',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a message',
action: 'Create a message in a channel',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all messages',
action: 'Get all messages in a channel',
},
],
default: 'create',
},
];
export const channelMessageFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* channelMessage:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Team Name or ID',
name: 'teamId',
required: true,
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
typeOptions: {
loadOptionsMethod: 'getTeams',
},
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'channelMessage',
],
},
},
default: '',
},
{
displayName: 'Channel Name or ID',
name: 'channelId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
typeOptions: {
loadOptionsMethod: 'getChannels',
loadOptionsDependsOn: [
'teamId',
],
},
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'channelMessage',
],
},
},
default: '',
},
{
displayName: 'Message Type',
name: 'messageType',
required: true,
type: 'options',
options: [
{
name: 'Text',
value: 'text',
},
{
name: 'HTML',
value: 'html',
},
],
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'channelMessage',
],
},
},
default: 'text',
description: 'The type of the content',
},
{
displayName: 'Message',
name: 'message',
required: true,
type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'channelMessage',
],
},
},
default: '',
description: 'The content of the item',
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'channelMessage',
],
operation: [
'create',
],
},
},
options: [
{
displayName: 'Make Reply',
name: 'makeReply',
type: 'string',
default: '',
description: 'An optional ID of the message you want to reply to',
},
],
},
/* -------------------------------------------------------------------------- */
/* channelMessage:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Team Name or ID',
name: 'teamId',
required: true,
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
typeOptions: {
loadOptionsMethod: 'getTeams',
},
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'channelMessage',
],
},
},
default: '',
},
{
displayName: 'Channel Name or ID',
name: 'channelId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
typeOptions: {
loadOptionsMethod: 'getChannels',
loadOptionsDependsOn: [
'teamId',
],
},
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'channelMessage',
],
},
},
default: '',
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'channelMessage',
],
},
},
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: [
'channelMessage',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 500,
},
default: 50,
description: 'Max number of results to return',
},
];