@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
|
@@ -44,11 +44,11 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
44
44
|
/**
|
|
45
45
|
* @example
|
|
46
46
|
* {
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
47
|
+
* "issueTypeIds": [
|
|
48
|
+
* "10001",
|
|
49
|
+
* "10005",
|
|
50
|
+
* "10006"
|
|
51
|
+
* ]
|
|
52
52
|
* }
|
|
53
53
|
*/
|
|
54
54
|
issueTypeIds: IssueTypeIds;
|
|
@@ -77,11 +77,11 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
77
77
|
/**
|
|
78
78
|
* @example
|
|
79
79
|
* {
|
|
80
|
-
*
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
*
|
|
84
|
-
*
|
|
80
|
+
* "projectIds": [
|
|
81
|
+
* "10001",
|
|
82
|
+
* "10005",
|
|
83
|
+
* "10006"
|
|
84
|
+
* ]
|
|
85
85
|
* }
|
|
86
86
|
*/
|
|
87
87
|
projectIds: ProjectIds;
|
|
@@ -122,12 +122,12 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
122
122
|
/**
|
|
123
123
|
* @example
|
|
124
124
|
* {
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
*
|
|
125
|
+
* "description": "A context used to define the custom field options for bugs.",
|
|
126
|
+
* "issueTypeIds": [
|
|
127
|
+
* "10010"
|
|
128
|
+
* ],
|
|
129
|
+
* "name": "Bug fields context",
|
|
130
|
+
* "projectIds": []
|
|
131
131
|
* }
|
|
132
132
|
*/
|
|
133
133
|
createCustomFieldContext: CreateCustomFieldContext;
|
|
@@ -283,20 +283,20 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
283
283
|
*
|
|
284
284
|
* @example
|
|
285
285
|
* {
|
|
286
|
-
*
|
|
287
|
-
*
|
|
288
|
-
*
|
|
289
|
-
*
|
|
290
|
-
*
|
|
291
|
-
*
|
|
292
|
-
*
|
|
293
|
-
*
|
|
294
|
-
*
|
|
295
|
-
*
|
|
296
|
-
*
|
|
297
|
-
*
|
|
298
|
-
*
|
|
299
|
-
*
|
|
286
|
+
* "mappings": [
|
|
287
|
+
* {
|
|
288
|
+
* "issueTypeId": "10000",
|
|
289
|
+
* "projectId": "10000"
|
|
290
|
+
* },
|
|
291
|
+
* {
|
|
292
|
+
* "issueTypeId": "10001",
|
|
293
|
+
* "projectId": "10000"
|
|
294
|
+
* },
|
|
295
|
+
* {
|
|
296
|
+
* "issueTypeId": "10002",
|
|
297
|
+
* "projectId": "10001"
|
|
298
|
+
* }
|
|
299
|
+
* ]
|
|
300
300
|
* }
|
|
301
301
|
*/
|
|
302
302
|
projectIssueTypeMappings: ProjectIssueTypeMappings;
|
|
@@ -535,11 +535,11 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
535
535
|
/**
|
|
536
536
|
* @example
|
|
537
537
|
* {
|
|
538
|
-
*
|
|
539
|
-
*
|
|
540
|
-
*
|
|
541
|
-
*
|
|
542
|
-
*
|
|
538
|
+
* "projectIds": [
|
|
539
|
+
* "10001",
|
|
540
|
+
* "10005",
|
|
541
|
+
* "10006"
|
|
542
|
+
* ]
|
|
543
543
|
* }
|
|
544
544
|
*/
|
|
545
545
|
projectIds: ProjectIds;
|
|
@@ -567,11 +567,11 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
567
567
|
/**
|
|
568
568
|
* @example
|
|
569
569
|
* {
|
|
570
|
-
*
|
|
571
|
-
*
|
|
572
|
-
*
|
|
573
|
-
*
|
|
574
|
-
*
|
|
570
|
+
* "issueTypeIds": [
|
|
571
|
+
* "10001",
|
|
572
|
+
* "10005",
|
|
573
|
+
* "10006"
|
|
574
|
+
* ]
|
|
575
575
|
* }
|
|
576
576
|
*/
|
|
577
577
|
issueTypeIds: IssueTypeIds;
|
|
@@ -656,23 +656,23 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
656
656
|
/**
|
|
657
657
|
* @example
|
|
658
658
|
* {
|
|
659
|
-
*
|
|
660
|
-
*
|
|
661
|
-
*
|
|
662
|
-
*
|
|
663
|
-
*
|
|
664
|
-
*
|
|
665
|
-
*
|
|
666
|
-
*
|
|
667
|
-
*
|
|
668
|
-
*
|
|
669
|
-
*
|
|
670
|
-
*
|
|
671
|
-
*
|
|
672
|
-
*
|
|
673
|
-
*
|
|
674
|
-
*
|
|
675
|
-
*
|
|
659
|
+
* "defaultValues": [
|
|
660
|
+
* {
|
|
661
|
+
* "contextId": "10100",
|
|
662
|
+
* "optionId": "10001",
|
|
663
|
+
* "type": "option.single"
|
|
664
|
+
* },
|
|
665
|
+
* {
|
|
666
|
+
* "contextId": "10101",
|
|
667
|
+
* "optionId": "10003",
|
|
668
|
+
* "type": "option.single"
|
|
669
|
+
* },
|
|
670
|
+
* {
|
|
671
|
+
* "contextId": "10103",
|
|
672
|
+
* "optionId": "10005",
|
|
673
|
+
* "type": "option.single"
|
|
674
|
+
* }
|
|
675
|
+
* ]
|
|
676
676
|
* }
|
|
677
677
|
*/
|
|
678
678
|
customFieldContextDefaultValueUpdate: CustomFieldContextDefaultValueUpdate;
|
|
@@ -699,8 +699,8 @@ export declare class IssueCustomFieldContextsService extends CommonHttpService {
|
|
|
699
699
|
/**
|
|
700
700
|
* @example
|
|
701
701
|
* {
|
|
702
|
-
*
|
|
703
|
-
*
|
|
702
|
+
* "description": "A context used to define the custom field options for bugs.",
|
|
703
|
+
* "name": "Bug fields context"
|
|
704
704
|
* }
|
|
705
705
|
*/
|
|
706
706
|
customFieldContextUpdateDetails: CustomFieldContextUpdateDetails;
|
|
@@ -93,37 +93,37 @@ export declare class IssueCustomFieldOptionsAppsService extends CommonHttpServic
|
|
|
93
93
|
/**
|
|
94
94
|
* @example
|
|
95
95
|
* {
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
* },
|
|
108
|
-
* {
|
|
109
|
-
* "attributes": [
|
|
110
|
-
* "notSelectable"
|
|
111
|
-
* ],
|
|
112
|
-
* "id": 1002
|
|
113
|
-
* }
|
|
114
|
-
* ]
|
|
115
|
-
* }
|
|
116
|
-
* },
|
|
117
|
-
* "properties": {
|
|
118
|
-
* "description": "The team's description",
|
|
119
|
-
* "founded": "2016-06-06",
|
|
120
|
-
* "leader": {
|
|
121
|
-
* "email": "lname@example.com",
|
|
122
|
-
* "name": "Leader Name"
|
|
96
|
+
* "config": {
|
|
97
|
+
* "attributes": [],
|
|
98
|
+
* "scope": {
|
|
99
|
+
* "global": {},
|
|
100
|
+
* "projects": [],
|
|
101
|
+
* "projects2": [
|
|
102
|
+
* {
|
|
103
|
+
* "attributes": [
|
|
104
|
+
* "notSelectable"
|
|
105
|
+
* ],
|
|
106
|
+
* "id": 1001
|
|
123
107
|
* },
|
|
124
|
-
*
|
|
108
|
+
* {
|
|
109
|
+
* "attributes": [
|
|
110
|
+
* "notSelectable"
|
|
111
|
+
* ],
|
|
112
|
+
* "id": 1002
|
|
113
|
+
* }
|
|
114
|
+
* ]
|
|
115
|
+
* }
|
|
116
|
+
* },
|
|
117
|
+
* "properties": {
|
|
118
|
+
* "description": "The team's description",
|
|
119
|
+
* "founded": "2016-06-06",
|
|
120
|
+
* "leader": {
|
|
121
|
+
* "email": "lname@example.com",
|
|
122
|
+
* "name": "Leader Name"
|
|
125
123
|
* },
|
|
126
|
-
* "
|
|
124
|
+
* "members": 42
|
|
125
|
+
* },
|
|
126
|
+
* "value": "Team 1"
|
|
127
127
|
* }
|
|
128
128
|
*/
|
|
129
129
|
issueFieldOptionCreateBean: IssueFieldOptionCreateBean;
|
|
@@ -608,38 +608,38 @@ export declare class IssueCustomFieldOptionsAppsService extends CommonHttpServic
|
|
|
608
608
|
/**
|
|
609
609
|
* @example
|
|
610
610
|
* {
|
|
611
|
-
*
|
|
612
|
-
*
|
|
613
|
-
*
|
|
614
|
-
*
|
|
615
|
-
*
|
|
616
|
-
*
|
|
617
|
-
*
|
|
618
|
-
*
|
|
619
|
-
*
|
|
620
|
-
*
|
|
621
|
-
*
|
|
622
|
-
* },
|
|
623
|
-
* {
|
|
624
|
-
* "attributes": [
|
|
625
|
-
* "notSelectable"
|
|
626
|
-
* ],
|
|
627
|
-
* "id": 1002
|
|
628
|
-
* }
|
|
629
|
-
* ]
|
|
630
|
-
* }
|
|
631
|
-
* },
|
|
632
|
-
* "id": 1,
|
|
633
|
-
* "properties": {
|
|
634
|
-
* "description": "The team's description",
|
|
635
|
-
* "founded": "2016-06-06",
|
|
636
|
-
* "leader": {
|
|
637
|
-
* "email": "lname@example.com",
|
|
638
|
-
* "name": "Leader Name"
|
|
611
|
+
* "config": {
|
|
612
|
+
* "attributes": [],
|
|
613
|
+
* "scope": {
|
|
614
|
+
* "global": {},
|
|
615
|
+
* "projects": [],
|
|
616
|
+
* "projects2": [
|
|
617
|
+
* {
|
|
618
|
+
* "attributes": [
|
|
619
|
+
* "notSelectable"
|
|
620
|
+
* ],
|
|
621
|
+
* "id": 1001
|
|
639
622
|
* },
|
|
640
|
-
*
|
|
623
|
+
* {
|
|
624
|
+
* "attributes": [
|
|
625
|
+
* "notSelectable"
|
|
626
|
+
* ],
|
|
627
|
+
* "id": 1002
|
|
628
|
+
* }
|
|
629
|
+
* ]
|
|
630
|
+
* }
|
|
631
|
+
* },
|
|
632
|
+
* "id": 1,
|
|
633
|
+
* "properties": {
|
|
634
|
+
* "description": "The team's description",
|
|
635
|
+
* "founded": "2016-06-06",
|
|
636
|
+
* "leader": {
|
|
637
|
+
* "email": "lname@example.com",
|
|
638
|
+
* "name": "Leader Name"
|
|
641
639
|
* },
|
|
642
|
-
* "
|
|
640
|
+
* "members": 42
|
|
641
|
+
* },
|
|
642
|
+
* "value": "Team 1"
|
|
643
643
|
* }
|
|
644
644
|
*/
|
|
645
645
|
issueFieldOption: IssueFieldOption;
|
|
@@ -75,21 +75,21 @@ export declare class IssueCustomFieldOptionsService extends CommonHttpService {
|
|
|
75
75
|
/**
|
|
76
76
|
* @example
|
|
77
77
|
* {
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
*
|
|
84
|
-
*
|
|
85
|
-
*
|
|
86
|
-
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
78
|
+
* "options": [
|
|
79
|
+
* {
|
|
80
|
+
* "disabled": false,
|
|
81
|
+
* "value": "Scranton"
|
|
82
|
+
* },
|
|
83
|
+
* {
|
|
84
|
+
* "disabled": true,
|
|
85
|
+
* "optionId": "10000",
|
|
86
|
+
* "value": "Manhattan"
|
|
87
|
+
* },
|
|
88
|
+
* {
|
|
89
|
+
* "disabled": false,
|
|
90
|
+
* "value": "The Electric City"
|
|
91
|
+
* }
|
|
92
|
+
* ]
|
|
93
93
|
* }
|
|
94
94
|
*/
|
|
95
95
|
bulkCustomFieldOptionCreateRequest: BulkCustomFieldOptionCreateRequest;
|
|
@@ -251,11 +251,11 @@ export declare class IssueCustomFieldOptionsService extends CommonHttpService {
|
|
|
251
251
|
/**
|
|
252
252
|
* @example
|
|
253
253
|
* {
|
|
254
|
-
*
|
|
255
|
-
*
|
|
256
|
-
*
|
|
257
|
-
*
|
|
258
|
-
*
|
|
254
|
+
* "customFieldOptionIds": [
|
|
255
|
+
* "10001",
|
|
256
|
+
* "10002"
|
|
257
|
+
* ],
|
|
258
|
+
* "position": "First"
|
|
259
259
|
* }
|
|
260
260
|
*/
|
|
261
261
|
orderOfCustomFieldOptions: OrderOfCustomFieldOptions;
|
|
@@ -345,23 +345,23 @@ export declare class IssueCustomFieldOptionsService extends CommonHttpService {
|
|
|
345
345
|
/**
|
|
346
346
|
* @example
|
|
347
347
|
* {
|
|
348
|
-
*
|
|
349
|
-
*
|
|
350
|
-
*
|
|
351
|
-
*
|
|
352
|
-
*
|
|
353
|
-
*
|
|
354
|
-
*
|
|
355
|
-
*
|
|
356
|
-
*
|
|
357
|
-
*
|
|
358
|
-
*
|
|
359
|
-
*
|
|
360
|
-
*
|
|
361
|
-
*
|
|
362
|
-
*
|
|
363
|
-
*
|
|
364
|
-
*
|
|
348
|
+
* "options": [
|
|
349
|
+
* {
|
|
350
|
+
* "disabled": false,
|
|
351
|
+
* "id": "10001",
|
|
352
|
+
* "value": "Scranton"
|
|
353
|
+
* },
|
|
354
|
+
* {
|
|
355
|
+
* "disabled": true,
|
|
356
|
+
* "id": "10002",
|
|
357
|
+
* "value": "Manhattan"
|
|
358
|
+
* },
|
|
359
|
+
* {
|
|
360
|
+
* "disabled": false,
|
|
361
|
+
* "id": "10003",
|
|
362
|
+
* "value": "The Electric City"
|
|
363
|
+
* }
|
|
364
|
+
* ]
|
|
365
365
|
* }
|
|
366
366
|
*/
|
|
367
367
|
bulkCustomFieldOptionUpdateRequest: BulkCustomFieldOptionUpdateRequest;
|
|
@@ -40,14 +40,14 @@ export declare class IssueCustomFieldValuesAppsService extends CommonHttpService
|
|
|
40
40
|
/**
|
|
41
41
|
* @example
|
|
42
42
|
* {
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
43
|
+
* "updates": [
|
|
44
|
+
* {
|
|
45
|
+
* "issueIds": [
|
|
46
|
+
* 10010
|
|
47
|
+
* ],
|
|
48
|
+
* "value": "new value"
|
|
49
|
+
* }
|
|
50
|
+
* ]
|
|
51
51
|
* }
|
|
52
52
|
*/
|
|
53
53
|
customFieldValueUpdateDetails: CustomFieldValueUpdateDetails;
|
|
@@ -82,23 +82,23 @@ export declare class IssueCustomFieldValuesAppsService extends CommonHttpService
|
|
|
82
82
|
/**
|
|
83
83
|
* @example
|
|
84
84
|
* {
|
|
85
|
-
*
|
|
86
|
-
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
85
|
+
* "updates": [
|
|
86
|
+
* {
|
|
87
|
+
* "customField": "customfield_10010",
|
|
88
|
+
* "issueIds": [
|
|
89
|
+
* 10010,
|
|
90
|
+
* 10011
|
|
91
|
+
* ],
|
|
92
|
+
* "value": "new value"
|
|
93
|
+
* },
|
|
94
|
+
* {
|
|
95
|
+
* "customField": "customfield_10011",
|
|
96
|
+
* "issueIds": [
|
|
97
|
+
* 10010
|
|
98
|
+
* ],
|
|
99
|
+
* "value": 1000
|
|
100
|
+
* }
|
|
101
|
+
* ]
|
|
102
102
|
* }
|
|
103
103
|
*/
|
|
104
104
|
multipleCustomFieldValuesUpdateDetails: MultipleCustomFieldValuesUpdateDetails;
|
|
@@ -29,8 +29,8 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
29
29
|
/**
|
|
30
30
|
* @example
|
|
31
31
|
* {
|
|
32
|
-
*
|
|
33
|
-
*
|
|
32
|
+
* "fieldConfigurationSchemeId": "10000",
|
|
33
|
+
* "projectId": "10000"
|
|
34
34
|
* }
|
|
35
35
|
*/
|
|
36
36
|
fieldConfigurationSchemeProjectAssociation: FieldConfigurationSchemeProjectAssociation;
|
|
@@ -66,8 +66,8 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
66
66
|
/**
|
|
67
67
|
* @example
|
|
68
68
|
* {
|
|
69
|
-
*
|
|
70
|
-
*
|
|
69
|
+
* "description": "My field configuration description",
|
|
70
|
+
* "name": "My Field Configuration"
|
|
71
71
|
* }
|
|
72
72
|
*/
|
|
73
73
|
fieldConfigurationDetails: FieldConfigurationDetails;
|
|
@@ -103,8 +103,8 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
103
103
|
*
|
|
104
104
|
* @example
|
|
105
105
|
* {
|
|
106
|
-
*
|
|
107
|
-
*
|
|
106
|
+
* "description": "We can use this one for software projects.",
|
|
107
|
+
* "name": "Field Configuration Scheme for software related projects"
|
|
108
108
|
* }
|
|
109
109
|
*/
|
|
110
110
|
updateFieldConfigurationSchemeDetails: UpdateFieldConfigurationSchemeDetails;
|
|
@@ -460,11 +460,11 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
460
460
|
*
|
|
461
461
|
* @example
|
|
462
462
|
* {
|
|
463
|
-
*
|
|
464
|
-
*
|
|
465
|
-
*
|
|
466
|
-
*
|
|
467
|
-
*
|
|
463
|
+
* "issueTypeIds": [
|
|
464
|
+
* "10000",
|
|
465
|
+
* "10001",
|
|
466
|
+
* "10002"
|
|
467
|
+
* ]
|
|
468
468
|
* }
|
|
469
469
|
*/
|
|
470
470
|
issueTypeIdsToRemove: IssueTypeIdsToRemove;
|
|
@@ -491,20 +491,20 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
491
491
|
/**
|
|
492
492
|
* @example
|
|
493
493
|
* {
|
|
494
|
-
*
|
|
495
|
-
*
|
|
496
|
-
*
|
|
497
|
-
*
|
|
498
|
-
*
|
|
499
|
-
*
|
|
500
|
-
*
|
|
501
|
-
*
|
|
502
|
-
*
|
|
503
|
-
*
|
|
504
|
-
*
|
|
505
|
-
*
|
|
506
|
-
*
|
|
507
|
-
*
|
|
494
|
+
* "mappings": [
|
|
495
|
+
* {
|
|
496
|
+
* "fieldConfigurationId": "10000",
|
|
497
|
+
* "issueTypeId": "default"
|
|
498
|
+
* },
|
|
499
|
+
* {
|
|
500
|
+
* "fieldConfigurationId": "10002",
|
|
501
|
+
* "issueTypeId": "10001"
|
|
502
|
+
* },
|
|
503
|
+
* {
|
|
504
|
+
* "fieldConfigurationId": "10001",
|
|
505
|
+
* "issueTypeId": "10002"
|
|
506
|
+
* }
|
|
507
|
+
* ]
|
|
508
508
|
* }
|
|
509
509
|
*/
|
|
510
510
|
associateFieldConfigurationsWithIssueTypesRequest: AssociateFieldConfigurationsWithIssueTypesRequest;
|
|
@@ -532,8 +532,8 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
532
532
|
/**
|
|
533
533
|
* @example
|
|
534
534
|
* {
|
|
535
|
-
*
|
|
536
|
-
*
|
|
535
|
+
* "description": "A brand new description",
|
|
536
|
+
* "name": "My Modified Field Configuration"
|
|
537
537
|
* }
|
|
538
538
|
*/
|
|
539
539
|
fieldConfigurationDetails: FieldConfigurationDetails;
|
|
@@ -566,24 +566,24 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
566
566
|
/**
|
|
567
567
|
* @example
|
|
568
568
|
* {
|
|
569
|
-
*
|
|
570
|
-
*
|
|
571
|
-
*
|
|
572
|
-
*
|
|
573
|
-
*
|
|
574
|
-
*
|
|
575
|
-
*
|
|
576
|
-
*
|
|
577
|
-
*
|
|
578
|
-
*
|
|
579
|
-
*
|
|
580
|
-
*
|
|
581
|
-
*
|
|
582
|
-
*
|
|
583
|
-
*
|
|
584
|
-
*
|
|
585
|
-
*
|
|
586
|
-
*
|
|
569
|
+
* "fieldConfigurationItems": [
|
|
570
|
+
* {
|
|
571
|
+
* "description": "The new description of this item.",
|
|
572
|
+
* "id": "customfield_10012",
|
|
573
|
+
* "isHidden": false
|
|
574
|
+
* },
|
|
575
|
+
* {
|
|
576
|
+
* "id": "customfield_10011",
|
|
577
|
+
* "isRequired": true
|
|
578
|
+
* },
|
|
579
|
+
* {
|
|
580
|
+
* "description": "Another new description.",
|
|
581
|
+
* "id": "customfield_10010",
|
|
582
|
+
* "isHidden": false,
|
|
583
|
+
* "isRequired": false,
|
|
584
|
+
* "renderer": "wiki-renderer"
|
|
585
|
+
* }
|
|
586
|
+
* ]
|
|
587
587
|
* }
|
|
588
588
|
*/
|
|
589
589
|
fieldConfigurationItemsDetails: FieldConfigurationItemsDetails;
|
|
@@ -612,8 +612,8 @@ export declare class IssueFieldConfigurationsService extends CommonHttpService {
|
|
|
612
612
|
*
|
|
613
613
|
* @example
|
|
614
614
|
* {
|
|
615
|
-
*
|
|
616
|
-
*
|
|
615
|
+
* "description": "We can use this one for software projects.",
|
|
616
|
+
* "name": "Field Configuration Scheme for software related projects"
|
|
617
617
|
* }
|
|
618
618
|
*/
|
|
619
619
|
updateFieldConfigurationSchemeDetails: UpdateFieldConfigurationSchemeDetails;
|