2021-04-30 17:44:12 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const commentOperations : 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 : {
resource : [
'comment' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a new comment to a thread' ,
2022-07-10 13:50:51 -07:00
action : 'Create a comment' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a comment' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a comment' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get information about a comment' ,
2022-07-10 13:50:51 -07:00
action : 'Get a comment' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all comments' ,
2022-07-10 13:50:51 -07:00
action : 'Get all comments' ,
2021-04-30 17:44:12 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a comment' ,
2022-07-10 13:50:51 -07:00
action : 'Update a comment' ,
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 commentFields : INodeProperties [ ] = [
2021-04-30 17:44:12 -07:00
/*-------------------------------------------------------------------------- */
/* comment:create */
/* ------------------------------------------------------------------------- */
{
displayName : 'Thread ID' ,
name : 'threadId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'comment' ,
] ,
} ,
} ,
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 : 'Content' ,
name : 'content' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'comment' ,
] ,
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The content of the comment' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'comment' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
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 : {
action : [
'send_reply' ,
'prefill_message' ,
] ,
} ,
} ,
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' ,
description : 'The type of the button. (Currently only <code>action</code> is available).' ,
options : [
{
name : 'Action' ,
value : 'action' ,
} ,
] ,
default : '' ,
} ,
{
displayName : 'URL' ,
name : 'url' ,
type : 'string' ,
displayOptions : {
show : {
action : [
'open_url' ,
] ,
} ,
} ,
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' ,
description : 'Name of the property that holds the binary data. Multiple can be defined separated by comma.' ,
} ,
{
2022-07-04 02:12:08 -07:00
displayName : 'Direct Mention Names or IDs' ,
2021-04-30 17:44:12 -07:00
name : 'direct_mentions' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
loadOptionsDependsOn : [
'workspaceId' ,
] ,
} ,
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'The users that are directly mentioned. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-04-30 17:44:12 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Mark Thread Position' ,
2021-04-30 17:44:12 -07:00
name : 'mark_thread_position' ,
type : 'boolean' ,
default : true ,
2022-06-20 07:54:01 -07:00
description : 'Whether the position of the thread is marked' ,
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' ,
loadOptionsDependsOn : [
'workspaceId' ,
] ,
} ,
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'The users that will attached to the comment. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
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 comment' ,
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 comment creator' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* comment:get/delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Comment ID' ,
name : 'commentId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
operation : [
'get' ,
'delete' ,
] ,
resource : [
'comment' ,
] ,
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the comment' ,
2021-04-30 17:44:12 -07:00
} ,
/* -------------------------------------------------------------------------- */
/* comment:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Thread ID' ,
name : 'threadId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'comment' ,
] ,
} ,
} ,
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 : {
resource : [
'comment' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
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 : {
resource : [
'comment' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
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 : {
resource : [
'comment' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
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 comments are returned' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Ending Object Index' ,
name : 'to_obj_index' ,
type : 'number' ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Limit comments ending at the specified object index' ,
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 comments 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 comments to those older than the specified Unix time' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Order By' ,
name : 'order_by' ,
type : 'options' ,
options : [
{
name : 'ASC' ,
value : 'ASC' ,
} ,
{
name : 'DESC' ,
value : 'DESC' ,
} ,
] ,
default : 'ASC' ,
2022-05-06 14:01:25 -07:00
description : 'The order of the comments returned - one of DESC or ASC' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Starting Object Index' ,
name : 'from_obj_index' ,
type : 'number' ,
default : 0 ,
2022-05-06 14:01:25 -07:00
description : 'Limit comments starting at the specified object index' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* comment:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Comment ID' ,
name : 'commentId' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'comment' ,
] ,
} ,
} ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the comment' ,
2021-04-30 17:44:12 -07:00
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'comment' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
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 : {
action : [
'send_reply' ,
'prefill_message' ,
] ,
} ,
} ,
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' ,
description : 'The type of the button. (Currently only <code>action</code> is available).' ,
options : [
{
name : 'Action' ,
value : 'action' ,
} ,
] ,
default : '' ,
} ,
{
displayName : 'URL' ,
name : 'url' ,
type : 'string' ,
displayOptions : {
show : {
action : [
'open_url' ,
] ,
} ,
} ,
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' ,
description : 'Name of the property that holds the binary data. Multiple can be defined separated by comma.' ,
} ,
{
displayName : 'Content' ,
name : 'content' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The content of the comment' ,
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' ,
loadOptionsDependsOn : [
'workspaceId' ,
] ,
} ,
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'The users that are directly mentioned. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-04-30 17:44:12 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;