2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-04-30 17:44:12 -07:00
2021-12-03 00:44:16 -08:00
export const threadOperations : INodeProperties [ ] = [
2021-04-30 17:44:12 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-04-30 17:44:12 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'thread' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a new thread in a channel' ,
2022-07-10 13:50:51 -07:00
action : 'Create a thread' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a thread' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a thread' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get information about a thread' ,
2022-07-10 13:50:51 -07:00
action : 'Get a thread' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all threads' ,
2022-07-10 13:50:51 -07:00
action : 'Get all threads' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a thread' ,
2022-07-10 13:50:51 -07:00
action : 'Update a thread' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-04-30 17:44:12 -07:00
2021-12-03 00:44:16 -08:00
export const threadFields : INodeProperties [ ] = [
2021-04-30 17:44:12 -07:00
/*-------------------------------------------------------------------------- */
/* thread:create */
/* ------------------------------------------------------------------------- */
{
displayName : 'Channel ID' ,
name : 'channelId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'thread' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the channel' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Title' ,
name : 'title' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'thread' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The title of the new thread (1 < length < 300)' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Content' ,
name : 'content' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'thread' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The content of the thread' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'thread' ] ,
operation : [ 'create' ] ,
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
} ,
{
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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'workspaceId' ] ,
2021-04-30 17:44:12 -07:00
} ,
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
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Recipient Names or IDs' ,
2021-04-30 17:44:12 -07:00
name : 'recipients' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'workspaceId' ] ,
2021-04-30 17:44:12 -07:00
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'The users that will attached to the thread. 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
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Send as Integration' ,
2021-04-30 17:44:12 -07:00
name : 'send_as_integration' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether to display the integration as the thread creator' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Temporary ID' ,
name : 'temp_id' ,
type : 'number' ,
default : 0 ,
2022-05-06 14:01:25 -07:00
description : 'The temporary ID of the thread' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* thread:get/delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Thread ID' ,
name : 'threadId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' , 'delete' ] ,
resource : [ 'thread' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the thread' ,
2021-04-30 17:44:12 -07:00
} ,
/* -------------------------------------------------------------------------- */
/* thread:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Channel ID' ,
name : 'channelId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'thread' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the channel' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'thread' ] ,
operation : [ 'getAll' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'thread' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
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 : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'thread' ] ,
operation : [ 'getAll' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
options : [
{
displayName : 'As IDs' ,
name : 'as_ids' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether only the IDs of the threads are returned' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Filter By' ,
name : 'filter_by' ,
type : 'options' ,
options : [
{
2022-06-03 10:23:49 -07:00
name : 'Attached to Me' ,
2021-04-30 17:44:12 -07:00
value : 'attached_to_me' ,
} ,
{
name : 'Everyone' ,
value : 'everyone' ,
} ,
{
name : 'Starred' ,
value : 'is_starred' ,
} ,
] ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'A filter can be one of <code>attached_to_me</code>, <code>everyone</code> and <code>is_starred</code>' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Newer Than' ,
name : 'newer_than_ts' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Limits threads to those newer when the specified Unix time' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Older Than' ,
name : 'older_than_ts' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Limits threads to those older than the specified Unix time' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* thread:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Thread ID' ,
name : 'threadId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'thread' ] ,
2021-04-30 17:44:12 -07:00
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the thread' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'thread' ] ,
operation : [ 'update' ] ,
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-05-06 14:01:25 -07:00
description : 'The content of the thread' ,
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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'workspaceId' ] ,
2021-04-30 17:44:12 -07:00
} ,
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
} ,
{
displayName : 'Title' ,
name : 'title' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The title of the thread (1 < length < 300)' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;