mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
fbb8611ae2
* 🔥 Remove from client * 📘 Update interface comment * ✏️ Update docs * ⚡ Update nodes * ✏️ Fix typo * ⏪ Restore misremoved property * 🔥 Remove more instances
168 lines
3.6 KiB
TypeScript
168 lines
3.6 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const chatMessageOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['chatMessage'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
description: 'Create a message',
|
|
action: 'Create a chat message',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get a message',
|
|
action: 'Get a chat message',
|
|
},
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
description: 'Get many messages',
|
|
action: 'Get many chat messages',
|
|
},
|
|
],
|
|
default: 'create',
|
|
},
|
|
];
|
|
|
|
export const chatMessageFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* chatMessage:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Chat Name or ID',
|
|
name: 'chatId',
|
|
required: true,
|
|
type: 'options',
|
|
description:
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChats',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['create', 'get'],
|
|
resource: ['chatMessage'],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Message Type',
|
|
name: 'messageType',
|
|
required: true,
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Text',
|
|
value: 'text',
|
|
},
|
|
{
|
|
name: 'HTML',
|
|
value: 'html',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['create'],
|
|
resource: ['chatMessage'],
|
|
},
|
|
},
|
|
default: 'text',
|
|
description: 'The type of the content',
|
|
},
|
|
{
|
|
displayName: 'Message',
|
|
name: 'message',
|
|
required: true,
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['create'],
|
|
resource: ['chatMessage'],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The content of the item',
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* chatMessage:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Message ID',
|
|
name: 'messageId',
|
|
required: true,
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['get'],
|
|
resource: ['chatMessage'],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* chatMessage:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Chat Name or ID',
|
|
name: 'chatId',
|
|
required: true,
|
|
type: 'options',
|
|
description:
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChats',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['getAll'],
|
|
resource: ['chatMessage'],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['getAll'],
|
|
resource: ['chatMessage'],
|
|
},
|
|
},
|
|
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: ['chatMessage'],
|
|
returnAll: [false],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 500,
|
|
},
|
|
default: 50,
|
|
description: 'Max number of results to return',
|
|
},
|
|
];
|