@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
|
@@ -51,10 +51,10 @@ export declare class IssueFieldsService extends CommonHttpService {
|
|
|
51
51
|
*
|
|
52
52
|
* @example
|
|
53
53
|
* {
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
54
|
+
* "description": "Custom field for picking groups",
|
|
55
|
+
* "name": "New custom field",
|
|
56
|
+
* "searcherKey": "com.atlassian.jira.plugin.system.customfieldtypes:grouppickersearcher",
|
|
57
|
+
* "type": "com.atlassian.jira.plugin.system.customfieldtypes:grouppicker"
|
|
58
58
|
* }
|
|
59
59
|
*/
|
|
60
60
|
customFieldDefinitionJsonBean: CustomFieldDefinitionJsonBean;
|
|
@@ -141,6 +141,7 @@ export declare class IssueFieldsService extends CommonHttpService {
|
|
|
141
141
|
* @returns Returned if the request is successful.
|
|
142
142
|
*
|
|
143
143
|
* example:
|
|
144
|
+
*
|
|
144
145
|
* ```
|
|
145
146
|
* [
|
|
146
147
|
* {
|
|
@@ -176,6 +177,7 @@ export declare class IssueFieldsService extends CommonHttpService {
|
|
|
176
177
|
* }
|
|
177
178
|
* ]
|
|
178
179
|
* ```
|
|
180
|
+
*
|
|
179
181
|
* @path GET `/rest/api/3/field`
|
|
180
182
|
* @scopes-current read:jira-work
|
|
181
183
|
* @scopes-beta read:field:jira, read:avatar:jira, read:project-category:jira, read:project:jira, read:field-configuration:jira
|
|
@@ -193,7 +195,7 @@ export declare class IssueFieldsService extends CommonHttpService {
|
|
|
193
195
|
* * specific fields that contain a string in the field name or description, by
|
|
194
196
|
* defining `id` and `query`
|
|
195
197
|
*
|
|
196
|
-
*
|
|
198
|
+
* Use `type` must be set to `custom` to show custom fields only.
|
|
197
199
|
*
|
|
198
200
|
* **[Permissions](#permissions) required:** *Administer Jira* [global
|
|
199
201
|
* permission](https://confluence.atlassian.com/x/x4dKLg).
|
|
@@ -273,7 +275,7 @@ export declare class IssueFieldsService extends CommonHttpService {
|
|
|
273
275
|
*/
|
|
274
276
|
query?: string | undefined;
|
|
275
277
|
/**
|
|
276
|
-
* [Order](#ordering) the results by
|
|
278
|
+
* [Order](#ordering) the results by:
|
|
277
279
|
*
|
|
278
280
|
* * `contextsCount` sorts by the number of contexts related to a field
|
|
279
281
|
* * `lastUsed` sorts by the date when the value of the field last changed
|
|
@@ -290,8 +292,7 @@ export declare class IssueFieldsService extends CommonHttpService {
|
|
|
290
292
|
* * `lastUsed` returns the date when the value of the field last changed
|
|
291
293
|
* * `screensCount` returns the number of screens related to a field
|
|
292
294
|
* * `contextsCount` returns the number of contexts related to a field
|
|
293
|
-
* * `isLocked` returns information about whether the field is
|
|
294
|
-
* [locked](https://confluence.atlassian.com/x/ZSN7Og)
|
|
295
|
+
* * `isLocked` returns information about whether the field is locked
|
|
295
296
|
* * `searcherKey` returns the searcher key for each custom field
|
|
296
297
|
*/
|
|
297
298
|
expand?: string | undefined;
|
|
@@ -431,9 +432,9 @@ export declare class IssueFieldsService extends CommonHttpService {
|
|
|
431
432
|
*
|
|
432
433
|
* @example
|
|
433
434
|
* {
|
|
434
|
-
*
|
|
435
|
-
*
|
|
436
|
-
*
|
|
435
|
+
* "description": "Select the manager and the corresponding employee.",
|
|
436
|
+
* "name": "Managers and employees list",
|
|
437
|
+
* "searcherKey": "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselectsearcher"
|
|
437
438
|
* }
|
|
438
439
|
*/
|
|
439
440
|
updateCustomFieldDetails: UpdateCustomFieldDetails;
|
|
@@ -178,6 +178,7 @@ class IssueFieldsService extends CommonHttpService_1.CommonHttpService {
|
|
|
178
178
|
* @returns Returned if the request is successful.
|
|
179
179
|
*
|
|
180
180
|
* example:
|
|
181
|
+
*
|
|
181
182
|
* ```
|
|
182
183
|
* [
|
|
183
184
|
* {
|
|
@@ -213,6 +214,7 @@ class IssueFieldsService extends CommonHttpService_1.CommonHttpService {
|
|
|
213
214
|
* }
|
|
214
215
|
* ]
|
|
215
216
|
* ```
|
|
217
|
+
*
|
|
216
218
|
* @path GET `/rest/api/3/field`
|
|
217
219
|
* @scopes-current read:jira-work
|
|
218
220
|
* @scopes-beta read:field:jira, read:avatar:jira, read:project-category:jira, read:project:jira, read:field-configuration:jira
|
|
@@ -244,7 +246,7 @@ class IssueFieldsService extends CommonHttpService_1.CommonHttpService {
|
|
|
244
246
|
* * specific fields that contain a string in the field name or description, by
|
|
245
247
|
* defining `id` and `query`
|
|
246
248
|
*
|
|
247
|
-
*
|
|
249
|
+
* Use `type` must be set to `custom` to show custom fields only.
|
|
248
250
|
*
|
|
249
251
|
* **[Permissions](#permissions) required:** *Administer Jira* [global
|
|
250
252
|
* permission](https://confluence.atlassian.com/x/x4dKLg).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IssueFieldsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/IssueFieldsService.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAwB;AAExB,gEAAgE;AAChE,oEAAiE;AACjE,6CAG0B;AAC1B,uDAM+B;AAC/B,wEAAqE;AACrE;;;;;;GAMG;AACH,MAAa,kBAAmB,SAAQ,qCAAiB;IAAzD;;QACE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAmCG;QACH,sBAAiB,GAAG,CAAC,EACnB,6BAA6B,GAc9B,EAAyB,EAAE;YAC1B,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,mBAAmB;gBACzB,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACP,cAAc,EAAE,kBAAkB;iBACnC;gBACD,IAAI,EAAE,6BAA6B;aACpC,CAAC;iBACD,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,eAAe,CAAC;gBACvC,GAAG,EAAE;oBACH,kBAAkB,EAAE,MAAM;iBAC3B;aACF,CAAC,CACH;iBACA,IAAI,CACH,gBAAgB,CAAC,YAAY,EAIzB,CACL;iBACA,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,UAAU,CACjC,iDAAuB,CAAC,SAAS,CAC/B,+CAA+C,CAChD,CACF,CACF;iBACA,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;QACpC,CAAC,CAAC;QACF;;;;;;;;;;;;;;;;;;WAkBG;QACH,sBAAiB,GAAG,CAAC,EACnB,EAAE,GAIH,EAAiB,EAAE;YAClB,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,wBAAwB;gBAC9B,MAAM,EAAE,QAAQ;gBAChB,UAAU,EAAE;oBACV,EAAE;iBACH;aACF,CAAC;iBACD,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;QAC1C,CAAC,CAAC;QACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA+BG;QACH,kCAA6B,GAAG,CAAC,EAC/B,OAAO,EACP,OAAO,EACP,UAAU,GAQX,EAA4B,EAAE;YAC7B,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,sCAAsC;gBAC5C,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE;oBACV,OAAO;iBACR;gBACD,KAAK,EAAE;oBACL,OAAO;oBACP,UAAU;iBACX;aACF,CAAC;iBACD,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,eAAe,CAAC;gBACvC,GAAG,EAAE;oBACH,kBAAkB,EAAE,MAAM;iBAC3B;aACF,CAAC,CACH;iBACA,IAAI,CACH,gBAAgB,CAAC,YAAY,EAIzB,CACL;iBACA,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,UAAU,CACjC,iDAAuB,CAAC,SAAS,CAC/B,2DAA2D,CAC5D,CACF,CACF;iBACA,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;QACpC,CAAC,CAAC;QACF
|
|
1
|
+
{"version":3,"file":"IssueFieldsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/IssueFieldsService.ts"],"names":[],"mappings":"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"}
|
|
@@ -46,9 +46,9 @@ export declare class IssueLinkTypesService extends CommonHttpService {
|
|
|
46
46
|
/**
|
|
47
47
|
* @example
|
|
48
48
|
* {
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
49
|
+
* "inward": "Duplicated by",
|
|
50
|
+
* "name": "Duplicate",
|
|
51
|
+
* "outward": "Duplicates"
|
|
52
52
|
* }
|
|
53
53
|
*/
|
|
54
54
|
issueLinkType: IssueLinkType;
|
|
@@ -180,9 +180,9 @@ export declare class IssueLinkTypesService extends CommonHttpService {
|
|
|
180
180
|
/**
|
|
181
181
|
* @example
|
|
182
182
|
* {
|
|
183
|
-
*
|
|
184
|
-
*
|
|
185
|
-
*
|
|
183
|
+
* "inward": "Duplicated by",
|
|
184
|
+
* "name": "Duplicate",
|
|
185
|
+
* "outward": "Duplicates"
|
|
186
186
|
* }
|
|
187
187
|
*/
|
|
188
188
|
issueLinkType: IssueLinkType;
|
|
@@ -201,37 +201,37 @@ export declare class IssueLinksService extends CommonHttpService {
|
|
|
201
201
|
*
|
|
202
202
|
* @example
|
|
203
203
|
* {
|
|
204
|
-
*
|
|
205
|
-
*
|
|
206
|
-
*
|
|
207
|
-
*
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
*
|
|
211
|
-
*
|
|
212
|
-
*
|
|
213
|
-
*
|
|
214
|
-
*
|
|
215
|
-
* }
|
|
216
|
-
* ],
|
|
217
|
-
* "type": "doc",
|
|
218
|
-
* "version": 1
|
|
219
|
-
* },
|
|
220
|
-
* "visibility": {
|
|
221
|
-
* "identifier": "276f955c-63d7-42c8-9520-92d01dca0625",
|
|
222
|
-
* "type": "group",
|
|
223
|
-
* "value": "jira-software-users"
|
|
204
|
+
* "comment": {
|
|
205
|
+
* "body": {
|
|
206
|
+
* "content": [
|
|
207
|
+
* {
|
|
208
|
+
* "content": [
|
|
209
|
+
* {
|
|
210
|
+
* "text": "Linked related issue!",
|
|
211
|
+
* "type": "text"
|
|
212
|
+
* }
|
|
213
|
+
* ],
|
|
214
|
+
* "type": "paragraph"
|
|
224
215
|
* }
|
|
216
|
+
* ],
|
|
217
|
+
* "type": "doc",
|
|
218
|
+
* "version": 1
|
|
225
219
|
* },
|
|
226
|
-
* "
|
|
227
|
-
*
|
|
228
|
-
*
|
|
229
|
-
*
|
|
230
|
-
* "key": "MKY-1"
|
|
231
|
-
* },
|
|
232
|
-
* "type": {
|
|
233
|
-
* "name": "Duplicate"
|
|
220
|
+
* "visibility": {
|
|
221
|
+
* "identifier": "276f955c-63d7-42c8-9520-92d01dca0625",
|
|
222
|
+
* "type": "group",
|
|
223
|
+
* "value": "jira-software-users"
|
|
234
224
|
* }
|
|
225
|
+
* },
|
|
226
|
+
* "inwardIssue": {
|
|
227
|
+
* "key": "HSP-1"
|
|
228
|
+
* },
|
|
229
|
+
* "outwardIssue": {
|
|
230
|
+
* "key": "MKY-1"
|
|
231
|
+
* },
|
|
232
|
+
* "type": {
|
|
233
|
+
* "name": "Duplicate"
|
|
234
|
+
* }
|
|
235
235
|
* }
|
|
236
236
|
*/
|
|
237
237
|
linkIssueRequestJsonBean: LinkIssueRequestJsonBean;
|
|
@@ -17,6 +17,7 @@ export declare class IssueNavigatorSettingsService extends CommonHttpService {
|
|
|
17
17
|
* @returns Returned if the request is successful.
|
|
18
18
|
*
|
|
19
19
|
* example:
|
|
20
|
+
*
|
|
20
21
|
* ```
|
|
21
22
|
* [
|
|
22
23
|
* {
|
|
@@ -29,6 +30,7 @@ export declare class IssueNavigatorSettingsService extends CommonHttpService {
|
|
|
29
30
|
* }
|
|
30
31
|
* ]
|
|
31
32
|
* ```
|
|
33
|
+
*
|
|
32
34
|
* @path GET `/rest/api/3/settings/columns`
|
|
33
35
|
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-navigator-settings#api-rest-api-3-settings-columns-get
|
|
34
36
|
*/
|
|
@@ -28,6 +28,7 @@ class IssueNavigatorSettingsService extends CommonHttpService_1.CommonHttpServic
|
|
|
28
28
|
* @returns Returned if the request is successful.
|
|
29
29
|
*
|
|
30
30
|
* example:
|
|
31
|
+
*
|
|
31
32
|
* ```
|
|
32
33
|
* [
|
|
33
34
|
* {
|
|
@@ -40,6 +41,7 @@ class IssueNavigatorSettingsService extends CommonHttpService_1.CommonHttpServic
|
|
|
40
41
|
* }
|
|
41
42
|
* ]
|
|
42
43
|
* ```
|
|
44
|
+
*
|
|
43
45
|
* @path GET `/rest/api/3/settings/columns`
|
|
44
46
|
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-navigator-settings#api-rest-api-3-settings-columns-get
|
|
45
47
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IssueNavigatorSettingsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/IssueNavigatorSettingsService.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAwB;AAExB,gEAAgE;AAChE,oEAAiE;AACjE,6CAI0B;AAC1B,wEAAqE;AACrE;;;;;;GAMG;AACH,MAAa,6BAA8B,SAAQ,qCAAiB;IAApE;;QACE
|
|
1
|
+
{"version":3,"file":"IssueNavigatorSettingsService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/IssueNavigatorSettingsService.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAwB;AAExB,gEAAgE;AAChE,oEAAiE;AACjE,6CAI0B;AAC1B,wEAAqE;AACrE;;;;;;GAMG;AACH,MAAa,6BAA8B,SAAQ,qCAAiB;IAApE;;QACE;;;;;;;;;;;;;;;;;;;;;;;;;WAyBG;QACH,oCAA+B,GAAG,GAA0B,EAAE;YAC5D,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,8BAA8B;gBACpC,MAAM,EAAE,KAAK;aACd,CAAC;iBACD,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,eAAe,CAAC;gBACvC,GAAG,EAAE;oBACH,kBAAkB,EAAE,MAAM;iBAC3B;aACF,CAAC,CACH;iBACA,IAAI,CACH,gBAAgB,CAAC,YAAY,EAIzB,CACL;iBACA,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,UAAU,CACjC,iDAAuB,CAAC,SAAS,CAC/B,wEAAwE,CACzE,CACF,CACF;iBACA,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;QACpC,CAAC,CAAC;QACF;;;;;;;;;;;;;;;;;;;;;;WAsBG;QACH,oCAA+B,GAAG,CAAC,EACjC,iBAAiB,GAIlB,EAAiB,EAAE;YAClB,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,8BAA8B;gBACpC,MAAM,EAAE,KAAK;gBACb,OAAO,EAAE;oBACP,cAAc,EAAE,qBAAqB;iBACtC;gBACD,IAAI,EAAE,iBAAiB;aACxB,CAAC;iBACD,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;QAC1C,CAAC,CAAC;IAgBJ,CAAC;IAfW,MAAM,CAAC,UAAU;QACzB,iDAAuB,CAAC,kBAAkB,CACxC,wEAAwE,EACxE,OAAC;aACE,MAAM,CAAC;YACN,MAAM,EAAE,OAAC,CAAC,OAAO,CAAC,GAAG,CAAC;YACtB,SAAS,EAAE,OAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC;YACxC,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,iDAAuB,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;SAC1D,CAAC;aACD,QAAQ,CACP,wEAAwE,CACzE,CACJ,CAAC;QACF,iDAAuB,CAAC,YAAY,CAAC,CAAC,wCAA+B,CAAC,CAAC,CAAC;IAC1E,CAAC;CACF;AA/GD,sEA+GC"}
|
|
@@ -61,19 +61,19 @@ export declare class IssueNotificationSchemesService extends CommonHttpService {
|
|
|
61
61
|
/**
|
|
62
62
|
* @example
|
|
63
63
|
* {
|
|
64
|
-
*
|
|
64
|
+
* "notificationSchemeEvents": [
|
|
65
|
+
* {
|
|
66
|
+
* "event": {
|
|
67
|
+
* "id": "1"
|
|
68
|
+
* },
|
|
69
|
+
* "notifications": [
|
|
65
70
|
* {
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
* },
|
|
69
|
-
* "notifications": [
|
|
70
|
-
* {
|
|
71
|
-
* "notificationType": "Group",
|
|
72
|
-
* "parameter": "jira-administrators"
|
|
73
|
-
* }
|
|
74
|
-
* ]
|
|
71
|
+
* "notificationType": "Group",
|
|
72
|
+
* "parameter": "jira-administrators"
|
|
75
73
|
* }
|
|
76
|
-
*
|
|
74
|
+
* ]
|
|
75
|
+
* }
|
|
76
|
+
* ]
|
|
77
77
|
* }
|
|
78
78
|
*/
|
|
79
79
|
addNotificationsDetails: AddNotificationsDetails;
|
|
@@ -101,21 +101,21 @@ export declare class IssueNotificationSchemesService extends CommonHttpService {
|
|
|
101
101
|
/**
|
|
102
102
|
* @example
|
|
103
103
|
* {
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
104
|
+
* "description": "My new scheme description",
|
|
105
|
+
* "name": "My new notification scheme",
|
|
106
|
+
* "notificationSchemeEvents": [
|
|
107
|
+
* {
|
|
108
|
+
* "event": {
|
|
109
|
+
* "id": "1"
|
|
110
|
+
* },
|
|
111
|
+
* "notifications": [
|
|
107
112
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
* },
|
|
111
|
-
* "notifications": [
|
|
112
|
-
* {
|
|
113
|
-
* "notificationType": "Group",
|
|
114
|
-
* "parameter": "jira-administrators"
|
|
115
|
-
* }
|
|
116
|
-
* ]
|
|
113
|
+
* "notificationType": "Group",
|
|
114
|
+
* "parameter": "jira-administrators"
|
|
117
115
|
* }
|
|
118
|
-
*
|
|
116
|
+
* ]
|
|
117
|
+
* }
|
|
118
|
+
* ]
|
|
119
119
|
* }
|
|
120
120
|
*/
|
|
121
121
|
createNotificationSchemeDetails: CreateNotificationSchemeDetails;
|
|
@@ -804,8 +804,8 @@ export declare class IssueNotificationSchemesService extends CommonHttpService {
|
|
|
804
804
|
/**
|
|
805
805
|
* @example
|
|
806
806
|
* {
|
|
807
|
-
*
|
|
808
|
-
*
|
|
807
|
+
* "description": "My updated notification scheme description",
|
|
808
|
+
* "name": "My updated notification scheme"
|
|
809
809
|
* }
|
|
810
810
|
*/
|
|
811
811
|
updateNotificationSchemeDetails: UpdateNotificationSchemeDetails;
|
|
@@ -36,10 +36,10 @@ export declare class IssuePrioritiesService extends CommonHttpService {
|
|
|
36
36
|
/**
|
|
37
37
|
* @example
|
|
38
38
|
* {
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
39
|
+
* "description": "My priority description",
|
|
40
|
+
* "iconUrl": "images/icons/priorities/major.png",
|
|
41
|
+
* "name": "My new priority",
|
|
42
|
+
* "statusColor": "#ABCDEF"
|
|
43
43
|
* }
|
|
44
44
|
*/
|
|
45
45
|
createPriorityDetails: CreatePriorityDetails;
|
|
@@ -71,6 +71,7 @@ export declare class IssuePrioritiesService extends CommonHttpService {
|
|
|
71
71
|
* @returns Returned if the request is successful.
|
|
72
72
|
*
|
|
73
73
|
* example:
|
|
74
|
+
*
|
|
74
75
|
* ```
|
|
75
76
|
* [
|
|
76
77
|
* {
|
|
@@ -91,6 +92,7 @@ export declare class IssuePrioritiesService extends CommonHttpService {
|
|
|
91
92
|
* }
|
|
92
93
|
* ]
|
|
93
94
|
* ```
|
|
95
|
+
*
|
|
94
96
|
* @path GET `/rest/api/3/priority`
|
|
95
97
|
* @scopes-current read:jira-work
|
|
96
98
|
* @scopes-beta read:priority:jira
|
|
@@ -140,11 +142,11 @@ export declare class IssuePrioritiesService extends CommonHttpService {
|
|
|
140
142
|
/**
|
|
141
143
|
* @example
|
|
142
144
|
* {
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
*
|
|
147
|
-
*
|
|
145
|
+
* "after": "10003",
|
|
146
|
+
* "ids": [
|
|
147
|
+
* "10004",
|
|
148
|
+
* "10005"
|
|
149
|
+
* ]
|
|
148
150
|
* }
|
|
149
151
|
*/
|
|
150
152
|
reorderIssuePriorities: ReorderIssuePriorities;
|
|
@@ -238,7 +240,7 @@ export declare class IssuePrioritiesService extends CommonHttpService {
|
|
|
238
240
|
/**
|
|
239
241
|
* @example
|
|
240
242
|
* {
|
|
241
|
-
*
|
|
243
|
+
* "id": "3"
|
|
242
244
|
* }
|
|
243
245
|
*/
|
|
244
246
|
setDefaultPriorityRequest: SetDefaultPriorityRequest;
|
|
@@ -267,10 +269,10 @@ export declare class IssuePrioritiesService extends CommonHttpService {
|
|
|
267
269
|
/**
|
|
268
270
|
* @example
|
|
269
271
|
* {
|
|
270
|
-
*
|
|
271
|
-
*
|
|
272
|
-
*
|
|
273
|
-
*
|
|
272
|
+
* "description": "My updated priority description",
|
|
273
|
+
* "iconUrl": "images/icons/priorities/minor.png",
|
|
274
|
+
* "name": "My updated priority",
|
|
275
|
+
* "statusColor": "#123456"
|
|
274
276
|
* }
|
|
275
277
|
*/
|
|
276
278
|
updatePriorityDetails: UpdatePriorityDetails;
|
|
@@ -96,6 +96,7 @@ class IssuePrioritiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
96
96
|
* @returns Returned if the request is successful.
|
|
97
97
|
*
|
|
98
98
|
* example:
|
|
99
|
+
*
|
|
99
100
|
* ```
|
|
100
101
|
* [
|
|
101
102
|
* {
|
|
@@ -116,6 +117,7 @@ class IssuePrioritiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
116
117
|
* }
|
|
117
118
|
* ]
|
|
118
119
|
* ```
|
|
120
|
+
*
|
|
119
121
|
* @path GET `/rest/api/3/priority`
|
|
120
122
|
* @scopes-current read:jira-work
|
|
121
123
|
* @scopes-beta read:priority:jira
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IssuePrioritiesService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/IssuePrioritiesService.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAwB;AAExB,gEAAgE;AAChE,oEAAiE;AACjE,6CAG0B;AAC1B,+DAQmC;AACnC,wEAAqE;AACrE;;;;;;GAMG;AACH,MAAa,sBAAuB,SAAQ,qCAAiB;IAA7D;;QACE;;;;;;;;;;;;;;;;;;;;;;WAsBG;QACH,mBAAc,GAAG,CAAC,EAChB,qBAAqB,GAYtB,EAAuB,EAAE;YACxB,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,sBAAsB;gBAC5B,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACP,cAAc,EAAE,kBAAkB;iBACnC;gBACD,IAAI,EAAE,qBAAqB;aAC5B,CAAC;iBACD,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,eAAe,CAAC;gBACvC,GAAG,EAAE;oBACH,kBAAkB,EAAE,MAAM;iBAC3B;aACF,CAAC,CACH;iBACA,IAAI,CACH,gBAAgB,CAAC,YAAY,EAIzB,CACL;iBACA,IAAI,CACH,IAAI,CAAC,iBAAiB,EAAE,CAAC,UAAU,CACjC,iDAAuB,CAAC,SAAS,CAC/B,gDAAgD,CACjD,CACF,CACF;iBACA,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;QACpC,CAAC,CAAC;QACF;;;;;;;;;;;;;WAaG;QACH,mBAAc,GAAG,CAAC,EAChB,EAAE,GAIH,EAAiB,EAAE;YAClB,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,2BAA2B;gBACjC,MAAM,EAAE,QAAQ;gBAChB,UAAU,EAAE;oBACV,EAAE;iBACH;aACF,CAAC;iBACD,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;QAC1C,CAAC,CAAC;QACF
|
|
1
|
+
{"version":3,"file":"IssuePrioritiesService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/IssuePrioritiesService.ts"],"names":[],"mappings":"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"}
|
|
@@ -59,11 +59,11 @@ export declare class IssuePropertiesService extends CommonHttpService {
|
|
|
59
59
|
/**
|
|
60
60
|
* @example
|
|
61
61
|
* {
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*
|
|
62
|
+
* "currentValue": "deprecated value",
|
|
63
|
+
* "entityIds": [
|
|
64
|
+
* 10100,
|
|
65
|
+
* 100010
|
|
66
|
+
* ]
|
|
67
67
|
* }
|
|
68
68
|
*/
|
|
69
69
|
issueFilterForBulkPropertyDelete: IssueFilterForBulkPropertyDelete;
|
|
@@ -104,26 +104,26 @@ export declare class IssuePropertiesService extends CommonHttpService {
|
|
|
104
104
|
*
|
|
105
105
|
* @example
|
|
106
106
|
* {
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
* }
|
|
124
|
-
* }
|
|
107
|
+
* "issues": [
|
|
108
|
+
* {
|
|
109
|
+
* "issueID": 1000,
|
|
110
|
+
* "properties": {
|
|
111
|
+
* "myProperty": {
|
|
112
|
+
* "owner": "admin",
|
|
113
|
+
* "weight": 100
|
|
114
|
+
* }
|
|
115
|
+
* }
|
|
116
|
+
* },
|
|
117
|
+
* {
|
|
118
|
+
* "issueID": 1001,
|
|
119
|
+
* "properties": {
|
|
120
|
+
* "myOtherProperty": {
|
|
121
|
+
* "cost": 150,
|
|
122
|
+
* "transportation": "car"
|
|
125
123
|
* }
|
|
126
|
-
*
|
|
124
|
+
* }
|
|
125
|
+
* }
|
|
126
|
+
* ]
|
|
127
127
|
* }
|
|
128
128
|
*/
|
|
129
129
|
multiIssueEntityProperties: MultiIssueEntityProperties;
|
|
@@ -191,21 +191,21 @@ export declare class IssuePropertiesService extends CommonHttpService {
|
|
|
191
191
|
/**
|
|
192
192
|
* @example
|
|
193
193
|
* {
|
|
194
|
-
*
|
|
195
|
-
*
|
|
196
|
-
*
|
|
197
|
-
*
|
|
198
|
-
* },
|
|
199
|
-
* "entityIds": [
|
|
200
|
-
* 10100,
|
|
201
|
-
* 100010
|
|
202
|
-
* ],
|
|
203
|
-
* "hasProperty": true
|
|
194
|
+
* "filter": {
|
|
195
|
+
* "currentValue": {
|
|
196
|
+
* "owner": "admin",
|
|
197
|
+
* "weight": 50
|
|
204
198
|
* },
|
|
205
|
-
* "
|
|
206
|
-
*
|
|
207
|
-
*
|
|
208
|
-
*
|
|
199
|
+
* "entityIds": [
|
|
200
|
+
* 10100,
|
|
201
|
+
* 100010
|
|
202
|
+
* ],
|
|
203
|
+
* "hasProperty": true
|
|
204
|
+
* },
|
|
205
|
+
* "value": {
|
|
206
|
+
* "owner": "admin",
|
|
207
|
+
* "weight": 100
|
|
208
|
+
* }
|
|
209
209
|
* }
|
|
210
210
|
*/
|
|
211
211
|
bulkIssuePropertyUpdateRequest: BulkIssuePropertyUpdateRequest;
|