This repository was archived by the owner on May 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIssueFields.ts
More file actions
293 lines (285 loc) · 6.41 KB
/
IssueFields.ts
File metadata and controls
293 lines (285 loc) · 6.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import { EasyNodeOperationType, EasyNodeResourceType } from '../Model';
import { INodeProperties } from 'n8n-workflow';
import { CustomFieldsOption } from './CustomFields';
import { ProjectIdField } from './ProjectIdField';
const CommonIssueFields: INodeProperties[] = [
{
displayName: 'Assigned To ID',
description: 'ID of the user to assign the issue to',
name: 'assignedToId',
type: 'number',
default: '',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
description: 'Issue description',
},
{
displayName: 'Done Ratio (0-100)',
name: 'doneRatio',
type: 'number',
default: '',
description: 'Percentage of completion of the issue',
},
{
displayName: 'Due Date',
name: 'dueDate',
type: 'dateTime',
default: '',
description: 'Due date of the issue',
},
{
displayName: 'Estimated Hours',
name: 'estimatedHours',
type: 'number',
default: '',
description: 'Estimated hours to complete the issue',
},
{
displayName: 'Private Issue',
name: 'isPrivate',
type: 'boolean',
default: false,
description: 'Whether to make the issue private',
},
{
displayName: 'Parent Issue ID',
name: 'parentIssueId',
type: 'number',
default: '',
description: 'ID of the parent issue',
},
{
displayName: 'Priority Name or ID',
name: 'priorityId',
type: 'options',
description:
'ID of the priority. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
default: '',
typeOptions: {
loadOptionsMethod: 'getAvailablePriorities',
},
},
{
displayName: 'Start Date',
name: 'startDate',
type: 'dateTime',
description: 'Start date of the issue',
default: '',
},
{
displayName: 'Status Name or ID',
name: 'statusId',
type: 'options',
description:
'ID of the status. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
default: '',
typeOptions: {
loadOptionsMethod: 'getAvailableStatuses',
},
},
{
displayName: 'Tracker Name or ID',
name: 'trackerId',
type: 'options',
description:
'ID of the tracker. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
default: '',
typeOptions: {
loadOptionsMethod: 'getProjectsTrackers',
loadOptionsDependsOn: ['projectId', 'id', 'issueUpdateOptions.projectId'],
},
},
];
export const IssueFields: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [EasyNodeResourceType.issues],
},
},
default: 'get-many',
options: [
{
name: 'Get One',
description: 'Get a single entity',
value: EasyNodeOperationType.getOne,
action: 'Get one',
},
{
name: 'Get Many',
description: 'Get multiple entities',
value: EasyNodeOperationType.getMany,
action: 'Get many',
},
{
name: 'Search',
description: 'Search for multiple issues',
value: EasyNodeOperationType.search,
action: 'Search',
},
{
name: 'Add Comment',
description: 'Add a comment to entity',
value: EasyNodeOperationType.addComment,
action: 'Add comment',
},
{
name: 'Create',
description: 'Create entity',
value: EasyNodeOperationType.create,
action: 'Create',
},
{
name: 'Update',
description: 'Update entity',
value: EasyNodeOperationType.update,
action: 'Update',
},
],
},
{
displayName: 'Issue ID',
name: 'id',
type: 'number',
displayOptions: {
show: {
operation: [
EasyNodeOperationType.getOne,
EasyNodeOperationType.addComment,
EasyNodeOperationType.update,
],
resource: ['issues'],
},
},
default: '',
},
{
displayName: 'EasyRedmine Issues Query Name or ID',
name: 'issueQueryId',
type: 'options',
description:
'Choose a query to filter the results. 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>.',
displayOptions: {
show: {
resource: [EasyNodeResourceType.issues],
operation: [EasyNodeOperationType.getMany],
},
},
typeOptions: {
loadOptionsMethod: 'getEasyIssueQueries',
},
default: '',
},
{
displayName: 'Subject',
name: 'subject',
type: 'string',
description: 'Subject of the issue',
displayOptions: {
show: {
resource: [EasyNodeResourceType.issues],
operation: [EasyNodeOperationType.create],
},
},
default: '',
},
{
...ProjectIdField,
displayOptions: {
show: {
resource: [EasyNodeResourceType.issues],
operation: [EasyNodeOperationType.create],
},
},
},
{
displayName: 'Create Fields',
name: 'issueCreateOptions',
type: 'collection',
placeholder: 'Add option',
default: {},
displayOptions: {
show: {
operation: [EasyNodeOperationType.create],
resource: [EasyNodeResourceType.issues],
},
},
options: [...CommonIssueFields, CustomFieldsOption],
},
{
displayName: 'Update Fields',
name: 'issueUpdateOptions',
type: 'collection',
placeholder: 'Add option',
default: {},
displayOptions: {
show: {
operation: [EasyNodeOperationType.update],
resource: [EasyNodeResourceType.issues],
},
},
options: [
{
displayName: 'Subject',
name: 'subject',
type: 'string',
default: '',
description: 'Subject of the issue',
},
ProjectIdField,
...CommonIssueFields,
CustomFieldsOption,
],
},
{
displayName: 'Search Fields',
name: 'issueSearchOptions',
type: 'collection',
placeholder: 'Add option',
default: {},
displayOptions: {
show: {
operation: [EasyNodeOperationType.search],
resource: [EasyNodeResourceType.issues],
},
},
options: [
{
displayName: 'Query',
name: 'query',
type: 'string',
default: '',
description: 'Query the name of the issue',
},
{
displayName: 'Assigned To ID',
name: 'assignedToId',
type: 'string',
default: '',
description: 'ID of the user the issue is assigned to',
},
{
displayName: 'Due Date From',
name: 'dueDateFrom',
type: 'string',
default: '',
placeholder: '2025-01-01',
},
{
displayName: 'Due Date To',
name: 'dueDateTo',
type: 'string',
default: '',
placeholder: '2025-01-31',
},
],
},
];