2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2020-12-10 02:09:38 -08:00
2021-12-03 00:44:16 -08:00
export const messageConversationOperations : INodeProperties [ ] = [
2020-12-10 02:09:38 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-12-10 02:09:38 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'messageConversation' ] ,
2020-12-10 02:09:38 -08:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a message in a conversation' ,
2022-07-10 13:50:51 -07:00
action : 'Create a message' ,
2020-12-10 02:09:38 -08:00
} ,
2021-04-30 17:44:12 -07:00
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a message in a conversation' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a message' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a message in a conversation' ,
2022-07-10 13:50:51 -07:00
action : 'Get a message' ,
2021-04-30 17:44:12 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-04-30 17:44:12 -07:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many messages in a conversation' ,
2022-09-08 08:10:13 -07:00
action : 'Get many messages' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a message in a conversation' ,
2022-07-10 13:50:51 -07:00
action : 'Update a message' ,
2021-04-30 17:44:12 -07:00
} ,
2020-12-10 02:09:38 -08:00
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-12-10 02:09:38 -08:00
2021-12-03 00:44:16 -08:00
export const messageConversationFields : INodeProperties [ ] = [
2020-12-10 02:09:38 -08:00
/* -------------------------------------------------------------------------- */
/* messageConversation:create */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Workspace Name or ID' ,
2020-12-10 02:09:38 -08:00
name : 'workspaceId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWorkspaces' ,
} ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'messageConversation' ] ,
2020-12-10 02:09:38 -08:00
} ,
} ,
required : true ,
2022-08-17 08:50:24 -07:00
description :
'The ID of the workspace. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-12-10 02:09:38 -08:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Conversation Name or ID' ,
2020-12-10 02:09:38 -08:00
name : 'conversationId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getConversations' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'workspaceId' ] ,
2020-12-10 02:09:38 -08:00
} ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'messageConversation' ] ,
2020-12-10 02:09:38 -08:00
} ,
} ,
required : true ,
2022-08-17 08:50:24 -07:00
description :
'The ID of the conversation. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-12-10 02:09:38 -08:00
} ,
{
displayName : 'Content' ,
name : 'content' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'messageConversation' ] ,
2020-12-10 02:09:38 -08:00
} ,
} ,
2022-08-17 08:50:24 -07:00
description :
'The content of the new message. Mentions can be used as <code>[Name](twist-mention://user_id)</code> for users or <code>[Group name](twist-group-mention://group_id)</code> for groups.' ,
2020-12-10 02:09:38 -08:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'messageConversation' ] ,
2020-12-10 02:09:38 -08:00
} ,
} ,
default : { } ,
2022-05-06 14:01:25 -07:00
description : 'Other options to set' ,
2020-12-10 02:09:38 -08:00
placeholder : 'Add options' ,
options : [
{
displayName : 'Actions' ,
name : 'actionsUi' ,
type : 'fixedCollection' ,
2021-12-03 00:44:16 -08:00
default : { } ,
2020-12-10 02:09:38 -08:00
placeholder : 'Add Action' ,
typeOptions : {
multipleValues : true ,
} ,
options : [
{
displayName : 'Action' ,
name : 'actionValues' ,
values : [
{
displayName : 'Action' ,
name : 'action' ,
type : 'options' ,
2022-05-06 14:01:25 -07:00
description : 'The action of the button' ,
2020-12-10 02:09:38 -08:00
options : [
{
name : 'Open URL' ,
value : 'open_url' ,
} ,
{
name : 'Prefill Message' ,
value : 'prefill_message' ,
} ,
{
name : 'Send Reply' ,
value : 'send_reply' ,
} ,
] ,
default : '' ,
} ,
{
displayName : 'Button Text' ,
name : 'button_text' ,
type : 'string' ,
2022-05-06 14:01:25 -07:00
description : 'The text for the action button' ,
2020-12-10 02:09:38 -08:00
default : '' ,
} ,
{
displayName : 'Message' ,
name : 'message' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
action : [ 'send_reply' , 'prefill_message' ] ,
2020-12-10 02:09:38 -08:00
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The text for the action button' ,
2020-12-10 02:09:38 -08:00
default : '' ,
} ,
{
displayName : 'Type' ,
name : 'type' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'The type of the button. (Currently only <code>action</code> is available).' ,
2020-12-10 02:09:38 -08:00
options : [
{
name : 'Action' ,
value : 'action' ,
} ,
] ,
default : '' ,
} ,
{
displayName : 'URL' ,
name : 'url' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
action : [ 'open_url' ] ,
2020-12-10 02:09:38 -08:00
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'URL to redirect' ,
2020-12-10 02:09:38 -08:00
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Attachments' ,
name : 'binaryProperties' ,
type : 'string' ,
default : 'data' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the property that holds the binary data. Multiple can be defined separated by comma.' ,
2020-12-10 02:09:38 -08:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Direct Mention Names or IDs' ,
2020-12-10 02:09:38 -08:00
name : 'direct_mentions' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'The users that are directly mentioned. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-12-10 02:09:38 -08:00
} ,
// {
// displayName: 'Direct Group Mentions ',
// name: 'direct_group_mentions',
// type: 'multiOptions',
// typeOptions: {
// loadOptionsMethod: 'getGroups',
// },
// default: [],
2021-04-30 17:44:12 -07:00
// description: 'The groups that are directly mentioned.',
2020-12-10 02:09:38 -08:00
// },
] ,
} ,
2021-04-30 17:44:12 -07:00
/* -------------------------------------------------------------------------- */
/* messageConversation:getAll */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Workspace Name or ID' ,
2021-04-30 17:44:12 -07:00
name : 'workspaceId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWorkspaces' ,
} ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'messageConversation' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-08-17 08:50:24 -07:00
description :
'The ID of the workspace. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-04-30 17:44:12 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Conversation Name or ID' ,
2021-04-30 17:44:12 -07:00
name : 'conversationId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getConversations' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'workspaceId' ] ,
2021-04-30 17:44:12 -07:00
} ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'messageConversation' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-08-17 08:50:24 -07:00
description :
'The ID of the conversation. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'messageConversation' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
default : { } ,
2022-05-06 14:01:25 -07:00
description : 'Other options to set' ,
2021-04-30 17:44:12 -07:00
options : [
{
displayName : 'Ending Object Index' ,
name : 'to_obj_index' ,
type : 'number' ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Limit messages ending at the specified object index' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
2022-05-20 14:47:24 -07:00
typeOptions : {
minValue : 1 ,
} ,
2021-04-30 17:44:12 -07:00
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Order By' ,
name : 'order_by' ,
type : 'options' ,
default : 'ASC' ,
2022-05-06 14:01:25 -07:00
description : 'The order of the conversations returned - one of DESC or ASC' ,
2021-04-30 17:44:12 -07:00
options : [
{
name : 'ASC' ,
value : 'ASC' ,
} ,
{
name : 'DESC' ,
value : 'DESC' ,
} ,
] ,
} ,
{
displayName : 'Starting Object Index' ,
name : 'from_obj_index' ,
type : 'number' ,
default : 0 ,
2022-05-06 14:01:25 -07:00
description : 'Limit messages starting at the specified object index' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* messageConversation:get/delete/update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Message ID' ,
name : 'id' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' , 'get' ] ,
resource : [ 'messageConversation' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the conversation message' ,
2021-04-30 17:44:12 -07:00
} ,
2021-12-03 00:44:16 -08:00
2021-04-30 17:44:12 -07:00
/* -------------------------------------------------------------------------- */
/* messageConversation:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Conversation Message ID' ,
name : 'id' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'messageConversation' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the conversation message' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'messageConversation' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
default : { } ,
2022-05-06 14:01:25 -07:00
description : 'Other options to set' ,
2021-04-30 17:44:12 -07:00
options : [
{
displayName : 'Actions' ,
name : 'actionsUi' ,
type : 'fixedCollection' ,
2021-12-03 00:44:16 -08:00
default : { } ,
2021-04-30 17:44:12 -07:00
placeholder : 'Add Action' ,
typeOptions : {
multipleValues : true ,
} ,
options : [
{
displayName : 'Action' ,
name : 'actionValues' ,
values : [
{
displayName : 'Action' ,
name : 'action' ,
type : 'options' ,
2022-05-06 14:01:25 -07:00
description : 'The action of the button' ,
2021-04-30 17:44:12 -07:00
options : [
{
name : 'Open URL' ,
value : 'open_url' ,
} ,
{
name : 'Prefill Message' ,
value : 'prefill_message' ,
} ,
{
name : 'Send Reply' ,
value : 'send_reply' ,
} ,
] ,
default : '' ,
} ,
{
displayName : 'Button Text' ,
name : 'button_text' ,
type : 'string' ,
2022-05-06 14:01:25 -07:00
description : 'The text for the action button' ,
2021-04-30 17:44:12 -07:00
default : '' ,
} ,
{
displayName : 'Message' ,
name : 'message' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
action : [ 'send_reply' , 'prefill_message' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The text for the action button' ,
2021-04-30 17:44:12 -07:00
default : '' ,
} ,
{
displayName : 'Type' ,
name : 'type' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'The type of the button. (Currently only <code>action</code> is available).' ,
2021-04-30 17:44:12 -07:00
options : [
{
name : 'Action' ,
value : 'action' ,
} ,
] ,
default : '' ,
} ,
{
displayName : 'URL' ,
name : 'url' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
action : [ 'open_url' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'URL to redirect' ,
2021-04-30 17:44:12 -07:00
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Attachments' ,
name : 'binaryProperties' ,
type : 'string' ,
default : 'data' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the property that holds the binary data. Multiple can be defined separated by comma.' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Content' ,
name : 'content' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The content of the new message. Mentions can be used as <code>[Name](twist-mention://user_id)</code> for users or <code>[Group name](twist-group-mention://group_id)</code> for groups.' ,
2021-04-30 17:44:12 -07:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Direct Mention Names or IDs' ,
2021-04-30 17:44:12 -07:00
name : 'direct_mentions' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'The users that are directly mentioned. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;