forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkflows.ts
400 lines (380 loc) · 15.3 KB
/
workflows.ts
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
import * as Models from './models';
import * as Parameters from './parameters';
import { Callback } from '../callback';
import { Client } from '../clients';
import { paramSerializer } from '../paramSerializer';
import { RequestConfig } from '../requestConfig';
export class Workflows {
constructor(private client: Client) {}
/**
* Creates a workflow. Workflow transitions are created with the default system transition rules.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async createWorkflow<T = Models.WorkflowId>(
parameters: Parameters.CreateWorkflow,
callback: Callback<T>,
): Promise<void>;
/**
* Creates a workflow. Workflow transitions are created with the default system transition rules.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async createWorkflow<T = Models.WorkflowId>(parameters: Parameters.CreateWorkflow, callback?: never): Promise<T>;
async createWorkflow<T = Models.WorkflowId>(
parameters: Parameters.CreateWorkflow,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflow',
method: 'POST',
data: {
description: parameters.description,
name: parameters.name,
statuses: parameters.statuses,
transitions: parameters.transitions,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns a [paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#pagination) list of
* published classic workflows. When workflow names are specified, details of those workflows are returned. Otherwise,
* all published classic workflows are returned.
*
* This operation does not return next-gen workflows.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async getWorkflowsPaginated<T = Models.PageWorkflow>(
parameters: Parameters.GetWorkflowsPaginated | undefined,
callback: Callback<T>,
): Promise<void>;
/**
* Returns a [paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#pagination) list of
* published classic workflows. When workflow names are specified, details of those workflows are returned. Otherwise,
* all published classic workflows are returned.
*
* This operation does not return next-gen workflows.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async getWorkflowsPaginated<T = Models.PageWorkflow>(
parameters?: Parameters.GetWorkflowsPaginated,
callback?: never,
): Promise<T>;
async getWorkflowsPaginated<T = Models.PageWorkflow>(
parameters?: Parameters.GetWorkflowsPaginated,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflow/search',
method: 'GET',
params: {
startAt: parameters?.startAt,
maxResults: parameters?.maxResults,
workflowName: paramSerializer('workflowName', parameters?.workflowName),
expand: parameters?.expand,
queryString: parameters?.queryString,
orderBy: parameters?.orderBy,
isActive: parameters?.isActive,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Deletes a workflow.
*
* The workflow cannot be deleted if it is:
*
* - An active workflow.
* - A system workflow.
* - Associated with any workflow scheme.
* - Associated with any draft workflow scheme.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteInactiveWorkflow<T = void>(
parameters: Parameters.DeleteInactiveWorkflow | string,
callback: Callback<T>,
): Promise<void>;
/**
* Deletes a workflow.
*
* The workflow cannot be deleted if it is:
*
* - An active workflow.
* - A system workflow.
* - Associated with any workflow scheme.
* - Associated with any draft workflow scheme.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteInactiveWorkflow<T = void>(
parameters: Parameters.DeleteInactiveWorkflow | string,
callback?: never,
): Promise<T>;
async deleteInactiveWorkflow<T = void>(
parameters: Parameters.DeleteInactiveWorkflow | string,
callback?: Callback<T>,
): Promise<void | T> {
const entityId = typeof parameters === 'string' ? parameters : parameters.entityId;
const config: RequestConfig = {
url: `/rest/api/2/workflow/${entityId}`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
/**
* Returns a list of workflows and related statuses by providing workflow names, workflow IDs, or project and issue
* types.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ global permission to access all, including project-scoped, workflows
* - At least one of the _Administer projects_ and _View (read-only) workflow_ project permissions to access
* project-scoped workflows
*/
async readWorkflows<T = Models.WorkflowRead>(
parameters: Parameters.ReadWorkflows,
callback: Callback<T>,
): Promise<void>;
/**
* Returns a list of workflows and related statuses by providing workflow names, workflow IDs, or project and issue
* types.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ global permission to access all, including project-scoped, workflows
* - At least one of the _Administer projects_ and _View (read-only) workflow_ project permissions to access
* project-scoped workflows
*/
async readWorkflows<T = Models.WorkflowRead>(parameters: Parameters.ReadWorkflows, callback?: never): Promise<T>;
async readWorkflows<T = Models.WorkflowRead>(
parameters: Parameters.ReadWorkflows,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflows',
method: 'POST',
params: {
expand: parameters.expand,
},
data: {
projectAndIssueTypes: parameters.projectAndIssueTypes,
workflowIds: parameters.workflowIds,
workflowNames: parameters.workflowNames,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Get the list of workflow capabilities for a specific workflow using either the workflow ID, or the project and
* issue type ID pair. The response includes the scope of the workflow, defined as global/project-based, and a list of
* project types that the workflow is scoped to. It also includes all rules organized into their broad categories
* (conditions, validators, actions, triggers, screens) as well as the source location (Atlassian-provided, Connect,
* Forge).
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to access all, including global-scoped, workflows
* - _Administer projects_ project permissions to access project-scoped workflows
*/
async workflowCapabilities<T = Models.WorkflowCapabilities>(
parameters: Parameters.WorkflowCapabilities,
callback: Callback<T>,
): Promise<void>;
/**
* Get the list of workflow capabilities for a specific workflow using either the workflow ID, or the project and
* issue type ID pair. The response includes the scope of the workflow, defined as global/project-based, and a list of
* project types that the workflow is scoped to. It also includes all rules organized into their broad categories
* (conditions, validators, actions, triggers, screens) as well as the source location (Atlassian-provided, Connect,
* Forge).
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to access all, including global-scoped, workflows
* - _Administer projects_ project permissions to access project-scoped workflows
*/
async workflowCapabilities<T = Models.WorkflowCapabilities>(
parameters: Parameters.WorkflowCapabilities,
callback?: never,
): Promise<T>;
async workflowCapabilities<T = Models.WorkflowCapabilities>(
parameters: Parameters.WorkflowCapabilities,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflows/capabilities',
method: 'GET',
params: {
workflowId: parameters.workflowId,
projectId: parameters.projectId,
issueTypeId: parameters.issueTypeId,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Create workflows and related statuses.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async createWorkflows<T = Models.WorkflowCreateResponse>(
parameters: Parameters.CreateWorkflows,
callback: Callback<T>,
): Promise<void>;
/**
* Create workflows and related statuses.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async createWorkflows<T = Models.WorkflowCreateResponse>(
parameters: Parameters.CreateWorkflows,
callback?: never,
): Promise<T>;
async createWorkflows<T = Models.WorkflowCreateResponse>(
parameters: Parameters.CreateWorkflows,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflows/create',
method: 'POST',
data: {
scope: parameters.scope,
statuses: parameters.statuses,
workflows: parameters.workflows,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Validate the payload for bulk create workflows.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async validateCreateWorkflows<T = Models.WorkflowValidationErrorList>(
parameters: Parameters.ValidateCreateWorkflows,
callback: Callback<T>,
): Promise<void>;
/**
* Validate the payload for bulk create workflows.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async validateCreateWorkflows<T = Models.WorkflowValidationErrorList>(
parameters: Parameters.ValidateCreateWorkflows,
callback?: never,
): Promise<T>;
async validateCreateWorkflows<T = Models.WorkflowValidationErrorList>(
parameters: Parameters.ValidateCreateWorkflows,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflows/create/validation',
method: 'POST',
data: {
payload: parameters.payload,
validationOptions: parameters.validationOptions,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Update workflows and related statuses.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async updateWorkflows<T = Models.WorkflowUpdateResponse>(
parameters: Parameters.UpdateWorkflows,
callback: Callback<T>,
): Promise<void>;
/**
* Update workflows and related statuses.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async updateWorkflows<T = Models.WorkflowUpdateResponse>(
parameters: Parameters.UpdateWorkflows,
callback?: never,
): Promise<T>;
async updateWorkflows<T = Models.WorkflowUpdateResponse>(
parameters: Parameters.UpdateWorkflows,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflows/update',
method: 'POST',
params: {
expand: parameters.expand,
},
data: {
statuses: parameters.statuses,
workflows: parameters.workflows,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Validate the payload for bulk update workflows.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async validateUpdateWorkflows<T = Models.WorkflowValidationErrorList>(
parameters: Parameters.ValidateUpdateWorkflows,
callback: Callback<T>,
): Promise<void>;
/**
* Validate the payload for bulk update workflows.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Administer Jira_ project permission to create all, including global-scoped, workflows
* - _Administer projects_ project permissions to create project-scoped workflows
*/
async validateUpdateWorkflows<T = Models.WorkflowValidationErrorList>(
parameters: Parameters.ValidateUpdateWorkflows,
callback?: never,
): Promise<T>;
async validateUpdateWorkflows<T = Models.WorkflowValidationErrorList>(
parameters: Parameters.ValidateUpdateWorkflows,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/workflows/update/validation',
method: 'POST',
data: {
payload: parameters.payload,
validationOptions: parameters.validationOptions,
},
};
return this.client.sendRequest(config, callback);
}
}