build: Upgrade nodelinter to 1.16.2 (no-changelog) (#10779)

This commit is contained in:
Iván Ovejero
2024-09-12 16:53:36 +02:00
committed by GitHub
parent 64aa1813b2
commit 05e609d714
518 changed files with 1908 additions and 1941 deletions

View File

@@ -50,7 +50,7 @@ export class TaigaTrigger implements INodeType {
name: 'projectId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getUserProjects',
},

View File

@@ -55,7 +55,7 @@ export const epicFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the epic belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the epic belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -105,7 +105,7 @@ export const epicFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user to assign the epic to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to assign the epic to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Blocked Note',
@@ -139,7 +139,7 @@ export const epicFields: INodeProperties[] = [
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -192,7 +192,7 @@ export const epicFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the epic belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the epic belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -259,7 +259,7 @@ export const epicFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user whom the epic is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user whom the epic is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Is Closed',
@@ -283,7 +283,7 @@ export const epicFields: INodeProperties[] = [
},
default: '',
description:
'ID of the project to set the epic to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to set the epic to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
displayOptions: {
show: {
resource: ['epic'],
@@ -328,7 +328,7 @@ export const epicFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user to whom the epic is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to whom the epic is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Blocked Note',
@@ -368,7 +368,7 @@ export const epicFields: INodeProperties[] = [
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',

View File

@@ -55,7 +55,7 @@ export const issueFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the issue belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the issue belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -105,7 +105,7 @@ export const issueFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user to whom the issue is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to whom the issue is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Blocked Note',
@@ -137,14 +137,14 @@ export const issueFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Priority Name or ID',
name: 'priority',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getPriorities',
@@ -156,7 +156,7 @@ export const issueFields: INodeProperties[] = [
name: 'severity',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getSeverities',
@@ -173,14 +173,14 @@ export const issueFields: INodeProperties[] = [
},
default: '',
description:
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Tag Names or IDs',
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -192,7 +192,7 @@ export const issueFields: INodeProperties[] = [
name: 'type',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTypes',
@@ -245,7 +245,7 @@ export const issueFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the issue belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the issue belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -306,7 +306,7 @@ export const issueFields: INodeProperties[] = [
displayName: 'Assignee Name or ID',
name: 'assigned_to',
description:
'ID of the user to assign the issue to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to assign the issue to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -363,7 +363,7 @@ export const issueFields: INodeProperties[] = [
displayName: 'Owner Name or ID',
name: 'owner',
description:
'ID of the owner of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the owner of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -376,7 +376,7 @@ export const issueFields: INodeProperties[] = [
name: 'priority',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getPriorities',
@@ -388,7 +388,7 @@ export const issueFields: INodeProperties[] = [
name: 'role',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getRoles',
@@ -400,7 +400,7 @@ export const issueFields: INodeProperties[] = [
name: 'severity',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getSeverities',
@@ -411,7 +411,7 @@ export const issueFields: INodeProperties[] = [
displayName: 'Status Name or ID',
name: 'status',
description:
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -424,7 +424,7 @@ export const issueFields: INodeProperties[] = [
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -436,7 +436,7 @@ export const issueFields: INodeProperties[] = [
name: 'type',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTypes',
@@ -458,7 +458,7 @@ export const issueFields: INodeProperties[] = [
},
default: '',
description:
'ID of the project to set the issue to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to set the issue to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
displayOptions: {
show: {
resource: ['issue'],
@@ -503,7 +503,7 @@ export const issueFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user whom the issue is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user whom the issue is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Blocked Note',
@@ -535,14 +535,14 @@ export const issueFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Priority Name or ID',
name: 'priority',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getPriorities',
@@ -554,7 +554,7 @@ export const issueFields: INodeProperties[] = [
name: 'severity',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getSeverities',
@@ -571,7 +571,7 @@ export const issueFields: INodeProperties[] = [
},
default: '',
description:
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Subject',
@@ -584,7 +584,7 @@ export const issueFields: INodeProperties[] = [
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -596,7 +596,7 @@ export const issueFields: INodeProperties[] = [
name: 'type',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTypes',

View File

@@ -55,7 +55,7 @@ export const taskFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the task belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the task belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -105,7 +105,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user to whom the task is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to whom the task is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Blocked Note',
@@ -137,7 +137,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Status Name or ID',
@@ -149,14 +149,14 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the status of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Tag Names or IDs',
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -183,7 +183,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user story of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user story of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'User Story Order',
@@ -241,7 +241,7 @@ export const taskFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the task belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the task belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -308,7 +308,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user whom the task is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user whom the task is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Is Closed',
@@ -327,13 +327,13 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Owner Name or ID',
name: 'owner',
description:
'ID of the owner of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the owner of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -346,7 +346,7 @@ export const taskFields: INodeProperties[] = [
name: 'role',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getRoles',
@@ -357,7 +357,7 @@ export const taskFields: INodeProperties[] = [
displayName: 'Status Name or ID',
name: 'status',
description:
'ID of the status of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -370,7 +370,7 @@ export const taskFields: INodeProperties[] = [
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -381,7 +381,7 @@ export const taskFields: INodeProperties[] = [
displayName: 'User Story Name or ID',
name: 'userStory',
description:
'ID of the user story to which the task belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user story to which the task belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -399,7 +399,7 @@ export const taskFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to set the task to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to set the task to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -449,7 +449,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user to assign the task to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to assign the task to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Blocked Note',
@@ -481,7 +481,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Status Name or ID',
@@ -493,7 +493,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the status of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Subject',
@@ -511,7 +511,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user story of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user story of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'User Story Order',
@@ -528,7 +528,7 @@ export const taskFields: INodeProperties[] = [
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',

View File

@@ -55,7 +55,7 @@ export const userStoryFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the user story belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the user story belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -105,7 +105,7 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user to whom the user story is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to whom the user story is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Backlog Order',
@@ -158,7 +158,7 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Sprint Order',
@@ -180,14 +180,14 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the status of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Tag Names or IDs',
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -199,7 +199,7 @@ export const userStoryFields: INodeProperties[] = [
name: 'type',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTypes',
@@ -252,7 +252,7 @@ export const userStoryFields: INodeProperties[] = [
displayName: 'Project Name or ID',
name: 'projectId',
description:
'ID of the project to which the user story belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to which the user story belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getProjects',
@@ -313,7 +313,7 @@ export const userStoryFields: INodeProperties[] = [
displayName: 'Assignee Name or ID',
name: 'assigned_to',
description:
'ID of the user whom the user story is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user whom the user story is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -325,7 +325,7 @@ export const userStoryFields: INodeProperties[] = [
displayName: 'Epic Name or ID',
name: 'epic',
description:
'ID of the epic to which the user story belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the epic to which the user story belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -357,14 +357,14 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Role Name or ID',
name: 'role',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getRoles',
@@ -375,7 +375,7 @@ export const userStoryFields: INodeProperties[] = [
displayName: 'Status Name or ID',
name: 'status',
description:
'ID of the status of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
@@ -388,7 +388,7 @@ export const userStoryFields: INodeProperties[] = [
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -410,7 +410,7 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the project to set the user story to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the project to set the user story to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
displayOptions: {
show: {
resource: ['userStory'],
@@ -455,7 +455,7 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the user to assign the the user story to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the user to assign the the user story to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Backlog Order',
@@ -508,7 +508,7 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the milestone of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the milestone of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Subject',
@@ -536,14 +536,14 @@ export const userStoryFields: INodeProperties[] = [
},
default: '',
description:
'ID of the status of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
'ID of the status of the user story. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Tag Names or IDs',
name: 'tags',
type: 'multiOptions',
description:
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTags',
@@ -555,7 +555,7 @@ export const userStoryFields: INodeProperties[] = [
name: 'type',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsDependsOn: ['projectId'],
loadOptionsMethod: 'getTypes',