2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2020-12-29 02:33:13 -08:00
2021-12-03 00:44:16 -08:00
export const issueCommentOperations : INodeProperties [ ] = [
2020-12-29 02:33:13 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-12-29 02:33:13 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
options : [
{
name : 'Add' ,
value : 'add' ,
description : 'Add comment to issue' ,
2022-07-10 13:50:51 -07:00
action : 'Add a comment' ,
2020-12-29 02:33:13 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a comment' ,
2022-07-10 13:50:51 -07:00
action : 'Get a comment' ,
2020-12-29 02:33:13 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2020-12-29 02:33:13 -08:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many comments' ,
2022-09-08 08:10:13 -07:00
action : 'Get many comments' ,
2020-12-29 02:33:13 -08:00
} ,
{
name : 'Remove' ,
value : 'remove' ,
description : 'Remove a comment' ,
2022-07-10 13:50:51 -07:00
action : 'Remove a comment' ,
2020-12-29 02:33:13 -08:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a comment' ,
2022-07-10 13:50:51 -07:00
action : 'Update a comment' ,
2020-12-29 02:33:13 -08:00
} ,
] ,
default : 'add' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-12-29 02:33:13 -08:00
2021-12-03 00:44:16 -08:00
export const issueCommentFields : INodeProperties [ ] = [
2020-12-29 02:33:13 -08:00
/* -------------------------------------------------------------------------- */
/* issueComment:add */
/* -------------------------------------------------------------------------- */
{
displayName : 'Issue Key' ,
name : 'issueKey' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'add' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-description-lowercase-first-char
2020-12-29 02:33:13 -08:00
description : 'issueComment Key' ,
} ,
{
displayName : 'JSON Parameters' ,
name : 'jsonParameters' ,
type : 'boolean' ,
default : false ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'add' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
} ,
{
displayName : 'Comment' ,
name : 'comment' ,
type : 'string' ,
2021-12-03 00:44:16 -08:00
default : '' ,
2020-12-29 02:33:13 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'add' ] ,
jsonParameters : [ false ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
2022-08-17 08:50:24 -07:00
description : "Comment's text" ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Document Format (JSON)' ,
name : 'commentJson' ,
type : 'json' ,
2021-12-03 00:44:16 -08:00
default : '' ,
2020-12-29 02:33:13 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'add' ] ,
jsonParameters : [ true ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
2022-08-17 08:50:24 -07:00
description :
'The Atlassian Document Format (ADF). Online builder can be found <a href="https://developer.atlassian.com/cloud/jira/platform/apis/document/playground/">here</a>.' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'add' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
options : [
{
displayName : 'Expand' ,
name : 'expand' ,
type : 'options' ,
options : [
{
name : 'Rendered Body' ,
value : 'renderedBody' ,
} ,
] ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.' ,
2020-12-29 02:33:13 -08:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* issueComment:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Issue Key' ,
name : 'issueKey' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'get' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID or key of the issue' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Comment ID' ,
name : 'commentId' ,
type : 'string' ,
2021-12-03 00:44:16 -08:00
default : '' ,
2020-12-29 02:33:13 -08:00
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'get' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
description : 'The ID of the comment' ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'get' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
options : [
{
displayName : 'Expand' ,
name : 'expand' ,
type : 'options' ,
options : [
{
name : 'Rendered Body' ,
value : 'renderedBody' ,
} ,
] ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.' ,
2020-12-29 02:33:13 -08:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* issueComment:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Issue Key' ,
name : 'issueKey' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'getAll' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID or key of the issue' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'getAll' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'getAll' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
options : [
{
displayName : 'Expand' ,
name : 'expand' ,
type : 'options' ,
options : [
{
name : 'Rendered Body' ,
value : 'renderedBody' ,
} ,
] ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.' ,
2020-12-29 02:33:13 -08:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* issueComment:remove */
/* -------------------------------------------------------------------------- */
{
displayName : 'Issue Key' ,
name : 'issueKey' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'remove' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The ID or key of the issue' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Comment ID' ,
name : 'commentId' ,
type : 'string' ,
2021-12-03 00:44:16 -08:00
default : '' ,
2020-12-29 02:33:13 -08:00
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'remove' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the comment' ,
2020-12-29 02:33:13 -08:00
} ,
/* -------------------------------------------------------------------------- */
/* issueComment:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Issue Key' ,
name : 'issueKey' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'update' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The Issue Comment key' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Comment ID' ,
name : 'commentId' ,
type : 'string' ,
2021-12-03 00:44:16 -08:00
default : '' ,
2020-12-29 02:33:13 -08:00
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'update' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the comment' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'JSON Parameters' ,
name : 'jsonParameters' ,
type : 'boolean' ,
default : false ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'update' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
} ,
{
displayName : 'Comment' ,
name : 'comment' ,
type : 'string' ,
2021-12-03 00:44:16 -08:00
default : '' ,
2020-12-29 02:33:13 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'update' ] ,
jsonParameters : [ false ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
2022-08-17 08:50:24 -07:00
description : "Comment's text" ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Document Format (JSON)' ,
name : 'commentJson' ,
type : 'json' ,
2021-12-03 00:44:16 -08:00
default : '' ,
2020-12-29 02:33:13 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'update' ] ,
jsonParameters : [ true ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
2022-08-17 08:50:24 -07:00
description :
'The Atlassian Document Format (ADF). Online builder can be found <a href="https://developer.atlassian.com/cloud/jira/platform/apis/document/playground/">here</a>.' ,
2020-12-29 02:33:13 -08:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issueComment' ] ,
operation : [ 'update' ] ,
2020-12-29 02:33:13 -08:00
} ,
} ,
options : [
{
displayName : 'Expand' ,
name : 'expand' ,
type : 'options' ,
options : [
{
name : 'Rendered Body' ,
value : 'renderedBody' ,
} ,
] ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.' ,
2020-12-29 02:33:13 -08:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;