@resolution/jira-api-client 0.6.0 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/lib/index.d.ts +1 -2
- package/lib/index.js.map +1 -1
- package/lib/openapi/platform/BaseJiraPlatformApiClient.d.ts +15 -15
- package/lib/openapi/platform/BaseJiraPlatformApiClient.js +8 -8
- package/lib/openapi/platform/BaseJiraPlatformApiClient.js.map +1 -1
- package/lib/openapi/platform/models/common.d.ts +0 -23
- package/lib/openapi/platform/models/common.js +0 -10
- package/lib/openapi/platform/models/common.js.map +1 -1
- package/lib/openapi/platform/models/issueLinks.d.ts +23 -0
- package/lib/openapi/platform/models/issueLinks.js +10 -0
- package/lib/openapi/platform/models/issueLinks.js.map +1 -1
- package/lib/openapi/platform/models/issueSearch.d.ts +104 -0
- package/lib/openapi/platform/models/issueSearch.js +37 -0
- package/lib/openapi/platform/models/issueSearch.js.map +1 -1
- package/lib/openapi/platform/models/issues.d.ts +117 -2
- package/lib/openapi/platform/models/issues.js +51 -1
- package/lib/openapi/platform/models/issues.js.map +1 -1
- package/lib/openapi/platform/models/jiraExpressions.d.ts +174 -0
- package/lib/openapi/platform/models/jiraExpressions.js +76 -0
- package/lib/openapi/platform/models/jiraExpressions.js.map +1 -1
- package/lib/openapi/platform/models/projects.d.ts +1 -1
- package/lib/openapi/platform/models/projects.js +1 -0
- package/lib/openapi/platform/models/projects.js.map +1 -1
- package/lib/openapi/platform/models/workflows.d.ts +47 -0
- package/lib/openapi/platform/models/workflows.js +19 -0
- package/lib/openapi/platform/models/workflows.js.map +1 -1
- package/lib/openapi/platform/services/IssueBulkOperationsService.d.ts +7 -7
- package/lib/openapi/platform/services/IssueBulkOperationsService.js +7 -7
- package/lib/openapi/platform/services/IssueLinksService.d.ts +1 -2
- package/lib/openapi/platform/services/IssueLinksService.js +2 -2
- package/lib/openapi/platform/services/IssueLinksService.js.map +1 -1
- package/lib/openapi/platform/services/IssueSearchService.d.ts +498 -1
- package/lib/openapi/platform/services/IssueSearchService.js +558 -0
- package/lib/openapi/platform/services/IssueSearchService.js.map +1 -1
- package/lib/openapi/platform/services/IssueWorklogsService.d.ts +12 -0
- package/lib/openapi/platform/services/IssueWorklogsService.js +1 -0
- package/lib/openapi/platform/services/IssueWorklogsService.js.map +1 -1
- package/lib/openapi/platform/services/IssuesService.d.ts +225 -1
- package/lib/openapi/platform/services/IssuesService.js +225 -0
- package/lib/openapi/platform/services/IssuesService.js.map +1 -1
- package/lib/openapi/platform/services/JiraExpressionsService.d.ts +189 -1
- package/lib/openapi/platform/services/JiraExpressionsService.js +153 -0
- package/lib/openapi/platform/services/JiraExpressionsService.js.map +1 -1
- package/lib/openapi/platform/services/LicenseMetricsService.d.ts +4 -4
- package/lib/openapi/platform/services/LicenseMetricsService.js +4 -4
- package/lib/openapi/platform/services/WorkflowsService.d.ts +6 -1
- package/lib/openapi/platform/services/WorkflowsService.js +2 -1
- package/lib/openapi/platform/services/WorkflowsService.js.map +1 -1
- package/lib/openapi/serviceManagement/BaseJiraServiceManagementApiClient.d.ts +1 -1
- package/lib/openapi/serviceManagement/BaseJiraServiceManagementApiClient.js +1 -1
- package/lib/openapi/serviceManagement/models/request.d.ts +4 -4
- package/lib/openapi/software/models/board.d.ts +39 -24
- package/lib/openapi/software/models/board.js +25 -11
- package/lib/openapi/software/models/board.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CommonHttpService } from "../../core/CommonHttpService";
|
|
2
|
-
import { type JiraExpressionEvalRequestBean, type JiraExpressionForAnalysis, type JiraExpressionResult, type JiraExpressionsAnalysis } from "../models/jiraExpressions";
|
|
2
|
+
import { type JexpEvaluateJiraExpressionResultBean, type JiraExpressionEvalRequestBean, type JiraExpressionEvaluateRequestBean, type JiraExpressionForAnalysis, type JiraExpressionResult, type JiraExpressionsAnalysis } from "../models/jiraExpressions";
|
|
3
3
|
/**
|
|
4
4
|
* This resource is a collection of operations for [Jira
|
|
5
5
|
* expressions](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/).
|
|
@@ -300,5 +300,193 @@ export declare class JiraExpressionsService extends CommonHttpService {
|
|
|
300
300
|
*/
|
|
301
301
|
jiraExpressionEvalRequestBean: JiraExpressionEvalRequestBean;
|
|
302
302
|
}) => Promise<JiraExpressionResult>;
|
|
303
|
+
/**
|
|
304
|
+
* Evaluates a Jira expression and returns its value. The difference between this
|
|
305
|
+
* and `eval` is that this endpoint uses the enhanced search API when evaluating
|
|
306
|
+
* JQL queries. This API is eventually consistent, unlike the strongly consistent
|
|
307
|
+
* `eval` API. This allows for better performance and scalability. In addition,
|
|
308
|
+
* this API's response for JQL evaluation is based on a scrolling view (backed by
|
|
309
|
+
* a `nextPageToken`) instead of a paginated view (backed by `startAt` and
|
|
310
|
+
* `totalCount`).
|
|
311
|
+
*
|
|
312
|
+
* This resource can be used to test Jira expressions that you plan to use
|
|
313
|
+
* elsewhere, or to fetch data in a flexible way. Consult the [Jira expressions
|
|
314
|
+
* documentation](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/)
|
|
315
|
+
* for more details.
|
|
316
|
+
*
|
|
317
|
+
* #### Context variables ####
|
|
318
|
+
*
|
|
319
|
+
* The following context variables are available to Jira expressions evaluated by
|
|
320
|
+
* this resource. Their presence depends on various factors; usually you need to
|
|
321
|
+
* manually request them in the context object sent in the payload, but some of
|
|
322
|
+
* them are added automatically under certain conditions.
|
|
323
|
+
*
|
|
324
|
+
* * `user`
|
|
325
|
+
* ([User](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#user)):
|
|
326
|
+
* The current user. Always available and equal to `null` if the request is
|
|
327
|
+
* anonymous.
|
|
328
|
+
* * `app`
|
|
329
|
+
* ([App](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#app)):
|
|
330
|
+
* The [Connect
|
|
331
|
+
* app](https://developer.atlassian.com/cloud/jira/platform/index/#connect-apps)
|
|
332
|
+
* that made the request. Available only for authenticated requests made by
|
|
333
|
+
* Connect apps (read more here: [Authentication for Connect
|
|
334
|
+
* apps](https://developer.atlassian.com/cloud/jira/platform/security-for-connect-apps/)).
|
|
335
|
+
* * `issue`
|
|
336
|
+
* ([Issue](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#issue)):
|
|
337
|
+
* The current issue. Available only when the issue is provided in the request
|
|
338
|
+
* context object.
|
|
339
|
+
* * `issues`
|
|
340
|
+
* ([List](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#list)
|
|
341
|
+
* of
|
|
342
|
+
* [Issues](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#issue)):
|
|
343
|
+
* A collection of issues matching a JQL query. Available only when JQL is
|
|
344
|
+
* provided in the request context object.
|
|
345
|
+
* * `project`
|
|
346
|
+
* ([Project](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#project)):
|
|
347
|
+
* The current project. Available only when the project is provided in the request
|
|
348
|
+
* context object.
|
|
349
|
+
* * `sprint`
|
|
350
|
+
* ([Sprint](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#sprint)):
|
|
351
|
+
* The current sprint. Available only when the sprint is provided in the request
|
|
352
|
+
* context object.
|
|
353
|
+
* * `board`
|
|
354
|
+
* ([Board](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#board)):
|
|
355
|
+
* The current board. Available only when the board is provided in the request
|
|
356
|
+
* context object.
|
|
357
|
+
* * `serviceDesk`
|
|
358
|
+
* ([ServiceDesk](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#servicedesk)):
|
|
359
|
+
* The current service desk. Available only when the service desk is provided in
|
|
360
|
+
* the request context object.
|
|
361
|
+
* * `customerRequest`
|
|
362
|
+
* ([CustomerRequest](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#customerrequest)):
|
|
363
|
+
* The current customer request. Available only when the customer request is
|
|
364
|
+
* provided in the request context object.
|
|
365
|
+
*
|
|
366
|
+
* In addition, you can pass custom context variables along with their types. You
|
|
367
|
+
* can then access them from the Jira expression by key. You can use the following
|
|
368
|
+
* variables in a custom context:
|
|
369
|
+
*
|
|
370
|
+
* * `user`: A
|
|
371
|
+
* [user](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#user)
|
|
372
|
+
* specified as an Atlassian account ID.
|
|
373
|
+
* * `issue`: An
|
|
374
|
+
* [issue](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#issue)
|
|
375
|
+
* specified by ID or key. All the fields of the issue object are available in the
|
|
376
|
+
* Jira expression.
|
|
377
|
+
* * `json`: A JSON object containing custom content.
|
|
378
|
+
* * `list`: A JSON list of `user`, `issue`, or `json` variable types.
|
|
379
|
+
*
|
|
380
|
+
* This operation can be accessed anonymously.
|
|
381
|
+
*
|
|
382
|
+
* **[Permissions](#permissions) required**: None. However, an expression may
|
|
383
|
+
* return different results for different users depending on their permissions.
|
|
384
|
+
* For example, different users may see different comments on the same issue.
|
|
385
|
+
* Permission to access Jira Software is required to access Jira Software context
|
|
386
|
+
* variables (`board` and `sprint`) or fields (for example, `issue.sprint`).
|
|
387
|
+
*
|
|
388
|
+
* @returns Returned if the evaluation results in a value. The result is a JSON primitive value, list, or object.
|
|
389
|
+
*
|
|
390
|
+
* example:
|
|
391
|
+
* ```
|
|
392
|
+
* {
|
|
393
|
+
* "value": "The expression's result. This value can be any JSON, not necessarily a String",
|
|
394
|
+
* "meta": {
|
|
395
|
+
* "complexity": {
|
|
396
|
+
* "steps": {
|
|
397
|
+
* "value": 1,
|
|
398
|
+
* "limit": 10000
|
|
399
|
+
* },
|
|
400
|
+
* "expensiveOperations": {
|
|
401
|
+
* "value": 3,
|
|
402
|
+
* "limit": 10
|
|
403
|
+
* },
|
|
404
|
+
* "beans": {
|
|
405
|
+
* "value": 0,
|
|
406
|
+
* "limit": 1000
|
|
407
|
+
* },
|
|
408
|
+
* "primitiveValues": {
|
|
409
|
+
* "value": 1,
|
|
410
|
+
* "limit": 10000
|
|
411
|
+
* }
|
|
412
|
+
* },
|
|
413
|
+
* "issues": {
|
|
414
|
+
* "jql": {
|
|
415
|
+
* "nextPageToken": "EgQIlMIC"
|
|
416
|
+
* }
|
|
417
|
+
* }
|
|
418
|
+
* }
|
|
419
|
+
* }
|
|
420
|
+
* ```
|
|
421
|
+
* @path POST `/rest/api/3/expression/evaluate`
|
|
422
|
+
* @scopes-current read:jira-work, read:jira-user
|
|
423
|
+
* @scopes-beta read:jira-expressions:jira
|
|
424
|
+
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-expressions#api-rest-api-3-expression-evaluate-post
|
|
425
|
+
* @param params
|
|
426
|
+
*/
|
|
427
|
+
evaluateJsisJiraExpression: ({ expand, jiraExpressionEvaluateRequestBean, }: {
|
|
428
|
+
/**
|
|
429
|
+
* Use [expand](#expansion) to include additional information in the response.
|
|
430
|
+
* This parameter accepts `meta.complexity` that returns information about the
|
|
431
|
+
* expression complexity. For example, the number of expensive operations used by
|
|
432
|
+
* the expression and how close the expression is to reaching the [complexity
|
|
433
|
+
* limit](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/#restrictions).
|
|
434
|
+
* Useful when designing and debugging your expressions.
|
|
435
|
+
*/
|
|
436
|
+
expand?: string | undefined;
|
|
437
|
+
/**
|
|
438
|
+
* The Jira expression and the evaluation context.
|
|
439
|
+
*
|
|
440
|
+
* @example
|
|
441
|
+
* {
|
|
442
|
+
* "context": {
|
|
443
|
+
* "board": 10100,
|
|
444
|
+
* "custom": {
|
|
445
|
+
* "config": {
|
|
446
|
+
* "type": "json",
|
|
447
|
+
* "value": {
|
|
448
|
+
* "userId": "10002"
|
|
449
|
+
* }
|
|
450
|
+
* },
|
|
451
|
+
* "issuesList": [
|
|
452
|
+
* {
|
|
453
|
+
* "key": "ACJIRA-1471",
|
|
454
|
+
* "type": "issue"
|
|
455
|
+
* },
|
|
456
|
+
* {
|
|
457
|
+
* "id": 100001,
|
|
458
|
+
* "type": "issue"
|
|
459
|
+
* }
|
|
460
|
+
* ],
|
|
461
|
+
* "myUser": {
|
|
462
|
+
* "accountId": "100001",
|
|
463
|
+
* "type": "user"
|
|
464
|
+
* },
|
|
465
|
+
* "nullField": {
|
|
466
|
+
* "type": "json"
|
|
467
|
+
* }
|
|
468
|
+
* },
|
|
469
|
+
* "customerRequest": 1450,
|
|
470
|
+
* "issue": {
|
|
471
|
+
* "key": "ACJIRA-1470"
|
|
472
|
+
* },
|
|
473
|
+
* "issues": {
|
|
474
|
+
* "jql": {
|
|
475
|
+
* "maxResults": 100,
|
|
476
|
+
* "nextPageToken": "EgQIlMIC",
|
|
477
|
+
* "query": "project = HSP"
|
|
478
|
+
* }
|
|
479
|
+
* },
|
|
480
|
+
* "project": {
|
|
481
|
+
* "key": "ACJIRA"
|
|
482
|
+
* },
|
|
483
|
+
* "serviceDesk": 10023,
|
|
484
|
+
* "sprint": 10001
|
|
485
|
+
* },
|
|
486
|
+
* "expression": "{ key: issue.key, type: issue.issueType.name, links: issue.links.map(link => link.linkedIssue.id), listCustomVariable: issuesList.includes(issue), customVariables: myUser.accountId == config.userId}"
|
|
487
|
+
* }
|
|
488
|
+
*/
|
|
489
|
+
jiraExpressionEvaluateRequestBean: JiraExpressionEvaluateRequestBean;
|
|
490
|
+
}) => Promise<JexpEvaluateJiraExpressionResultBean>;
|
|
303
491
|
protected static initialize(): void;
|
|
304
492
|
}
|
|
@@ -256,6 +256,152 @@ class JiraExpressionsService extends CommonHttpService_1.CommonHttpService {
|
|
|
256
256
|
.then(this.getClientInstance().validation(validationSchemaStorage_1.validationSchemaStorage.validator("JiraExpressionsService.evaluateJiraExpression.response")))
|
|
257
257
|
.then(commonHttpClient.getBody);
|
|
258
258
|
};
|
|
259
|
+
/**
|
|
260
|
+
* Evaluates a Jira expression and returns its value. The difference between this
|
|
261
|
+
* and `eval` is that this endpoint uses the enhanced search API when evaluating
|
|
262
|
+
* JQL queries. This API is eventually consistent, unlike the strongly consistent
|
|
263
|
+
* `eval` API. This allows for better performance and scalability. In addition,
|
|
264
|
+
* this API's response for JQL evaluation is based on a scrolling view (backed by
|
|
265
|
+
* a `nextPageToken`) instead of a paginated view (backed by `startAt` and
|
|
266
|
+
* `totalCount`).
|
|
267
|
+
*
|
|
268
|
+
* This resource can be used to test Jira expressions that you plan to use
|
|
269
|
+
* elsewhere, or to fetch data in a flexible way. Consult the [Jira expressions
|
|
270
|
+
* documentation](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/)
|
|
271
|
+
* for more details.
|
|
272
|
+
*
|
|
273
|
+
* #### Context variables ####
|
|
274
|
+
*
|
|
275
|
+
* The following context variables are available to Jira expressions evaluated by
|
|
276
|
+
* this resource. Their presence depends on various factors; usually you need to
|
|
277
|
+
* manually request them in the context object sent in the payload, but some of
|
|
278
|
+
* them are added automatically under certain conditions.
|
|
279
|
+
*
|
|
280
|
+
* * `user`
|
|
281
|
+
* ([User](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#user)):
|
|
282
|
+
* The current user. Always available and equal to `null` if the request is
|
|
283
|
+
* anonymous.
|
|
284
|
+
* * `app`
|
|
285
|
+
* ([App](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#app)):
|
|
286
|
+
* The [Connect
|
|
287
|
+
* app](https://developer.atlassian.com/cloud/jira/platform/index/#connect-apps)
|
|
288
|
+
* that made the request. Available only for authenticated requests made by
|
|
289
|
+
* Connect apps (read more here: [Authentication for Connect
|
|
290
|
+
* apps](https://developer.atlassian.com/cloud/jira/platform/security-for-connect-apps/)).
|
|
291
|
+
* * `issue`
|
|
292
|
+
* ([Issue](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#issue)):
|
|
293
|
+
* The current issue. Available only when the issue is provided in the request
|
|
294
|
+
* context object.
|
|
295
|
+
* * `issues`
|
|
296
|
+
* ([List](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#list)
|
|
297
|
+
* of
|
|
298
|
+
* [Issues](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#issue)):
|
|
299
|
+
* A collection of issues matching a JQL query. Available only when JQL is
|
|
300
|
+
* provided in the request context object.
|
|
301
|
+
* * `project`
|
|
302
|
+
* ([Project](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#project)):
|
|
303
|
+
* The current project. Available only when the project is provided in the request
|
|
304
|
+
* context object.
|
|
305
|
+
* * `sprint`
|
|
306
|
+
* ([Sprint](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#sprint)):
|
|
307
|
+
* The current sprint. Available only when the sprint is provided in the request
|
|
308
|
+
* context object.
|
|
309
|
+
* * `board`
|
|
310
|
+
* ([Board](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#board)):
|
|
311
|
+
* The current board. Available only when the board is provided in the request
|
|
312
|
+
* context object.
|
|
313
|
+
* * `serviceDesk`
|
|
314
|
+
* ([ServiceDesk](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#servicedesk)):
|
|
315
|
+
* The current service desk. Available only when the service desk is provided in
|
|
316
|
+
* the request context object.
|
|
317
|
+
* * `customerRequest`
|
|
318
|
+
* ([CustomerRequest](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#customerrequest)):
|
|
319
|
+
* The current customer request. Available only when the customer request is
|
|
320
|
+
* provided in the request context object.
|
|
321
|
+
*
|
|
322
|
+
* In addition, you can pass custom context variables along with their types. You
|
|
323
|
+
* can then access them from the Jira expression by key. You can use the following
|
|
324
|
+
* variables in a custom context:
|
|
325
|
+
*
|
|
326
|
+
* * `user`: A
|
|
327
|
+
* [user](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#user)
|
|
328
|
+
* specified as an Atlassian account ID.
|
|
329
|
+
* * `issue`: An
|
|
330
|
+
* [issue](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#issue)
|
|
331
|
+
* specified by ID or key. All the fields of the issue object are available in the
|
|
332
|
+
* Jira expression.
|
|
333
|
+
* * `json`: A JSON object containing custom content.
|
|
334
|
+
* * `list`: A JSON list of `user`, `issue`, or `json` variable types.
|
|
335
|
+
*
|
|
336
|
+
* This operation can be accessed anonymously.
|
|
337
|
+
*
|
|
338
|
+
* **[Permissions](#permissions) required**: None. However, an expression may
|
|
339
|
+
* return different results for different users depending on their permissions.
|
|
340
|
+
* For example, different users may see different comments on the same issue.
|
|
341
|
+
* Permission to access Jira Software is required to access Jira Software context
|
|
342
|
+
* variables (`board` and `sprint`) or fields (for example, `issue.sprint`).
|
|
343
|
+
*
|
|
344
|
+
* @returns Returned if the evaluation results in a value. The result is a JSON primitive value, list, or object.
|
|
345
|
+
*
|
|
346
|
+
* example:
|
|
347
|
+
* ```
|
|
348
|
+
* {
|
|
349
|
+
* "value": "The expression's result. This value can be any JSON, not necessarily a String",
|
|
350
|
+
* "meta": {
|
|
351
|
+
* "complexity": {
|
|
352
|
+
* "steps": {
|
|
353
|
+
* "value": 1,
|
|
354
|
+
* "limit": 10000
|
|
355
|
+
* },
|
|
356
|
+
* "expensiveOperations": {
|
|
357
|
+
* "value": 3,
|
|
358
|
+
* "limit": 10
|
|
359
|
+
* },
|
|
360
|
+
* "beans": {
|
|
361
|
+
* "value": 0,
|
|
362
|
+
* "limit": 1000
|
|
363
|
+
* },
|
|
364
|
+
* "primitiveValues": {
|
|
365
|
+
* "value": 1,
|
|
366
|
+
* "limit": 10000
|
|
367
|
+
* }
|
|
368
|
+
* },
|
|
369
|
+
* "issues": {
|
|
370
|
+
* "jql": {
|
|
371
|
+
* "nextPageToken": "EgQIlMIC"
|
|
372
|
+
* }
|
|
373
|
+
* }
|
|
374
|
+
* }
|
|
375
|
+
* }
|
|
376
|
+
* ```
|
|
377
|
+
* @path POST `/rest/api/3/expression/evaluate`
|
|
378
|
+
* @scopes-current read:jira-work, read:jira-user
|
|
379
|
+
* @scopes-beta read:jira-expressions:jira
|
|
380
|
+
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-expressions#api-rest-api-3-expression-evaluate-post
|
|
381
|
+
* @param params
|
|
382
|
+
*/
|
|
383
|
+
this.evaluateJsisJiraExpression = ({ expand, jiraExpressionEvaluateRequestBean, }) => {
|
|
384
|
+
return this.getClientInstance()
|
|
385
|
+
.request({
|
|
386
|
+
path: "/rest/api/3/expression/evaluate",
|
|
387
|
+
method: "POST",
|
|
388
|
+
query: {
|
|
389
|
+
expand,
|
|
390
|
+
},
|
|
391
|
+
headers: {
|
|
392
|
+
"Content-Type": "application/json",
|
|
393
|
+
},
|
|
394
|
+
body: jiraExpressionEvaluateRequestBean,
|
|
395
|
+
})
|
|
396
|
+
.then(this.getClientInstance().responseHandler({
|
|
397
|
+
200: {
|
|
398
|
+
"application/json": "json",
|
|
399
|
+
},
|
|
400
|
+
}))
|
|
401
|
+
.then(commonHttpClient.castResponse())
|
|
402
|
+
.then(this.getClientInstance().validation(validationSchemaStorage_1.validationSchemaStorage.validator("JiraExpressionsService.evaluateJSISJiraExpression.response")))
|
|
403
|
+
.then(commonHttpClient.getBody);
|
|
404
|
+
};
|
|
259
405
|
}
|
|
260
406
|
static initialize() {
|
|
261
407
|
validationSchemaStorage_1.validationSchemaStorage.registerExtensible("JiraExpressionsService.analyseExpression.response", zod_1.z
|
|
@@ -272,6 +418,13 @@ class JiraExpressionsService extends CommonHttpService_1.CommonHttpService {
|
|
|
272
418
|
body: validationSchemaStorage_1.validationSchemaStorage.lazy("JiraExpressionResult"),
|
|
273
419
|
})
|
|
274
420
|
.describe("JiraExpressionsService.evaluateJiraExpression.response"));
|
|
421
|
+
validationSchemaStorage_1.validationSchemaStorage.registerExtensible("JiraExpressionsService.evaluateJSISJiraExpression.response", zod_1.z
|
|
422
|
+
.object({
|
|
423
|
+
status: zod_1.z.literal(200),
|
|
424
|
+
mediaType: zod_1.z.literal("application/json"),
|
|
425
|
+
body: validationSchemaStorage_1.validationSchemaStorage.lazy("JexpEvaluateJiraExpressionResultBean"),
|
|
426
|
+
})
|
|
427
|
+
.describe("JiraExpressionsService.evaluateJSISJiraExpression.response"));
|
|
275
428
|
validationSchemaStorage_1.validationSchemaStorage.registerOnce([
|
|
276
429
|
jiraExpressions_1.registerJiraExpressionsValidationSchemas,
|
|
277
430
|
]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"JiraExpressionsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/JiraExpressionsService.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAwB;AAExB,gEAAgE;AAChE,oEAAiE;AACjE,+
|
|
1
|
+
{"version":3,"file":"JiraExpressionsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/JiraExpressionsService.ts"],"names":[],"mappings":"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"}
|
|
@@ -74,16 +74,16 @@ export declare class LicenseMetricsService extends CommonHttpService {
|
|
|
74
74
|
* "plan": "PAID"
|
|
75
75
|
* },
|
|
76
76
|
* {
|
|
77
|
+
* "id": "jira-product-discovery",
|
|
78
|
+
* "plan": "FREE"
|
|
79
|
+
* },
|
|
80
|
+
* {
|
|
77
81
|
* "id": "jira-servicedesk",
|
|
78
82
|
* "plan": "FREE"
|
|
79
83
|
* },
|
|
80
84
|
* {
|
|
81
85
|
* "id": "jira-software",
|
|
82
86
|
* "plan": "PAID"
|
|
83
|
-
* },
|
|
84
|
-
* {
|
|
85
|
-
* "id": "jira-product-discovery",
|
|
86
|
-
* "plan": "FREE"
|
|
87
87
|
* }
|
|
88
88
|
* ]
|
|
89
89
|
* }
|
|
@@ -113,16 +113,16 @@ class LicenseMetricsService extends CommonHttpService_1.CommonHttpService {
|
|
|
113
113
|
* "plan": "PAID"
|
|
114
114
|
* },
|
|
115
115
|
* {
|
|
116
|
+
* "id": "jira-product-discovery",
|
|
117
|
+
* "plan": "FREE"
|
|
118
|
+
* },
|
|
119
|
+
* {
|
|
116
120
|
* "id": "jira-servicedesk",
|
|
117
121
|
* "plan": "FREE"
|
|
118
122
|
* },
|
|
119
123
|
* {
|
|
120
124
|
* "id": "jira-software",
|
|
121
125
|
* "plan": "PAID"
|
|
122
|
-
* },
|
|
123
|
-
* {
|
|
124
|
-
* "id": "jira-product-discovery",
|
|
125
|
-
* "plan": "FREE"
|
|
126
126
|
* }
|
|
127
127
|
* ]
|
|
128
128
|
* }
|
|
@@ -1715,7 +1715,7 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
1715
1715
|
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflows#api-rest-api-3-workflows-post
|
|
1716
1716
|
* @param params
|
|
1717
1717
|
*/
|
|
1718
|
-
readWorkflows: ({ expand, useTransitionLinksFormat, workflowReadRequest, }: {
|
|
1718
|
+
readWorkflows: ({ expand, useTransitionLinksFormat, useApprovalConfiguration, workflowReadRequest, }: {
|
|
1719
1719
|
/**
|
|
1720
1720
|
* Use [expand](#expansion) to include additional information in the response.
|
|
1721
1721
|
* This parameter accepts a comma-separated list. Expand options include:
|
|
@@ -1731,6 +1731,11 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
1731
1731
|
* fields (`to`/`from`) for workflow transition port mappings.
|
|
1732
1732
|
*/
|
|
1733
1733
|
useTransitionLinksFormat?: boolean | undefined;
|
|
1734
|
+
/**
|
|
1735
|
+
* Return the new field `approvalConfiguration` instead of the deprecated status
|
|
1736
|
+
* properties for approval configuration.
|
|
1737
|
+
*/
|
|
1738
|
+
useApprovalConfiguration?: boolean | undefined;
|
|
1734
1739
|
/**
|
|
1735
1740
|
* @example
|
|
1736
1741
|
* {
|
|
@@ -1529,7 +1529,7 @@ class WorkflowsService extends CommonHttpService_1.CommonHttpService {
|
|
|
1529
1529
|
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflows#api-rest-api-3-workflows-post
|
|
1530
1530
|
* @param params
|
|
1531
1531
|
*/
|
|
1532
|
-
this.readWorkflows = ({ expand, useTransitionLinksFormat, workflowReadRequest, }) => {
|
|
1532
|
+
this.readWorkflows = ({ expand, useTransitionLinksFormat, useApprovalConfiguration, workflowReadRequest, }) => {
|
|
1533
1533
|
return this.getClientInstance()
|
|
1534
1534
|
.request({
|
|
1535
1535
|
path: "/rest/api/3/workflows",
|
|
@@ -1537,6 +1537,7 @@ class WorkflowsService extends CommonHttpService_1.CommonHttpService {
|
|
|
1537
1537
|
query: {
|
|
1538
1538
|
expand,
|
|
1539
1539
|
useTransitionLinksFormat,
|
|
1540
|
+
useApprovalConfiguration,
|
|
1540
1541
|
},
|
|
1541
1542
|
headers: {
|
|
1542
1543
|
"Content-Type": "application/json",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WorkflowsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/WorkflowsService.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"WorkflowsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/WorkflowsService.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,7 +17,7 @@ type BaseJiraServiceManagementApiClientOptions = Partial<commonHttpClient.Common
|
|
|
17
17
|
*
|
|
18
18
|
* Public REST API for Jira Service Management
|
|
19
19
|
*
|
|
20
|
-
* @version 1001.0.0-SNAPSHOT-
|
|
20
|
+
* @version 1001.0.0-SNAPSHOT-c5de78e81f2fd0a97b837d46175000829de65d27
|
|
21
21
|
* @internal
|
|
22
22
|
*/
|
|
23
23
|
export declare class BaseJiraServiceManagementApiClient extends CommonHttpService {
|
|
@@ -27,7 +27,7 @@ class BaseJiraServiceManagementApiClientError extends commonHttpClient.CommonHtt
|
|
|
27
27
|
*
|
|
28
28
|
* Public REST API for Jira Service Management
|
|
29
29
|
*
|
|
30
|
-
* @version 1001.0.0-SNAPSHOT-
|
|
30
|
+
* @version 1001.0.0-SNAPSHOT-c5de78e81f2fd0a97b837d46175000829de65d27
|
|
31
31
|
* @internal
|
|
32
32
|
*/
|
|
33
33
|
class BaseJiraServiceManagementApiClient extends CommonHttpService_1.CommonHttpService {
|
|
@@ -267,8 +267,8 @@ export interface DurationDto {
|
|
|
267
267
|
millis?: number;
|
|
268
268
|
}
|
|
269
269
|
/**
|
|
270
|
-
*
|
|
271
|
-
*
|
|
270
|
+
* Provides answers to the form associated with a request type that is attached to
|
|
271
|
+
* the request on creation. Jira fields should be omitted from
|
|
272
272
|
* `requestFieldValues` if they are linked to form answers. Form answers in ADF
|
|
273
273
|
* format should have `isAdfRequest` set to true. Form answers are not currently
|
|
274
274
|
* validated.
|
|
@@ -515,8 +515,8 @@ export interface RequestCreateDto {
|
|
|
515
515
|
/** (Experimental) Shows extra information for the request channel. */
|
|
516
516
|
channel?: string;
|
|
517
517
|
/**
|
|
518
|
-
*
|
|
519
|
-
*
|
|
518
|
+
* Provides answers to the form associated with a request type that is attached to
|
|
519
|
+
* the request on creation. Jira fields should be omitted from
|
|
520
520
|
* `requestFieldValues` if they are linked to form answers. Form answers in ADF
|
|
521
521
|
* format should have `isAdfRequest` set to true. Form answers are not currently
|
|
522
522
|
* validated.
|
|
@@ -470,6 +470,24 @@ export interface IncludedFields {
|
|
|
470
470
|
excluded?: string[];
|
|
471
471
|
included?: string[];
|
|
472
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* Details of a link between issues.
|
|
475
|
+
*
|
|
476
|
+
* @category Models
|
|
477
|
+
*/
|
|
478
|
+
export interface InwardIssueLink {
|
|
479
|
+
/** The ID of the issue link. */
|
|
480
|
+
id?: string;
|
|
481
|
+
/**
|
|
482
|
+
* Provides details about the linked issue. If presenting this link in a user
|
|
483
|
+
* interface, use the `inward` field of the issue link type to label the link.
|
|
484
|
+
*/
|
|
485
|
+
inwardIssue: LinkedIssue;
|
|
486
|
+
/** The URL of the issue link. */
|
|
487
|
+
self?: string;
|
|
488
|
+
/** The type of link between the issues. */
|
|
489
|
+
type: IssueLinkType;
|
|
490
|
+
}
|
|
473
491
|
/** @category Models */
|
|
474
492
|
export interface IssueBeanKnownFields {
|
|
475
493
|
aggregateprogress?: IssueProgress;
|
|
@@ -498,7 +516,7 @@ export interface IssueBeanKnownFields {
|
|
|
498
516
|
creator?: UserDetails;
|
|
499
517
|
duedate?: string | null;
|
|
500
518
|
fixVersions?: Version[];
|
|
501
|
-
issuelinks?:
|
|
519
|
+
issuelinks?: IssueLinkFromIssue[];
|
|
502
520
|
/** Details about an issue type. */
|
|
503
521
|
issuetype?: IssueTypeDetails;
|
|
504
522
|
labels?: string[];
|
|
@@ -531,29 +549,8 @@ export interface IssueBeanKnownFields {
|
|
|
531
549
|
worklog?: PageOfWorklogs;
|
|
532
550
|
workratio?: number;
|
|
533
551
|
}
|
|
534
|
-
/**
|
|
535
|
-
|
|
536
|
-
*
|
|
537
|
-
* @category Models
|
|
538
|
-
*/
|
|
539
|
-
export interface IssueLink {
|
|
540
|
-
/** The ID of the issue link. */
|
|
541
|
-
id?: string;
|
|
542
|
-
/**
|
|
543
|
-
* Provides details about the linked issue. If presenting this link in a user
|
|
544
|
-
* interface, use the `inward` field of the issue link type to label the link.
|
|
545
|
-
*/
|
|
546
|
-
inwardIssue: LinkedIssue;
|
|
547
|
-
/**
|
|
548
|
-
* Provides details about the linked issue. If presenting this link in a user
|
|
549
|
-
* interface, use the `outward` field of the issue link type to label the link.
|
|
550
|
-
*/
|
|
551
|
-
outwardIssue: LinkedIssue;
|
|
552
|
-
/** The URL of the issue link. */
|
|
553
|
-
self?: string;
|
|
554
|
-
/** The type of link between the issues. */
|
|
555
|
-
type: IssueLinkType;
|
|
556
|
-
}
|
|
552
|
+
/** @category Models */
|
|
553
|
+
export type IssueLinkFromIssue = InwardIssueLink | OutwardIssueLink;
|
|
557
554
|
/**
|
|
558
555
|
* This object is used as follows:
|
|
559
556
|
*
|
|
@@ -759,6 +756,24 @@ export interface Operations extends Record<string, unknown> {
|
|
|
759
756
|
/** Details of the link groups defining issue operations. */
|
|
760
757
|
linkGroups?: LinkGroup[];
|
|
761
758
|
}
|
|
759
|
+
/**
|
|
760
|
+
* Details of a link between issues.
|
|
761
|
+
*
|
|
762
|
+
* @category Models
|
|
763
|
+
*/
|
|
764
|
+
export interface OutwardIssueLink {
|
|
765
|
+
/** The ID of the issue link. */
|
|
766
|
+
id?: string;
|
|
767
|
+
/**
|
|
768
|
+
* Provides details about the linked issue. If presenting this link in a user
|
|
769
|
+
* interface, use the `outward` field of the issue link type to label the link.
|
|
770
|
+
*/
|
|
771
|
+
outwardIssue: LinkedIssue;
|
|
772
|
+
/** The URL of the issue link. */
|
|
773
|
+
self?: string;
|
|
774
|
+
/** The type of link between the issues. */
|
|
775
|
+
type: IssueLinkType;
|
|
776
|
+
}
|
|
762
777
|
/** @category Models */
|
|
763
778
|
export interface PageBeanQuickFilterBean {
|
|
764
779
|
isLast?: boolean;
|