@resolution/jira-api-client 0.7.8 → 0.10.0
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/README.md +5 -5
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/openapi/core/CommonHttpClient.d.ts +29 -0
- package/lib/openapi/core/CommonHttpClient.js +29 -1
- package/lib/openapi/core/CommonHttpClient.js.map +1 -1
- package/lib/openapi/platform/BaseJiraPlatformApiClient.d.ts +27 -7
- package/lib/openapi/platform/BaseJiraPlatformApiClient.js +45 -1
- package/lib/openapi/platform/BaseJiraPlatformApiClient.js.map +1 -1
- package/lib/openapi/platform/models/appMigration.d.ts +12 -0
- package/lib/openapi/platform/models/appMigration.js.map +1 -1
- package/lib/openapi/platform/models/appProperties.d.ts +4 -2
- package/lib/openapi/platform/models/appProperties.js.map +1 -1
- package/lib/openapi/platform/models/common.d.ts +7 -43
- package/lib/openapi/platform/models/common.js +1 -21
- package/lib/openapi/platform/models/common.js.map +1 -1
- package/lib/openapi/platform/models/dashboards.d.ts +0 -30
- package/lib/openapi/platform/models/dashboards.js +0 -18
- package/lib/openapi/platform/models/dashboards.js.map +1 -1
- package/lib/openapi/platform/models/dynamicModules.d.ts +55 -51
- package/lib/openapi/platform/models/dynamicModules.js.map +1 -1
- package/lib/openapi/platform/models/issueBulkOperations.d.ts +102 -0
- package/lib/openapi/platform/models/issueBulkOperations.js +56 -0
- package/lib/openapi/platform/models/issueBulkOperations.js.map +1 -1
- package/lib/openapi/platform/models/issueCustomFieldOptions.d.ts +1 -4
- package/lib/openapi/platform/models/issueCustomFieldOptions.js.map +1 -1
- package/lib/openapi/platform/models/issueSecurityLevel.d.ts +1 -1
- package/lib/openapi/platform/models/issueSecuritySchemes.d.ts +1 -1
- package/lib/openapi/platform/models/issues.d.ts +124 -10
- package/lib/openapi/platform/models/issues.js +78 -0
- package/lib/openapi/platform/models/issues.js.map +1 -1
- package/lib/openapi/platform/models/jiraExpressions.d.ts +8 -1
- package/lib/openapi/platform/models/jiraExpressions.js.map +1 -1
- package/lib/openapi/platform/models/jql.d.ts +8 -0
- package/lib/openapi/platform/models/jql.js.map +1 -1
- package/lib/openapi/platform/models/jqlFunctionsApps.d.ts +43 -1
- package/lib/openapi/platform/models/jqlFunctionsApps.js +52 -2
- package/lib/openapi/platform/models/jqlFunctionsApps.js.map +1 -1
- package/lib/openapi/platform/models/permissionSchemes.d.ts +3 -4
- package/lib/openapi/platform/models/permissionSchemes.js.map +1 -1
- package/lib/openapi/platform/models/plans.d.ts +268 -0
- package/lib/openapi/platform/models/plans.js +425 -0
- package/lib/openapi/platform/models/plans.js.map +1 -0
- 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/serviceRegistry.d.ts +2 -0
- package/lib/openapi/platform/models/serviceRegistry.js.map +1 -1
- package/lib/openapi/platform/models/teamsInPlan.d.ts +79 -0
- package/lib/openapi/platform/models/teamsInPlan.js +86 -0
- package/lib/openapi/platform/models/teamsInPlan.js.map +1 -0
- package/lib/openapi/platform/models/workflows.d.ts +4 -0
- package/lib/openapi/platform/models/workflows.js +2 -0
- package/lib/openapi/platform/models/workflows.js.map +1 -1
- package/lib/openapi/platform/services/AnnouncementBannerService.d.ts +4 -4
- package/lib/openapi/platform/services/AppMigrationService.d.ts +87 -87
- package/lib/openapi/platform/services/AppMigrationService.js +49 -49
- package/lib/openapi/platform/services/AppPropertiesService.d.ts +17 -17
- package/lib/openapi/platform/services/AppPropertiesService.js +17 -17
- package/lib/openapi/platform/services/ApplicationRolesService.d.ts +2 -0
- package/lib/openapi/platform/services/ApplicationRolesService.js +2 -0
- package/lib/openapi/platform/services/ApplicationRolesService.js.map +1 -1
- package/lib/openapi/platform/services/DashboardsService.d.ts +64 -64
- package/lib/openapi/platform/services/FilterSharingService.d.ts +8 -4
- package/lib/openapi/platform/services/FilterSharingService.js +4 -0
- package/lib/openapi/platform/services/FilterSharingService.js.map +1 -1
- package/lib/openapi/platform/services/FiltersService.d.ts +21 -8
- package/lib/openapi/platform/services/FiltersService.js +8 -1
- package/lib/openapi/platform/services/FiltersService.js.map +1 -1
- package/lib/openapi/platform/services/GroupsService.d.ts +2 -2
- package/lib/openapi/platform/services/IssueAttachmentsService.d.ts +2 -0
- package/lib/openapi/platform/services/IssueAttachmentsService.js +2 -0
- package/lib/openapi/platform/services/IssueAttachmentsService.js.map +1 -1
- package/lib/openapi/platform/services/IssueBulkOperationsService.d.ts +293 -78
- package/lib/openapi/platform/services/IssueBulkOperationsService.js +244 -2
- package/lib/openapi/platform/services/IssueBulkOperationsService.js.map +1 -1
- package/lib/openapi/platform/services/IssueCommentsService.d.ts +42 -42
- package/lib/openapi/platform/services/IssueCustomFieldConfigurationAppsService.d.ts +29 -29
- package/lib/openapi/platform/services/IssueCustomFieldContextsService.d.ts +59 -59
- package/lib/openapi/platform/services/IssueCustomFieldOptionsAppsService.d.ts +59 -59
- package/lib/openapi/platform/services/IssueCustomFieldOptionsService.d.ts +37 -37
- package/lib/openapi/platform/services/IssueCustomFieldValuesAppsService.d.ts +25 -25
- package/lib/openapi/platform/services/IssueFieldConfigurationsService.d.ts +47 -47
- package/lib/openapi/platform/services/IssueFieldsService.d.ts +12 -11
- package/lib/openapi/platform/services/IssueFieldsService.js +3 -1
- package/lib/openapi/platform/services/IssueFieldsService.js.map +1 -1
- package/lib/openapi/platform/services/IssueLinkTypesService.d.ts +6 -6
- package/lib/openapi/platform/services/IssueLinksService.d.ts +28 -28
- package/lib/openapi/platform/services/IssueNavigatorSettingsService.d.ts +2 -0
- package/lib/openapi/platform/services/IssueNavigatorSettingsService.js +2 -0
- package/lib/openapi/platform/services/IssueNavigatorSettingsService.js.map +1 -1
- package/lib/openapi/platform/services/IssueNotificationSchemesService.d.ts +26 -26
- package/lib/openapi/platform/services/IssuePrioritiesService.d.ts +16 -14
- package/lib/openapi/platform/services/IssuePrioritiesService.js +2 -0
- package/lib/openapi/platform/services/IssuePrioritiesService.js.map +1 -1
- package/lib/openapi/platform/services/IssuePropertiesService.d.ts +38 -38
- package/lib/openapi/platform/services/IssueRemoteLinksService.d.ts +44 -42
- package/lib/openapi/platform/services/IssueRemoteLinksService.js +2 -0
- package/lib/openapi/platform/services/IssueRemoteLinksService.js.map +1 -1
- package/lib/openapi/platform/services/IssueResolutionsService.d.ts +12 -10
- package/lib/openapi/platform/services/IssueResolutionsService.js +2 -0
- package/lib/openapi/platform/services/IssueResolutionsService.js.map +1 -1
- package/lib/openapi/platform/services/IssueSearchService.d.ts +28 -28
- package/lib/openapi/platform/services/IssueSecuritySchemesService.d.ts +58 -58
- package/lib/openapi/platform/services/IssueTypePropertiesService.d.ts +2 -2
- package/lib/openapi/platform/services/IssueTypeSchemesService.d.ts +24 -24
- package/lib/openapi/platform/services/IssueTypeScreenSchemesService.d.ts +39 -39
- package/lib/openapi/platform/services/IssueTypesService.d.ts +12 -6
- package/lib/openapi/platform/services/IssueTypesService.js +6 -0
- package/lib/openapi/platform/services/IssueTypesService.js.map +1 -1
- package/lib/openapi/platform/services/IssueWatchersService.d.ts +5 -5
- package/lib/openapi/platform/services/IssueWorklogsService.d.ts +59 -57
- package/lib/openapi/platform/services/IssueWorklogsService.js +2 -0
- package/lib/openapi/platform/services/IssueWorklogsService.js.map +1 -1
- package/lib/openapi/platform/services/IssuesService.d.ts +692 -590
- package/lib/openapi/platform/services/IssuesService.js +121 -0
- package/lib/openapi/platform/services/IssuesService.js.map +1 -1
- package/lib/openapi/platform/services/JiraExpressionsService.d.ts +95 -95
- package/lib/openapi/platform/services/JiraSettingsService.d.ts +6 -2
- package/lib/openapi/platform/services/JiraSettingsService.js +4 -0
- package/lib/openapi/platform/services/JiraSettingsService.js.map +1 -1
- package/lib/openapi/platform/services/JqlFunctionsAppsService.d.ts +125 -28
- package/lib/openapi/platform/services/JqlFunctionsAppsService.js +137 -20
- package/lib/openapi/platform/services/JqlFunctionsAppsService.js.map +1 -1
- package/lib/openapi/platform/services/JqlService.d.ts +36 -36
- package/lib/openapi/platform/services/MyselfService.d.ts +1 -1
- package/lib/openapi/platform/services/PermissionSchemesService.d.ts +32 -35
- package/lib/openapi/platform/services/PermissionSchemesService.js +2 -5
- package/lib/openapi/platform/services/PermissionSchemesService.js.map +1 -1
- package/lib/openapi/platform/services/PermissionsService.d.ts +21 -21
- package/lib/openapi/platform/services/PlansService.d.ts +389 -0
- package/lib/openapi/platform/services/PlansService.js +459 -0
- package/lib/openapi/platform/services/PlansService.js.map +1 -0
- package/lib/openapi/platform/services/PrioritySchemesService.d.ts +83 -83
- package/lib/openapi/platform/services/ProjectAvatarsService.d.ts +1 -1
- package/lib/openapi/platform/services/ProjectCategoriesService.d.ts +6 -4
- package/lib/openapi/platform/services/ProjectCategoriesService.js +2 -0
- package/lib/openapi/platform/services/ProjectCategoriesService.js.map +1 -1
- package/lib/openapi/platform/services/ProjectClassificationLevelsService.d.ts +1 -1
- package/lib/openapi/platform/services/ProjectComponentsService.d.ts +13 -11
- package/lib/openapi/platform/services/ProjectComponentsService.js +2 -0
- package/lib/openapi/platform/services/ProjectComponentsService.js.map +1 -1
- package/lib/openapi/platform/services/ProjectEmailService.d.ts +1 -1
- package/lib/openapi/platform/services/ProjectFeaturesService.d.ts +1 -1
- package/lib/openapi/platform/services/ProjectPermissionSchemesService.d.ts +1 -1
- package/lib/openapi/platform/services/ProjectPropertiesService.d.ts +2 -2
- package/lib/openapi/platform/services/ProjectRoleActorsService.d.ts +14 -14
- package/lib/openapi/platform/services/ProjectRolesService.d.ts +10 -6
- package/lib/openapi/platform/services/ProjectRolesService.js +4 -0
- package/lib/openapi/platform/services/ProjectRolesService.js.map +1 -1
- package/lib/openapi/platform/services/ProjectTypesService.d.ts +4 -0
- package/lib/openapi/platform/services/ProjectTypesService.js +4 -0
- package/lib/openapi/platform/services/ProjectTypesService.js.map +1 -1
- package/lib/openapi/platform/services/ProjectVersionsService.d.ts +29 -25
- package/lib/openapi/platform/services/ProjectVersionsService.js +5 -1
- package/lib/openapi/platform/services/ProjectVersionsService.js.map +1 -1
- package/lib/openapi/platform/services/ProjectsService.d.ts +30 -24
- package/lib/openapi/platform/services/ProjectsService.js +6 -0
- package/lib/openapi/platform/services/ProjectsService.js.map +1 -1
- package/lib/openapi/platform/services/ScreenSchemesService.d.ts +12 -12
- package/lib/openapi/platform/services/ScreenTabFieldsService.d.ts +1 -1
- package/lib/openapi/platform/services/ScreenTabsService.d.ts +1 -1
- package/lib/openapi/platform/services/ScreensService.d.ts +4 -4
- package/lib/openapi/platform/services/ServiceRegistryService.d.ts +2 -0
- package/lib/openapi/platform/services/ServiceRegistryService.js.map +1 -1
- package/lib/openapi/platform/services/StatusService.d.ts +24 -20
- package/lib/openapi/platform/services/StatusService.js +4 -0
- package/lib/openapi/platform/services/StatusService.js.map +1 -1
- package/lib/openapi/platform/services/TeamsInPlanService.d.ts +294 -0
- package/lib/openapi/platform/services/TeamsInPlanService.js +452 -0
- package/lib/openapi/platform/services/TeamsInPlanService.js.map +1 -0
- package/lib/openapi/platform/services/TimeTrackingService.d.ts +7 -5
- package/lib/openapi/platform/services/TimeTrackingService.js +2 -0
- package/lib/openapi/platform/services/TimeTrackingService.js.map +1 -1
- package/lib/openapi/platform/services/UiModificationsAppsService.d.ts +44 -44
- package/lib/openapi/platform/services/UserSearchService.d.ts +19 -8
- package/lib/openapi/platform/services/UserSearchService.js +15 -5
- package/lib/openapi/platform/services/UserSearchService.js.map +1 -1
- package/lib/openapi/platform/services/UsersService.d.ts +7 -1
- package/lib/openapi/platform/services/UsersService.js +6 -0
- package/lib/openapi/platform/services/UsersService.js.map +1 -1
- package/lib/openapi/platform/services/WebhooksService.d.ts +39 -39
- package/lib/openapi/platform/services/WorkflowSchemeDraftsService.d.ts +39 -39
- package/lib/openapi/platform/services/WorkflowSchemeProjectAssociationsService.d.ts +2 -2
- package/lib/openapi/platform/services/WorkflowSchemesService.d.ts +102 -100
- package/lib/openapi/platform/services/WorkflowSchemesService.js +2 -0
- package/lib/openapi/platform/services/WorkflowSchemesService.js.map +1 -1
- package/lib/openapi/platform/services/WorkflowStatusCategoriesService.d.ts +2 -0
- package/lib/openapi/platform/services/WorkflowStatusCategoriesService.js +2 -0
- package/lib/openapi/platform/services/WorkflowStatusCategoriesService.js.map +1 -1
- package/lib/openapi/platform/services/WorkflowStatusesService.d.ts +2 -0
- package/lib/openapi/platform/services/WorkflowStatusesService.js +2 -0
- package/lib/openapi/platform/services/WorkflowStatusesService.js.map +1 -1
- package/lib/openapi/platform/services/WorkflowTransitionPropertiesService.d.ts +4 -2
- package/lib/openapi/platform/services/WorkflowTransitionPropertiesService.js +2 -0
- package/lib/openapi/platform/services/WorkflowTransitionPropertiesService.js.map +1 -1
- package/lib/openapi/platform/services/WorkflowTransitionRulesService.d.ts +48 -48
- package/lib/openapi/platform/services/WorkflowsService.d.ts +591 -589
- package/lib/openapi/platform/services/WorkflowsService.js +2 -0
- 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 +3 -1
- package/lib/openapi/serviceManagement/BaseJiraServiceManagementApiClient.js.map +1 -1
- package/lib/openapi/serviceManagement/models/organization.d.ts +5 -0
- package/lib/openapi/serviceManagement/models/organization.js +1 -0
- package/lib/openapi/serviceManagement/models/organization.js.map +1 -1
- package/lib/openapi/serviceManagement/services/CustomerService.d.ts +2 -2
- package/lib/openapi/serviceManagement/services/KnowledgebaseService.d.ts +11 -7
- package/lib/openapi/serviceManagement/services/KnowledgebaseService.js +3 -1
- package/lib/openapi/serviceManagement/services/KnowledgebaseService.js.map +1 -1
- package/lib/openapi/serviceManagement/services/OrganizationService.d.ts +39 -33
- package/lib/openapi/serviceManagement/services/OrganizationService.js +24 -18
- package/lib/openapi/serviceManagement/services/OrganizationService.js.map +1 -1
- package/lib/openapi/serviceManagement/services/RequestService.d.ts +68 -68
- package/lib/openapi/serviceManagement/services/RequestService.js +3 -3
- package/lib/openapi/serviceManagement/services/ServicedeskService.d.ts +39 -32
- package/lib/openapi/serviceManagement/services/ServicedeskService.js +4 -2
- package/lib/openapi/serviceManagement/services/ServicedeskService.js.map +1 -1
- package/lib/openapi/software/BaseJiraSoftwareApiClient.js +2 -0
- package/lib/openapi/software/BaseJiraSoftwareApiClient.js.map +1 -1
- package/lib/openapi/software/models/board.d.ts +2 -3
- package/lib/openapi/software/models/board.js.map +1 -1
- package/lib/openapi/software/models/builds.d.ts +40 -2
- package/lib/openapi/software/models/builds.js.map +1 -1
- package/lib/openapi/software/models/common.d.ts +8 -2
- package/lib/openapi/software/models/common.js.map +1 -1
- package/lib/openapi/software/models/deployments.d.ts +36 -2
- package/lib/openapi/software/models/deployments.js.map +1 -1
- package/lib/openapi/software/models/devOpsComponents.d.ts +10 -4
- package/lib/openapi/software/models/devOpsComponents.js.map +1 -1
- package/lib/openapi/software/models/developmentInformation.d.ts +106 -0
- package/lib/openapi/software/models/developmentInformation.js.map +1 -1
- package/lib/openapi/software/models/featureFlags.d.ts +20 -4
- package/lib/openapi/software/models/featureFlags.js.map +1 -1
- package/lib/openapi/software/models/operations.d.ts +76 -16
- package/lib/openapi/software/models/operations.js.map +1 -1
- package/lib/openapi/software/models/remoteLinks.d.ts +49 -13
- package/lib/openapi/software/models/remoteLinks.js.map +1 -1
- package/lib/openapi/software/models/securityInformation.d.ts +60 -8
- package/lib/openapi/software/models/securityInformation.js.map +1 -1
- package/lib/openapi/software/services/BacklogService.d.ts +12 -12
- package/lib/openapi/software/services/BoardService.d.ts +14 -14
- package/lib/openapi/software/services/EpicService.d.ts +18 -18
- package/lib/openapi/software/services/IssueService.d.ts +8 -8
- package/lib/openapi/software/services/OperationsService.d.ts +8 -4
- package/lib/openapi/software/services/OperationsService.js.map +1 -1
- package/lib/openapi/software/services/RemoteLinksService.d.ts +4 -2
- package/lib/openapi/software/services/RemoteLinksService.js.map +1 -1
- package/lib/openapi/software/services/SprintService.d.ts +20 -20
- package/package.json +5 -4
- package/CHANGELOG.md +0 -430
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as commonHttpClient from "../../core/CommonHttpClient";
|
|
2
2
|
import { CommonHttpService } from "../../core/CommonHttpService";
|
|
3
3
|
import { type IssueBean, type User } from "../models/common";
|
|
4
|
-
import { type ArchivedIssuesFilterRequest, type ArchiveIssueAsyncRequest, type BulkFetchIssueRequestBean, type BulkIssueResults, type CreatedIssue, type CreatedIssues, type ExportArchivedIssuesTaskProgressResponse, type IssueArchivalSyncRequest, type IssueArchivalSyncResponse, type IssueChangelogIds, type IssueCreateMetadata, type IssueEvent, type IssueLimitReportRequest, type IssueLimitReportResponseBean, type IssuesUpdateBean, type IssueUpdateDetails, type IssueUpdateMetadata, type Notification, type PageBeanChangelog, type PageOfChangelogs, type PageOfCreateMetaIssueTypes, type PageOfCreateMetaIssueTypeWithField, type Transitions } from "../models/issues";
|
|
4
|
+
import { type ArchivedIssuesFilterRequest, type ArchiveIssueAsyncRequest, type BulkChangelogRequestBean, type BulkChangelogResponseBean, type BulkFetchIssueRequestBean, type BulkIssueResults, type CreatedIssue, type CreatedIssues, type ExportArchivedIssuesTaskProgressResponse, type IssueArchivalSyncRequest, type IssueArchivalSyncResponse, type IssueChangelogIds, type IssueCreateMetadata, type IssueEvent, type IssueLimitReportRequest, type IssueLimitReportResponseBean, type IssuesUpdateBean, type IssueUpdateDetails, type IssueUpdateMetadata, type Notification, type PageBeanChangelog, type PageOfChangelogs, type PageOfCreateMetaIssueTypes, type PageOfCreateMetaIssueTypeWithField, type Transitions } from "../models/issues";
|
|
5
5
|
/**
|
|
6
6
|
* This resource represents Jira issues. Use it to:
|
|
7
7
|
*
|
|
@@ -96,11 +96,11 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
96
96
|
*
|
|
97
97
|
* @example
|
|
98
98
|
* {
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
99
|
+
* "issueIdsOrKeys": [
|
|
100
|
+
* "PR-1",
|
|
101
|
+
* "1001",
|
|
102
|
+
* "PROJECT-2"
|
|
103
|
+
* ]
|
|
104
104
|
* }
|
|
105
105
|
*/
|
|
106
106
|
issueArchivalSyncRequest: IssueArchivalSyncRequest;
|
|
@@ -150,7 +150,7 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
150
150
|
*
|
|
151
151
|
* @example
|
|
152
152
|
* {
|
|
153
|
-
*
|
|
153
|
+
* "jql": "project = FOO AND updated < -2y"
|
|
154
154
|
* }
|
|
155
155
|
*/
|
|
156
156
|
archiveIssueAsyncRequest: ArchiveIssueAsyncRequest;
|
|
@@ -190,7 +190,7 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
190
190
|
*
|
|
191
191
|
* @example
|
|
192
192
|
* {
|
|
193
|
-
*
|
|
193
|
+
* "accountId": "5b10ac8d82e05b22cc7d4ef5"
|
|
194
194
|
* }
|
|
195
195
|
*/
|
|
196
196
|
user: User;
|
|
@@ -400,21 +400,21 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
400
400
|
*
|
|
401
401
|
* @example
|
|
402
402
|
* {
|
|
403
|
-
*
|
|
404
|
-
*
|
|
405
|
-
*
|
|
406
|
-
*
|
|
407
|
-
*
|
|
408
|
-
*
|
|
409
|
-
*
|
|
410
|
-
*
|
|
411
|
-
*
|
|
412
|
-
*
|
|
413
|
-
*
|
|
414
|
-
*
|
|
415
|
-
*
|
|
416
|
-
*
|
|
417
|
-
*
|
|
403
|
+
* "expand": [
|
|
404
|
+
* "names"
|
|
405
|
+
* ],
|
|
406
|
+
* "fields": [
|
|
407
|
+
* "summary",
|
|
408
|
+
* "project",
|
|
409
|
+
* "assignee"
|
|
410
|
+
* ],
|
|
411
|
+
* "fieldsByKeys": false,
|
|
412
|
+
* "issueIdsOrKeys": [
|
|
413
|
+
* "EX-1",
|
|
414
|
+
* "EX-2",
|
|
415
|
+
* "10005"
|
|
416
|
+
* ],
|
|
417
|
+
* "properties": []
|
|
418
418
|
* }
|
|
419
419
|
*/
|
|
420
420
|
bulkFetchIssueRequestBean: BulkFetchIssueRequestBean;
|
|
@@ -481,129 +481,129 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
481
481
|
/**
|
|
482
482
|
* @example
|
|
483
483
|
* {
|
|
484
|
-
*
|
|
485
|
-
*
|
|
486
|
-
*
|
|
487
|
-
*
|
|
488
|
-
*
|
|
484
|
+
* "fields": {
|
|
485
|
+
* "assignee": {
|
|
486
|
+
* "id": "5b109f2e9729b51b54dc274d"
|
|
487
|
+
* },
|
|
488
|
+
* "components": [
|
|
489
|
+
* {
|
|
490
|
+
* "id": "10000"
|
|
491
|
+
* }
|
|
492
|
+
* ],
|
|
493
|
+
* "customfield_10000": "09/Jun/19",
|
|
494
|
+
* "customfield_20000": "06/Jul/19 3:25 PM",
|
|
495
|
+
* "customfield_30000": [
|
|
496
|
+
* "10000",
|
|
497
|
+
* "10002"
|
|
498
|
+
* ],
|
|
499
|
+
* "customfield_40000": {
|
|
500
|
+
* "content": [
|
|
501
|
+
* {
|
|
502
|
+
* "content": [
|
|
489
503
|
* {
|
|
490
|
-
*
|
|
504
|
+
* "text": "Occurs on all orders",
|
|
505
|
+
* "type": "text"
|
|
491
506
|
* }
|
|
492
|
-
*
|
|
493
|
-
*
|
|
494
|
-
*
|
|
495
|
-
*
|
|
496
|
-
*
|
|
497
|
-
*
|
|
498
|
-
*
|
|
499
|
-
*
|
|
500
|
-
*
|
|
501
|
-
*
|
|
502
|
-
*
|
|
503
|
-
* {
|
|
504
|
-
* "text": "Occurs on all orders",
|
|
505
|
-
* "type": "text"
|
|
506
|
-
* }
|
|
507
|
-
* ],
|
|
508
|
-
* "type": "paragraph"
|
|
509
|
-
* }
|
|
510
|
-
* ],
|
|
511
|
-
* "type": "doc",
|
|
512
|
-
* "version": 1
|
|
513
|
-
* },
|
|
514
|
-
* "customfield_50000": {
|
|
515
|
-
* "content": [
|
|
516
|
-
* {
|
|
517
|
-
* "content": [
|
|
518
|
-
* {
|
|
519
|
-
* "text": "Could impact day-to-day work.",
|
|
520
|
-
* "type": "text"
|
|
521
|
-
* }
|
|
522
|
-
* ],
|
|
523
|
-
* "type": "paragraph"
|
|
524
|
-
* }
|
|
525
|
-
* ],
|
|
526
|
-
* "type": "doc",
|
|
527
|
-
* "version": 1
|
|
528
|
-
* },
|
|
529
|
-
* "customfield_60000": "jira-software-users",
|
|
530
|
-
* "customfield_70000": [
|
|
531
|
-
* "jira-administrators",
|
|
532
|
-
* "jira-software-users"
|
|
533
|
-
* ],
|
|
534
|
-
* "customfield_80000": {
|
|
535
|
-
* "value": "red"
|
|
536
|
-
* },
|
|
537
|
-
* "description": {
|
|
538
|
-
* "content": [
|
|
539
|
-
* {
|
|
540
|
-
* "content": [
|
|
541
|
-
* {
|
|
542
|
-
* "text": "Order entry fails when selecting supplier.",
|
|
543
|
-
* "type": "text"
|
|
544
|
-
* }
|
|
545
|
-
* ],
|
|
546
|
-
* "type": "paragraph"
|
|
547
|
-
* }
|
|
548
|
-
* ],
|
|
549
|
-
* "type": "doc",
|
|
550
|
-
* "version": 1
|
|
551
|
-
* },
|
|
552
|
-
* "duedate": "2019-05-11",
|
|
553
|
-
* "environment": {
|
|
554
|
-
* "content": [
|
|
555
|
-
* {
|
|
556
|
-
* "content": [
|
|
557
|
-
* {
|
|
558
|
-
* "text": "UAT",
|
|
559
|
-
* "type": "text"
|
|
560
|
-
* }
|
|
561
|
-
* ],
|
|
562
|
-
* "type": "paragraph"
|
|
563
|
-
* }
|
|
564
|
-
* ],
|
|
565
|
-
* "type": "doc",
|
|
566
|
-
* "version": 1
|
|
567
|
-
* },
|
|
568
|
-
* "fixVersions": [
|
|
507
|
+
* ],
|
|
508
|
+
* "type": "paragraph"
|
|
509
|
+
* }
|
|
510
|
+
* ],
|
|
511
|
+
* "type": "doc",
|
|
512
|
+
* "version": 1
|
|
513
|
+
* },
|
|
514
|
+
* "customfield_50000": {
|
|
515
|
+
* "content": [
|
|
516
|
+
* {
|
|
517
|
+
* "content": [
|
|
569
518
|
* {
|
|
570
|
-
*
|
|
519
|
+
* "text": "Could impact day-to-day work.",
|
|
520
|
+
* "type": "text"
|
|
571
521
|
* }
|
|
572
|
-
*
|
|
573
|
-
*
|
|
574
|
-
*
|
|
575
|
-
*
|
|
576
|
-
*
|
|
577
|
-
*
|
|
578
|
-
*
|
|
579
|
-
*
|
|
580
|
-
*
|
|
581
|
-
*
|
|
582
|
-
*
|
|
583
|
-
*
|
|
584
|
-
*
|
|
585
|
-
*
|
|
586
|
-
*
|
|
587
|
-
*
|
|
588
|
-
*
|
|
589
|
-
*
|
|
590
|
-
*
|
|
591
|
-
* },
|
|
592
|
-
* "security": {
|
|
593
|
-
* "id": "10000"
|
|
594
|
-
* },
|
|
595
|
-
* "summary": "Main order flow broken",
|
|
596
|
-
* "timetracking": {
|
|
597
|
-
* "originalEstimate": "10",
|
|
598
|
-
* "remainingEstimate": "5"
|
|
599
|
-
* },
|
|
600
|
-
* "versions": [
|
|
522
|
+
* ],
|
|
523
|
+
* "type": "paragraph"
|
|
524
|
+
* }
|
|
525
|
+
* ],
|
|
526
|
+
* "type": "doc",
|
|
527
|
+
* "version": 1
|
|
528
|
+
* },
|
|
529
|
+
* "customfield_60000": "jira-software-users",
|
|
530
|
+
* "customfield_70000": [
|
|
531
|
+
* "jira-administrators",
|
|
532
|
+
* "jira-software-users"
|
|
533
|
+
* ],
|
|
534
|
+
* "customfield_80000": {
|
|
535
|
+
* "value": "red"
|
|
536
|
+
* },
|
|
537
|
+
* "description": {
|
|
538
|
+
* "content": [
|
|
539
|
+
* {
|
|
540
|
+
* "content": [
|
|
601
541
|
* {
|
|
602
|
-
*
|
|
542
|
+
* "text": "Order entry fails when selecting supplier.",
|
|
543
|
+
* "type": "text"
|
|
603
544
|
* }
|
|
604
|
-
*
|
|
545
|
+
* ],
|
|
546
|
+
* "type": "paragraph"
|
|
547
|
+
* }
|
|
548
|
+
* ],
|
|
549
|
+
* "type": "doc",
|
|
550
|
+
* "version": 1
|
|
551
|
+
* },
|
|
552
|
+
* "duedate": "2019-05-11",
|
|
553
|
+
* "environment": {
|
|
554
|
+
* "content": [
|
|
555
|
+
* {
|
|
556
|
+
* "content": [
|
|
557
|
+
* {
|
|
558
|
+
* "text": "UAT",
|
|
559
|
+
* "type": "text"
|
|
560
|
+
* }
|
|
561
|
+
* ],
|
|
562
|
+
* "type": "paragraph"
|
|
563
|
+
* }
|
|
564
|
+
* ],
|
|
565
|
+
* "type": "doc",
|
|
566
|
+
* "version": 1
|
|
567
|
+
* },
|
|
568
|
+
* "fixVersions": [
|
|
569
|
+
* {
|
|
570
|
+
* "id": "10001"
|
|
571
|
+
* }
|
|
572
|
+
* ],
|
|
573
|
+
* "issuetype": {
|
|
574
|
+
* "id": "10000"
|
|
575
|
+
* },
|
|
576
|
+
* "labels": [
|
|
577
|
+
* "bugfix",
|
|
578
|
+
* "blitz_test"
|
|
579
|
+
* ],
|
|
580
|
+
* "parent": {
|
|
581
|
+
* "key": "PROJ-123"
|
|
582
|
+
* },
|
|
583
|
+
* "priority": {
|
|
584
|
+
* "id": "20000"
|
|
605
585
|
* },
|
|
606
|
-
* "
|
|
586
|
+
* "project": {
|
|
587
|
+
* "id": "10000"
|
|
588
|
+
* },
|
|
589
|
+
* "reporter": {
|
|
590
|
+
* "id": "5b10a2844c20165700ede21g"
|
|
591
|
+
* },
|
|
592
|
+
* "security": {
|
|
593
|
+
* "id": "10000"
|
|
594
|
+
* },
|
|
595
|
+
* "summary": "Main order flow broken",
|
|
596
|
+
* "timetracking": {
|
|
597
|
+
* "originalEstimate": "10",
|
|
598
|
+
* "remainingEstimate": "5"
|
|
599
|
+
* },
|
|
600
|
+
* "versions": [
|
|
601
|
+
* {
|
|
602
|
+
* "id": "10000"
|
|
603
|
+
* }
|
|
604
|
+
* ]
|
|
605
|
+
* },
|
|
606
|
+
* "update": {}
|
|
607
607
|
* }
|
|
608
608
|
*/
|
|
609
609
|
issueUpdateDetails: IssueUpdateDetails;
|
|
@@ -677,260 +677,260 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
677
677
|
/**
|
|
678
678
|
* @example
|
|
679
679
|
* {
|
|
680
|
-
*
|
|
681
|
-
*
|
|
682
|
-
*
|
|
683
|
-
*
|
|
684
|
-
*
|
|
685
|
-
*
|
|
686
|
-
*
|
|
687
|
-
*
|
|
688
|
-
*
|
|
689
|
-
*
|
|
690
|
-
*
|
|
691
|
-
*
|
|
692
|
-
*
|
|
693
|
-
*
|
|
694
|
-
*
|
|
695
|
-
*
|
|
696
|
-
*
|
|
697
|
-
*
|
|
698
|
-
*
|
|
699
|
-
*
|
|
700
|
-
*
|
|
701
|
-
*
|
|
702
|
-
*
|
|
703
|
-
*
|
|
704
|
-
*
|
|
705
|
-
*
|
|
706
|
-
*
|
|
707
|
-
* }
|
|
708
|
-
* ],
|
|
709
|
-
* "type": "doc",
|
|
710
|
-
* "version": 1
|
|
711
|
-
* },
|
|
712
|
-
* "customfield_50000": {
|
|
713
|
-
* "content": [
|
|
714
|
-
* {
|
|
715
|
-
* "content": [
|
|
716
|
-
* {
|
|
717
|
-
* "text": "Could impact day-to-day work.",
|
|
718
|
-
* "type": "text"
|
|
719
|
-
* }
|
|
720
|
-
* ],
|
|
721
|
-
* "type": "paragraph"
|
|
722
|
-
* }
|
|
723
|
-
* ],
|
|
724
|
-
* "type": "doc",
|
|
725
|
-
* "version": 1
|
|
726
|
-
* },
|
|
727
|
-
* "customfield_60000": "jira-software-users",
|
|
728
|
-
* "customfield_70000": [
|
|
729
|
-
* "jira-administrators",
|
|
730
|
-
* "jira-software-users"
|
|
731
|
-
* ],
|
|
732
|
-
* "customfield_80000": {
|
|
733
|
-
* "value": "red"
|
|
734
|
-
* },
|
|
735
|
-
* "description": {
|
|
736
|
-
* "content": [
|
|
737
|
-
* {
|
|
738
|
-
* "content": [
|
|
739
|
-
* {
|
|
740
|
-
* "text": "Order entry fails when selecting supplier.",
|
|
741
|
-
* "type": "text"
|
|
742
|
-
* }
|
|
743
|
-
* ],
|
|
744
|
-
* "type": "paragraph"
|
|
745
|
-
* }
|
|
746
|
-
* ],
|
|
747
|
-
* "type": "doc",
|
|
748
|
-
* "version": 1
|
|
749
|
-
* },
|
|
750
|
-
* "duedate": "2011-03-11",
|
|
751
|
-
* "environment": {
|
|
752
|
-
* "content": [
|
|
753
|
-
* {
|
|
754
|
-
* "content": [
|
|
755
|
-
* {
|
|
756
|
-
* "text": "UAT",
|
|
757
|
-
* "type": "text"
|
|
758
|
-
* }
|
|
759
|
-
* ],
|
|
760
|
-
* "type": "paragraph"
|
|
761
|
-
* }
|
|
762
|
-
* ],
|
|
763
|
-
* "type": "doc",
|
|
764
|
-
* "version": 1
|
|
765
|
-
* },
|
|
766
|
-
* "fixVersions": [
|
|
767
|
-
* {
|
|
768
|
-
* "id": "10001"
|
|
769
|
-
* }
|
|
770
|
-
* ],
|
|
771
|
-
* "issuetype": {
|
|
772
|
-
* "id": "10000"
|
|
773
|
-
* },
|
|
774
|
-
* "labels": [
|
|
775
|
-
* "bugfix",
|
|
776
|
-
* "blitz_test"
|
|
777
|
-
* ],
|
|
778
|
-
* "priority": {
|
|
779
|
-
* "id": "20000"
|
|
780
|
-
* },
|
|
781
|
-
* "project": {
|
|
782
|
-
* "id": "10000"
|
|
783
|
-
* },
|
|
784
|
-
* "reporter": {
|
|
785
|
-
* "id": "5b10a2844c20165700ede21g"
|
|
786
|
-
* },
|
|
787
|
-
* "security": {
|
|
788
|
-
* "id": "10000"
|
|
789
|
-
* },
|
|
790
|
-
* "summary": "Main order flow broken",
|
|
791
|
-
* "timetracking": {
|
|
792
|
-
* "originalEstimate": "10",
|
|
793
|
-
* "remainingEstimate": "5"
|
|
794
|
-
* },
|
|
795
|
-
* "versions": [
|
|
796
|
-
* {
|
|
797
|
-
* "id": "10000"
|
|
798
|
-
* }
|
|
799
|
-
* ]
|
|
800
|
-
* },
|
|
801
|
-
* "update": {
|
|
802
|
-
* "worklog": [
|
|
803
|
-
* {
|
|
804
|
-
* "add": {
|
|
805
|
-
* "started": "2019-07-05T11:05:00.000+0000",
|
|
806
|
-
* "timeSpent": "60m"
|
|
807
|
-
* }
|
|
808
|
-
* }
|
|
809
|
-
* ]
|
|
680
|
+
* "issueUpdates": [
|
|
681
|
+
* {
|
|
682
|
+
* "fields": {
|
|
683
|
+
* "assignee": {
|
|
684
|
+
* "id": "5b109f2e9729b51b54dc274d"
|
|
685
|
+
* },
|
|
686
|
+
* "components": [
|
|
687
|
+
* {
|
|
688
|
+
* "id": "10000"
|
|
689
|
+
* }
|
|
690
|
+
* ],
|
|
691
|
+
* "customfield_10000": "09/Jun/19",
|
|
692
|
+
* "customfield_20000": "06/Jul/19 3:25 PM",
|
|
693
|
+
* "customfield_30000": [
|
|
694
|
+
* "10000",
|
|
695
|
+
* "10002"
|
|
696
|
+
* ],
|
|
697
|
+
* "customfield_40000": {
|
|
698
|
+
* "content": [
|
|
699
|
+
* {
|
|
700
|
+
* "content": [
|
|
701
|
+
* {
|
|
702
|
+
* "text": "Occurs on all orders",
|
|
703
|
+
* "type": "text"
|
|
704
|
+
* }
|
|
705
|
+
* ],
|
|
706
|
+
* "type": "paragraph"
|
|
810
707
|
* }
|
|
708
|
+
* ],
|
|
709
|
+
* "type": "doc",
|
|
710
|
+
* "version": 1
|
|
811
711
|
* },
|
|
812
|
-
* {
|
|
813
|
-
*
|
|
814
|
-
*
|
|
815
|
-
*
|
|
816
|
-
*
|
|
817
|
-
*
|
|
818
|
-
*
|
|
819
|
-
*
|
|
820
|
-
*
|
|
821
|
-
*
|
|
822
|
-
*
|
|
823
|
-
*
|
|
824
|
-
*
|
|
825
|
-
*
|
|
826
|
-
*
|
|
827
|
-
*
|
|
828
|
-
*
|
|
829
|
-
*
|
|
830
|
-
*
|
|
831
|
-
*
|
|
832
|
-
*
|
|
833
|
-
*
|
|
834
|
-
*
|
|
835
|
-
*
|
|
836
|
-
*
|
|
837
|
-
*
|
|
838
|
-
*
|
|
839
|
-
*
|
|
840
|
-
*
|
|
841
|
-
*
|
|
842
|
-
* }
|
|
843
|
-
*
|
|
844
|
-
*
|
|
845
|
-
*
|
|
846
|
-
*
|
|
847
|
-
*
|
|
848
|
-
*
|
|
849
|
-
*
|
|
850
|
-
*
|
|
851
|
-
*
|
|
852
|
-
*
|
|
853
|
-
*
|
|
854
|
-
*
|
|
855
|
-
*
|
|
856
|
-
*
|
|
857
|
-
*
|
|
858
|
-
*
|
|
859
|
-
*
|
|
860
|
-
*
|
|
861
|
-
*
|
|
862
|
-
*
|
|
863
|
-
*
|
|
864
|
-
*
|
|
865
|
-
*
|
|
866
|
-
*
|
|
867
|
-
*
|
|
868
|
-
*
|
|
869
|
-
*
|
|
870
|
-
*
|
|
871
|
-
*
|
|
872
|
-
*
|
|
873
|
-
*
|
|
874
|
-
*
|
|
875
|
-
*
|
|
876
|
-
*
|
|
877
|
-
*
|
|
878
|
-
*
|
|
879
|
-
*
|
|
880
|
-
*
|
|
881
|
-
*
|
|
882
|
-
*
|
|
883
|
-
*
|
|
884
|
-
*
|
|
885
|
-
*
|
|
886
|
-
*
|
|
887
|
-
*
|
|
888
|
-
*
|
|
889
|
-
*
|
|
890
|
-
*
|
|
891
|
-
*
|
|
892
|
-
*
|
|
893
|
-
*
|
|
894
|
-
*
|
|
895
|
-
*
|
|
896
|
-
*
|
|
897
|
-
*
|
|
898
|
-
*
|
|
899
|
-
*
|
|
900
|
-
*
|
|
901
|
-
*
|
|
902
|
-
*
|
|
903
|
-
*
|
|
904
|
-
*
|
|
905
|
-
*
|
|
906
|
-
*
|
|
907
|
-
*
|
|
908
|
-
*
|
|
909
|
-
*
|
|
910
|
-
*
|
|
911
|
-
*
|
|
912
|
-
*
|
|
913
|
-
*
|
|
914
|
-
*
|
|
915
|
-
*
|
|
916
|
-
*
|
|
917
|
-
*
|
|
918
|
-
*
|
|
919
|
-
*
|
|
920
|
-
*
|
|
921
|
-
*
|
|
922
|
-
*
|
|
923
|
-
*
|
|
924
|
-
*
|
|
925
|
-
*
|
|
926
|
-
*
|
|
927
|
-
*
|
|
928
|
-
*
|
|
929
|
-
*
|
|
930
|
-
*
|
|
931
|
-
*
|
|
932
|
-
*
|
|
933
|
-
*
|
|
712
|
+
* "customfield_50000": {
|
|
713
|
+
* "content": [
|
|
714
|
+
* {
|
|
715
|
+
* "content": [
|
|
716
|
+
* {
|
|
717
|
+
* "text": "Could impact day-to-day work.",
|
|
718
|
+
* "type": "text"
|
|
719
|
+
* }
|
|
720
|
+
* ],
|
|
721
|
+
* "type": "paragraph"
|
|
722
|
+
* }
|
|
723
|
+
* ],
|
|
724
|
+
* "type": "doc",
|
|
725
|
+
* "version": 1
|
|
726
|
+
* },
|
|
727
|
+
* "customfield_60000": "jira-software-users",
|
|
728
|
+
* "customfield_70000": [
|
|
729
|
+
* "jira-administrators",
|
|
730
|
+
* "jira-software-users"
|
|
731
|
+
* ],
|
|
732
|
+
* "customfield_80000": {
|
|
733
|
+
* "value": "red"
|
|
734
|
+
* },
|
|
735
|
+
* "description": {
|
|
736
|
+
* "content": [
|
|
737
|
+
* {
|
|
738
|
+
* "content": [
|
|
739
|
+
* {
|
|
740
|
+
* "text": "Order entry fails when selecting supplier.",
|
|
741
|
+
* "type": "text"
|
|
742
|
+
* }
|
|
743
|
+
* ],
|
|
744
|
+
* "type": "paragraph"
|
|
745
|
+
* }
|
|
746
|
+
* ],
|
|
747
|
+
* "type": "doc",
|
|
748
|
+
* "version": 1
|
|
749
|
+
* },
|
|
750
|
+
* "duedate": "2011-03-11",
|
|
751
|
+
* "environment": {
|
|
752
|
+
* "content": [
|
|
753
|
+
* {
|
|
754
|
+
* "content": [
|
|
755
|
+
* {
|
|
756
|
+
* "text": "UAT",
|
|
757
|
+
* "type": "text"
|
|
758
|
+
* }
|
|
759
|
+
* ],
|
|
760
|
+
* "type": "paragraph"
|
|
761
|
+
* }
|
|
762
|
+
* ],
|
|
763
|
+
* "type": "doc",
|
|
764
|
+
* "version": 1
|
|
765
|
+
* },
|
|
766
|
+
* "fixVersions": [
|
|
767
|
+
* {
|
|
768
|
+
* "id": "10001"
|
|
769
|
+
* }
|
|
770
|
+
* ],
|
|
771
|
+
* "issuetype": {
|
|
772
|
+
* "id": "10000"
|
|
773
|
+
* },
|
|
774
|
+
* "labels": [
|
|
775
|
+
* "bugfix",
|
|
776
|
+
* "blitz_test"
|
|
777
|
+
* ],
|
|
778
|
+
* "priority": {
|
|
779
|
+
* "id": "20000"
|
|
780
|
+
* },
|
|
781
|
+
* "project": {
|
|
782
|
+
* "id": "10000"
|
|
783
|
+
* },
|
|
784
|
+
* "reporter": {
|
|
785
|
+
* "id": "5b10a2844c20165700ede21g"
|
|
786
|
+
* },
|
|
787
|
+
* "security": {
|
|
788
|
+
* "id": "10000"
|
|
789
|
+
* },
|
|
790
|
+
* "summary": "Main order flow broken",
|
|
791
|
+
* "timetracking": {
|
|
792
|
+
* "originalEstimate": "10",
|
|
793
|
+
* "remainingEstimate": "5"
|
|
794
|
+
* },
|
|
795
|
+
* "versions": [
|
|
796
|
+
* {
|
|
797
|
+
* "id": "10000"
|
|
798
|
+
* }
|
|
799
|
+
* ]
|
|
800
|
+
* },
|
|
801
|
+
* "update": {
|
|
802
|
+
* "worklog": [
|
|
803
|
+
* {
|
|
804
|
+
* "add": {
|
|
805
|
+
* "started": "2019-07-05T11:05:00.000+0000",
|
|
806
|
+
* "timeSpent": "60m"
|
|
807
|
+
* }
|
|
808
|
+
* }
|
|
809
|
+
* ]
|
|
810
|
+
* }
|
|
811
|
+
* },
|
|
812
|
+
* {
|
|
813
|
+
* "fields": {
|
|
814
|
+
* "assignee": {
|
|
815
|
+
* "id": "5b109f2e9729b51b54dc274d"
|
|
816
|
+
* },
|
|
817
|
+
* "components": [
|
|
818
|
+
* {
|
|
819
|
+
* "id": "10000"
|
|
820
|
+
* }
|
|
821
|
+
* ],
|
|
822
|
+
* "customfield_10000": "09/Jun/19",
|
|
823
|
+
* "customfield_20000": "06/Jul/19 3:25 PM",
|
|
824
|
+
* "customfield_30000": [
|
|
825
|
+
* "10000",
|
|
826
|
+
* "10002"
|
|
827
|
+
* ],
|
|
828
|
+
* "customfield_40000": {
|
|
829
|
+
* "content": [
|
|
830
|
+
* {
|
|
831
|
+
* "content": [
|
|
832
|
+
* {
|
|
833
|
+
* "text": "Occurs on all orders",
|
|
834
|
+
* "type": "text"
|
|
835
|
+
* }
|
|
836
|
+
* ],
|
|
837
|
+
* "type": "paragraph"
|
|
838
|
+
* }
|
|
839
|
+
* ],
|
|
840
|
+
* "type": "doc",
|
|
841
|
+
* "version": 1
|
|
842
|
+
* },
|
|
843
|
+
* "customfield_50000": {
|
|
844
|
+
* "content": [
|
|
845
|
+
* {
|
|
846
|
+
* "content": [
|
|
847
|
+
* {
|
|
848
|
+
* "text": "Could impact day-to-day work.",
|
|
849
|
+
* "type": "text"
|
|
850
|
+
* }
|
|
851
|
+
* ],
|
|
852
|
+
* "type": "paragraph"
|
|
853
|
+
* }
|
|
854
|
+
* ],
|
|
855
|
+
* "type": "doc",
|
|
856
|
+
* "version": 1
|
|
857
|
+
* },
|
|
858
|
+
* "customfield_60000": "jira-software-users",
|
|
859
|
+
* "customfield_70000": [
|
|
860
|
+
* "jira-administrators",
|
|
861
|
+
* "jira-software-users"
|
|
862
|
+
* ],
|
|
863
|
+
* "customfield_80000": {
|
|
864
|
+
* "value": "red"
|
|
865
|
+
* },
|
|
866
|
+
* "description": {
|
|
867
|
+
* "content": [
|
|
868
|
+
* {
|
|
869
|
+
* "content": [
|
|
870
|
+
* {
|
|
871
|
+
* "text": "Order remains pending after approved.",
|
|
872
|
+
* "type": "text"
|
|
873
|
+
* }
|
|
874
|
+
* ],
|
|
875
|
+
* "type": "paragraph"
|
|
876
|
+
* }
|
|
877
|
+
* ],
|
|
878
|
+
* "type": "doc",
|
|
879
|
+
* "version": 1
|
|
880
|
+
* },
|
|
881
|
+
* "duedate": "2019-04-16",
|
|
882
|
+
* "environment": {
|
|
883
|
+
* "content": [
|
|
884
|
+
* {
|
|
885
|
+
* "content": [
|
|
886
|
+
* {
|
|
887
|
+
* "text": "UAT",
|
|
888
|
+
* "type": "text"
|
|
889
|
+
* }
|
|
890
|
+
* ],
|
|
891
|
+
* "type": "paragraph"
|
|
892
|
+
* }
|
|
893
|
+
* ],
|
|
894
|
+
* "type": "doc",
|
|
895
|
+
* "version": 1
|
|
896
|
+
* },
|
|
897
|
+
* "fixVersions": [
|
|
898
|
+
* {
|
|
899
|
+
* "id": "10001"
|
|
900
|
+
* }
|
|
901
|
+
* ],
|
|
902
|
+
* "issuetype": {
|
|
903
|
+
* "id": "10000"
|
|
904
|
+
* },
|
|
905
|
+
* "labels": [
|
|
906
|
+
* "new_release"
|
|
907
|
+
* ],
|
|
908
|
+
* "priority": {
|
|
909
|
+
* "id": "20000"
|
|
910
|
+
* },
|
|
911
|
+
* "project": {
|
|
912
|
+
* "id": "1000"
|
|
913
|
+
* },
|
|
914
|
+
* "reporter": {
|
|
915
|
+
* "id": "5b10a2844c20165700ede21g"
|
|
916
|
+
* },
|
|
917
|
+
* "security": {
|
|
918
|
+
* "id": "10000"
|
|
919
|
+
* },
|
|
920
|
+
* "summary": "Order stuck in pending",
|
|
921
|
+
* "timetracking": {
|
|
922
|
+
* "originalEstimate": "15",
|
|
923
|
+
* "remainingEstimate": "5"
|
|
924
|
+
* },
|
|
925
|
+
* "versions": [
|
|
926
|
+
* {
|
|
927
|
+
* "id": "10000"
|
|
928
|
+
* }
|
|
929
|
+
* ]
|
|
930
|
+
* },
|
|
931
|
+
* "update": {}
|
|
932
|
+
* }
|
|
933
|
+
* ]
|
|
934
934
|
* }
|
|
935
935
|
*/
|
|
936
936
|
issuesUpdateBean: IssuesUpdateBean;
|
|
@@ -997,64 +997,64 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
997
997
|
/**
|
|
998
998
|
* @example
|
|
999
999
|
* {
|
|
1000
|
-
*
|
|
1001
|
-
*
|
|
1002
|
-
*
|
|
1003
|
-
* },
|
|
1004
|
-
* "resolution": {
|
|
1005
|
-
* "name": "Fixed"
|
|
1006
|
-
* }
|
|
1000
|
+
* "fields": {
|
|
1001
|
+
* "assignee": {
|
|
1002
|
+
* "name": "bob"
|
|
1007
1003
|
* },
|
|
1008
|
-
* "
|
|
1009
|
-
*
|
|
1010
|
-
*
|
|
1011
|
-
*
|
|
1012
|
-
*
|
|
1013
|
-
*
|
|
1014
|
-
*
|
|
1015
|
-
*
|
|
1016
|
-
*
|
|
1017
|
-
*
|
|
1018
|
-
*
|
|
1019
|
-
*
|
|
1020
|
-
* },
|
|
1021
|
-
* "description": "From the order testing process",
|
|
1022
|
-
* "extraData": {
|
|
1023
|
-
* "Iteration": "10a",
|
|
1024
|
-
* "Step": "4"
|
|
1025
|
-
* },
|
|
1026
|
-
* "generator": {
|
|
1027
|
-
* "id": "mysystem-1",
|
|
1028
|
-
* "type": "mysystem-application"
|
|
1029
|
-
* },
|
|
1030
|
-
* "type": "myplugin:type"
|
|
1004
|
+
* "resolution": {
|
|
1005
|
+
* "name": "Fixed"
|
|
1006
|
+
* }
|
|
1007
|
+
* },
|
|
1008
|
+
* "historyMetadata": {
|
|
1009
|
+
* "activityDescription": "Complete order processing",
|
|
1010
|
+
* "actor": {
|
|
1011
|
+
* "avatarUrl": "http://mysystem/avatar/tony.jpg",
|
|
1012
|
+
* "displayName": "Tony",
|
|
1013
|
+
* "id": "tony",
|
|
1014
|
+
* "type": "mysystem-user",
|
|
1015
|
+
* "url": "http://mysystem/users/tony"
|
|
1031
1016
|
* },
|
|
1032
|
-
* "
|
|
1033
|
-
*
|
|
1017
|
+
* "cause": {
|
|
1018
|
+
* "id": "myevent",
|
|
1019
|
+
* "type": "mysystem-event"
|
|
1034
1020
|
* },
|
|
1035
|
-
* "
|
|
1036
|
-
*
|
|
1037
|
-
*
|
|
1038
|
-
*
|
|
1039
|
-
*
|
|
1040
|
-
*
|
|
1041
|
-
*
|
|
1042
|
-
*
|
|
1043
|
-
*
|
|
1044
|
-
*
|
|
1045
|
-
*
|
|
1046
|
-
*
|
|
1047
|
-
*
|
|
1048
|
-
*
|
|
1049
|
-
*
|
|
1050
|
-
*
|
|
1051
|
-
*
|
|
1052
|
-
*
|
|
1053
|
-
*
|
|
1054
|
-
*
|
|
1055
|
-
*
|
|
1056
|
-
*
|
|
1057
|
-
*
|
|
1021
|
+
* "description": "From the order testing process",
|
|
1022
|
+
* "extraData": {
|
|
1023
|
+
* "Iteration": "10a",
|
|
1024
|
+
* "Step": "4"
|
|
1025
|
+
* },
|
|
1026
|
+
* "generator": {
|
|
1027
|
+
* "id": "mysystem-1",
|
|
1028
|
+
* "type": "mysystem-application"
|
|
1029
|
+
* },
|
|
1030
|
+
* "type": "myplugin:type"
|
|
1031
|
+
* },
|
|
1032
|
+
* "transition": {
|
|
1033
|
+
* "id": "5"
|
|
1034
|
+
* },
|
|
1035
|
+
* "update": {
|
|
1036
|
+
* "comment": [
|
|
1037
|
+
* {
|
|
1038
|
+
* "add": {
|
|
1039
|
+
* "body": {
|
|
1040
|
+
* "content": [
|
|
1041
|
+
* {
|
|
1042
|
+
* "content": [
|
|
1043
|
+
* {
|
|
1044
|
+
* "text": "Bug has been fixed",
|
|
1045
|
+
* "type": "text"
|
|
1046
|
+
* }
|
|
1047
|
+
* ],
|
|
1048
|
+
* "type": "paragraph"
|
|
1049
|
+
* }
|
|
1050
|
+
* ],
|
|
1051
|
+
* "type": "doc",
|
|
1052
|
+
* "version": 1
|
|
1053
|
+
* }
|
|
1054
|
+
* }
|
|
1055
|
+
* }
|
|
1056
|
+
* ]
|
|
1057
|
+
* }
|
|
1058
1058
|
* }
|
|
1059
1059
|
*/
|
|
1060
1060
|
issueUpdateDetails: IssueUpdateDetails;
|
|
@@ -1147,87 +1147,87 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
1147
1147
|
/**
|
|
1148
1148
|
* @example
|
|
1149
1149
|
* {
|
|
1150
|
-
*
|
|
1151
|
-
*
|
|
1152
|
-
*
|
|
1153
|
-
* {
|
|
1154
|
-
* "content": [
|
|
1155
|
-
* {
|
|
1156
|
-
* "text": "Investigation underway",
|
|
1157
|
-
* "type": "text"
|
|
1158
|
-
* }
|
|
1159
|
-
* ],
|
|
1160
|
-
* "type": "paragraph"
|
|
1161
|
-
* }
|
|
1162
|
-
* ],
|
|
1163
|
-
* "type": "doc",
|
|
1164
|
-
* "version": 1
|
|
1165
|
-
* },
|
|
1166
|
-
* "customfield_10010": 1,
|
|
1167
|
-
* "summary": "Completed orders still displaying in pending"
|
|
1168
|
-
* },
|
|
1169
|
-
* "historyMetadata": {
|
|
1170
|
-
* "activityDescription": "Complete order processing",
|
|
1171
|
-
* "actor": {
|
|
1172
|
-
* "avatarUrl": "http://mysystem/avatar/tony.jpg",
|
|
1173
|
-
* "displayName": "Tony",
|
|
1174
|
-
* "id": "tony",
|
|
1175
|
-
* "type": "mysystem-user",
|
|
1176
|
-
* "url": "http://mysystem/users/tony"
|
|
1177
|
-
* },
|
|
1178
|
-
* "cause": {
|
|
1179
|
-
* "id": "myevent",
|
|
1180
|
-
* "type": "mysystem-event"
|
|
1181
|
-
* },
|
|
1182
|
-
* "description": "From the order testing process",
|
|
1183
|
-
* "extraData": {
|
|
1184
|
-
* "Iteration": "10a",
|
|
1185
|
-
* "Step": "4"
|
|
1186
|
-
* },
|
|
1187
|
-
* "generator": {
|
|
1188
|
-
* "id": "mysystem-1",
|
|
1189
|
-
* "type": "mysystem-application"
|
|
1190
|
-
* },
|
|
1191
|
-
* "type": "myplugin:type"
|
|
1192
|
-
* },
|
|
1193
|
-
* "properties": [
|
|
1194
|
-
* {
|
|
1195
|
-
* "key": "key1",
|
|
1196
|
-
* "value": "Order number 10784"
|
|
1197
|
-
* },
|
|
1150
|
+
* "fields": {
|
|
1151
|
+
* "customfield_10000": {
|
|
1152
|
+
* "content": [
|
|
1198
1153
|
* {
|
|
1199
|
-
*
|
|
1200
|
-
* "value": "Order number 10923"
|
|
1201
|
-
* }
|
|
1202
|
-
* ],
|
|
1203
|
-
* "update": {
|
|
1204
|
-
* "components": [
|
|
1154
|
+
* "content": [
|
|
1205
1155
|
* {
|
|
1206
|
-
*
|
|
1156
|
+
* "text": "Investigation underway",
|
|
1157
|
+
* "type": "text"
|
|
1207
1158
|
* }
|
|
1208
|
-
*
|
|
1209
|
-
*
|
|
1210
|
-
*
|
|
1211
|
-
*
|
|
1212
|
-
*
|
|
1213
|
-
*
|
|
1214
|
-
*
|
|
1215
|
-
*
|
|
1216
|
-
*
|
|
1217
|
-
*
|
|
1218
|
-
*
|
|
1219
|
-
*
|
|
1220
|
-
*
|
|
1221
|
-
*
|
|
1222
|
-
*
|
|
1223
|
-
*
|
|
1224
|
-
*
|
|
1225
|
-
*
|
|
1226
|
-
*
|
|
1227
|
-
*
|
|
1228
|
-
*
|
|
1229
|
-
*
|
|
1159
|
+
* ],
|
|
1160
|
+
* "type": "paragraph"
|
|
1161
|
+
* }
|
|
1162
|
+
* ],
|
|
1163
|
+
* "type": "doc",
|
|
1164
|
+
* "version": 1
|
|
1165
|
+
* },
|
|
1166
|
+
* "customfield_10010": 1,
|
|
1167
|
+
* "summary": "Completed orders still displaying in pending"
|
|
1168
|
+
* },
|
|
1169
|
+
* "historyMetadata": {
|
|
1170
|
+
* "activityDescription": "Complete order processing",
|
|
1171
|
+
* "actor": {
|
|
1172
|
+
* "avatarUrl": "http://mysystem/avatar/tony.jpg",
|
|
1173
|
+
* "displayName": "Tony",
|
|
1174
|
+
* "id": "tony",
|
|
1175
|
+
* "type": "mysystem-user",
|
|
1176
|
+
* "url": "http://mysystem/users/tony"
|
|
1177
|
+
* },
|
|
1178
|
+
* "cause": {
|
|
1179
|
+
* "id": "myevent",
|
|
1180
|
+
* "type": "mysystem-event"
|
|
1181
|
+
* },
|
|
1182
|
+
* "description": "From the order testing process",
|
|
1183
|
+
* "extraData": {
|
|
1184
|
+
* "Iteration": "10a",
|
|
1185
|
+
* "Step": "4"
|
|
1186
|
+
* },
|
|
1187
|
+
* "generator": {
|
|
1188
|
+
* "id": "mysystem-1",
|
|
1189
|
+
* "type": "mysystem-application"
|
|
1190
|
+
* },
|
|
1191
|
+
* "type": "myplugin:type"
|
|
1192
|
+
* },
|
|
1193
|
+
* "properties": [
|
|
1194
|
+
* {
|
|
1195
|
+
* "key": "key1",
|
|
1196
|
+
* "value": "Order number 10784"
|
|
1197
|
+
* },
|
|
1198
|
+
* {
|
|
1199
|
+
* "key": "key2",
|
|
1200
|
+
* "value": "Order number 10923"
|
|
1230
1201
|
* }
|
|
1202
|
+
* ],
|
|
1203
|
+
* "update": {
|
|
1204
|
+
* "components": [
|
|
1205
|
+
* {
|
|
1206
|
+
* "set": ""
|
|
1207
|
+
* }
|
|
1208
|
+
* ],
|
|
1209
|
+
* "labels": [
|
|
1210
|
+
* {
|
|
1211
|
+
* "add": "triaged"
|
|
1212
|
+
* },
|
|
1213
|
+
* {
|
|
1214
|
+
* "remove": "blocker"
|
|
1215
|
+
* }
|
|
1216
|
+
* ],
|
|
1217
|
+
* "summary": [
|
|
1218
|
+
* {
|
|
1219
|
+
* "set": "Bug in business logic"
|
|
1220
|
+
* }
|
|
1221
|
+
* ],
|
|
1222
|
+
* "timetracking": [
|
|
1223
|
+
* {
|
|
1224
|
+
* "edit": {
|
|
1225
|
+
* "originalEstimate": "1w 1d",
|
|
1226
|
+
* "remainingEstimate": "4d"
|
|
1227
|
+
* }
|
|
1228
|
+
* }
|
|
1229
|
+
* ]
|
|
1230
|
+
* }
|
|
1231
1231
|
* }
|
|
1232
1232
|
*/
|
|
1233
1233
|
issueUpdateDetails: IssueUpdateDetails;
|
|
@@ -1285,34 +1285,134 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
1285
1285
|
*
|
|
1286
1286
|
* @example
|
|
1287
1287
|
* {
|
|
1288
|
-
*
|
|
1289
|
-
*
|
|
1290
|
-
*
|
|
1291
|
-
*
|
|
1292
|
-
*
|
|
1293
|
-
*
|
|
1294
|
-
*
|
|
1295
|
-
*
|
|
1296
|
-
*
|
|
1297
|
-
*
|
|
1298
|
-
*
|
|
1299
|
-
*
|
|
1300
|
-
*
|
|
1301
|
-
*
|
|
1302
|
-
*
|
|
1303
|
-
*
|
|
1304
|
-
*
|
|
1305
|
-
*
|
|
1306
|
-
*
|
|
1307
|
-
*
|
|
1308
|
-
*
|
|
1309
|
-
*
|
|
1310
|
-
*
|
|
1311
|
-
*
|
|
1288
|
+
* "archivedBy": [
|
|
1289
|
+
* "uuid-rep-001",
|
|
1290
|
+
* "uuid-rep-002"
|
|
1291
|
+
* ],
|
|
1292
|
+
* "archivedDate": {
|
|
1293
|
+
* "dateAfter": "2023-01-01",
|
|
1294
|
+
* "dateBefore": "2023-01-12"
|
|
1295
|
+
* },
|
|
1296
|
+
* "archivedDateRange": {
|
|
1297
|
+
* "dateAfter": "2023-01-01",
|
|
1298
|
+
* "dateBefore": "2023-01-12"
|
|
1299
|
+
* },
|
|
1300
|
+
* "issueTypes": [
|
|
1301
|
+
* "10001",
|
|
1302
|
+
* "10002"
|
|
1303
|
+
* ],
|
|
1304
|
+
* "projects": [
|
|
1305
|
+
* "FOO",
|
|
1306
|
+
* "BAR"
|
|
1307
|
+
* ],
|
|
1308
|
+
* "reporters": [
|
|
1309
|
+
* "uuid-rep-001",
|
|
1310
|
+
* "uuid-rep-002"
|
|
1311
|
+
* ]
|
|
1312
1312
|
* }
|
|
1313
1313
|
*/
|
|
1314
1314
|
archivedIssuesFilterRequest: ArchivedIssuesFilterRequest;
|
|
1315
1315
|
}) => Promise<ExportArchivedIssuesTaskProgressResponse>;
|
|
1316
|
+
/**
|
|
1317
|
+
* Bulk fetch changelogs for multiple issues and filter by fields
|
|
1318
|
+
*
|
|
1319
|
+
* Returns a paginated list of all changelogs for given issues sorted by changelog
|
|
1320
|
+
* date and issue IDs, starting from the oldest changelog and smallest issue ID.
|
|
1321
|
+
*
|
|
1322
|
+
* Issues are identified by their ID or key, and optionally changelogs can be
|
|
1323
|
+
* filtered by their field IDs. You can request the changelogs of up to 1000
|
|
1324
|
+
* issues and can filter them by up to 10 field IDs.
|
|
1325
|
+
*
|
|
1326
|
+
* **[Permissions](#permissions) required:**
|
|
1327
|
+
*
|
|
1328
|
+
* * *Browse projects* [project
|
|
1329
|
+
* permission](https://confluence.atlassian.com/x/yodKLg) for the projects that
|
|
1330
|
+
* the issues are in.
|
|
1331
|
+
* * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is
|
|
1332
|
+
* configured, issue-level security permission to view the issues.
|
|
1333
|
+
*
|
|
1334
|
+
* @returns Returned if the request is successful.
|
|
1335
|
+
*
|
|
1336
|
+
* example:
|
|
1337
|
+
* ```
|
|
1338
|
+
* {
|
|
1339
|
+
* "issueChangeLogs": [
|
|
1340
|
+
* {
|
|
1341
|
+
* "changeHistories": [
|
|
1342
|
+
* {
|
|
1343
|
+
* "author": {
|
|
1344
|
+
* "accountId": "5b10a2844c20165700ede21g",
|
|
1345
|
+
* "active": true,
|
|
1346
|
+
* "avatarUrls": {
|
|
1347
|
+
* "16x16": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=16&s=16",
|
|
1348
|
+
* "24x24": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=24&s=24",
|
|
1349
|
+
* "32x32": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=32&s=32",
|
|
1350
|
+
* "48x48": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=48&s=48"
|
|
1351
|
+
* },
|
|
1352
|
+
* "displayName": "Mia Krystof",
|
|
1353
|
+
* "emailAddress": "mia@example.com",
|
|
1354
|
+
* "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g",
|
|
1355
|
+
* "timeZone": "Australia/Sydney"
|
|
1356
|
+
* },
|
|
1357
|
+
* "created": 1492070429,
|
|
1358
|
+
* "id": "10001",
|
|
1359
|
+
* "items": [
|
|
1360
|
+
* {
|
|
1361
|
+
* "field": "fields",
|
|
1362
|
+
* "fieldId": "fieldId",
|
|
1363
|
+
* "fieldtype": "jira",
|
|
1364
|
+
* "fromString": "old summary",
|
|
1365
|
+
* "toString": "new summary"
|
|
1366
|
+
* }
|
|
1367
|
+
* ]
|
|
1368
|
+
* },
|
|
1369
|
+
* {
|
|
1370
|
+
* "author": {
|
|
1371
|
+
* "accountId": "5b10a2844c20165700ede21g",
|
|
1372
|
+
* "active": true,
|
|
1373
|
+
* "avatarUrls": {
|
|
1374
|
+
* "16x16": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=16&s=16",
|
|
1375
|
+
* "24x24": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=24&s=24",
|
|
1376
|
+
* "32x32": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=32&s=32",
|
|
1377
|
+
* "48x48": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=48&s=48"
|
|
1378
|
+
* },
|
|
1379
|
+
* "displayName": "Mia Krystof",
|
|
1380
|
+
* "emailAddress": "mia@example.com",
|
|
1381
|
+
* "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g",
|
|
1382
|
+
* "timeZone": "Australia/Sydney"
|
|
1383
|
+
* },
|
|
1384
|
+
* "created": 1492071429,
|
|
1385
|
+
* "id": "10002",
|
|
1386
|
+
* "items": [
|
|
1387
|
+
* {
|
|
1388
|
+
* "field": "fields",
|
|
1389
|
+
* "fieldId": "fieldId",
|
|
1390
|
+
* "fieldtype": "jira",
|
|
1391
|
+
* "fromString": "old summary 2",
|
|
1392
|
+
* "toString": "new summary 2"
|
|
1393
|
+
* }
|
|
1394
|
+
* ]
|
|
1395
|
+
* }
|
|
1396
|
+
* ],
|
|
1397
|
+
* "issueId": "10100"
|
|
1398
|
+
* }
|
|
1399
|
+
* ],
|
|
1400
|
+
* "nextPageToken": "UxAQBFRF"
|
|
1401
|
+
* }
|
|
1402
|
+
* ```
|
|
1403
|
+
* @path POST `/rest/api/3/changelog/bulkfetch`
|
|
1404
|
+
* @scopes-current read:jira-work
|
|
1405
|
+
* @scopes-beta read:issue-meta:jira, read:avatar:jira, read:issue.changelog:jira
|
|
1406
|
+
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues#api-rest-api-3-changelog-bulkfetch-post
|
|
1407
|
+
* @param params
|
|
1408
|
+
*/
|
|
1409
|
+
getBulkChangelogs: ({ bulkChangelogRequestBean, }: {
|
|
1410
|
+
/**
|
|
1411
|
+
* A JSON object containing the bulk fetch changelog request filters such as issue
|
|
1412
|
+
* IDs and field IDs.
|
|
1413
|
+
*/
|
|
1414
|
+
bulkChangelogRequestBean: BulkChangelogRequestBean;
|
|
1415
|
+
}) => Promise<BulkChangelogResponseBean>;
|
|
1316
1416
|
/**
|
|
1317
1417
|
* Returns a [paginated](#pagination) list of all changelogs for an issue sorted
|
|
1318
1418
|
* by date, starting from the oldest.
|
|
@@ -1509,10 +1609,10 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
1509
1609
|
/**
|
|
1510
1610
|
* @example
|
|
1511
1611
|
* {
|
|
1512
|
-
*
|
|
1513
|
-
*
|
|
1514
|
-
*
|
|
1515
|
-
*
|
|
1612
|
+
* "changelogIds": [
|
|
1613
|
+
* 10001,
|
|
1614
|
+
* 10002
|
|
1615
|
+
* ]
|
|
1516
1616
|
* }
|
|
1517
1617
|
*/
|
|
1518
1618
|
issueChangelogIds: IssueChangelogIds;
|
|
@@ -1853,6 +1953,7 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
1853
1953
|
* @returns Returned if the request is successful.
|
|
1854
1954
|
*
|
|
1855
1955
|
* example:
|
|
1956
|
+
*
|
|
1856
1957
|
* ```
|
|
1857
1958
|
* [
|
|
1858
1959
|
* {
|
|
@@ -1865,6 +1966,7 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
1865
1966
|
* }
|
|
1866
1967
|
* ]
|
|
1867
1968
|
* ```
|
|
1969
|
+
*
|
|
1868
1970
|
* @path GET `/rest/api/3/events`
|
|
1869
1971
|
* @scopes-current manage:jira-configuration
|
|
1870
1972
|
* @scopes-beta read:issue-event:jira
|
|
@@ -2494,40 +2596,40 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
2494
2596
|
*
|
|
2495
2597
|
* @example
|
|
2496
2598
|
* {
|
|
2497
|
-
*
|
|
2498
|
-
*
|
|
2499
|
-
*
|
|
2500
|
-
*
|
|
2501
|
-
*
|
|
2502
|
-
*
|
|
2503
|
-
*
|
|
2504
|
-
*
|
|
2505
|
-
*
|
|
2506
|
-
*
|
|
2507
|
-
*
|
|
2508
|
-
*
|
|
2509
|
-
*
|
|
2510
|
-
*
|
|
2511
|
-
*
|
|
2512
|
-
*
|
|
2513
|
-
*
|
|
2514
|
-
*
|
|
2515
|
-
*
|
|
2516
|
-
*
|
|
2517
|
-
*
|
|
2518
|
-
*
|
|
2519
|
-
*
|
|
2520
|
-
*
|
|
2521
|
-
*
|
|
2522
|
-
*
|
|
2523
|
-
*
|
|
2524
|
-
*
|
|
2525
|
-
*
|
|
2526
|
-
*
|
|
2527
|
-
*
|
|
2528
|
-
*
|
|
2529
|
-
*
|
|
2530
|
-
*
|
|
2599
|
+
* "htmlBody": "The <strong>latest</strong> test results for this ticket are now available.",
|
|
2600
|
+
* "restrict": {
|
|
2601
|
+
* "groupIds": [],
|
|
2602
|
+
* "groups": [
|
|
2603
|
+
* {
|
|
2604
|
+
* "name": "notification-group"
|
|
2605
|
+
* }
|
|
2606
|
+
* ],
|
|
2607
|
+
* "permissions": [
|
|
2608
|
+
* {
|
|
2609
|
+
* "key": "BROWSE"
|
|
2610
|
+
* }
|
|
2611
|
+
* ]
|
|
2612
|
+
* },
|
|
2613
|
+
* "subject": "Latest test results",
|
|
2614
|
+
* "textBody": "The latest test results for this ticket are now available.",
|
|
2615
|
+
* "to": {
|
|
2616
|
+
* "assignee": false,
|
|
2617
|
+
* "groupIds": [],
|
|
2618
|
+
* "groups": [
|
|
2619
|
+
* {
|
|
2620
|
+
* "name": "notification-group"
|
|
2621
|
+
* }
|
|
2622
|
+
* ],
|
|
2623
|
+
* "reporter": false,
|
|
2624
|
+
* "users": [
|
|
2625
|
+
* {
|
|
2626
|
+
* "accountId": "5b10a2844c20165700ede21g",
|
|
2627
|
+
* "active": false
|
|
2628
|
+
* }
|
|
2629
|
+
* ],
|
|
2630
|
+
* "voters": true,
|
|
2631
|
+
* "watchers": true
|
|
2632
|
+
* }
|
|
2531
2633
|
* }
|
|
2532
2634
|
*/
|
|
2533
2635
|
notification: Notification;
|
|
@@ -2598,11 +2700,11 @@ export declare class IssuesService extends CommonHttpService {
|
|
|
2598
2700
|
*
|
|
2599
2701
|
* @example
|
|
2600
2702
|
* {
|
|
2601
|
-
*
|
|
2602
|
-
*
|
|
2603
|
-
*
|
|
2604
|
-
*
|
|
2605
|
-
*
|
|
2703
|
+
* "issueIdsOrKeys": [
|
|
2704
|
+
* "PR-1",
|
|
2705
|
+
* "1001",
|
|
2706
|
+
* "PROJECT-2"
|
|
2707
|
+
* ]
|
|
2606
2708
|
* }
|
|
2607
2709
|
*/
|
|
2608
2710
|
issueArchivalSyncRequest: IssueArchivalSyncRequest;
|