@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
|
@@ -32,44 +32,44 @@ export declare class AppMigrationService extends CommonHttpService {
|
|
|
32
32
|
/**
|
|
33
33
|
* @example
|
|
34
34
|
* {
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
*
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
*
|
|
35
|
+
* "updateValueList": [
|
|
36
|
+
* {
|
|
37
|
+
* "_type": "StringIssueField",
|
|
38
|
+
* "issueID": 10001,
|
|
39
|
+
* "fieldID": 10076,
|
|
40
|
+
* "string": "new string value"
|
|
41
|
+
* },
|
|
42
|
+
* {
|
|
43
|
+
* "_type": "TextIssueField",
|
|
44
|
+
* "issueID": 10002,
|
|
45
|
+
* "fieldID": 10077,
|
|
46
|
+
* "text": "new text value"
|
|
47
|
+
* },
|
|
48
|
+
* {
|
|
49
|
+
* "_type": "SingleSelectIssueField",
|
|
50
|
+
* "issueID": 10003,
|
|
51
|
+
* "fieldID": 10078,
|
|
52
|
+
* "optionID": "1"
|
|
53
|
+
* },
|
|
54
|
+
* {
|
|
55
|
+
* "_type": "MultiSelectIssueField",
|
|
56
|
+
* "issueID": 10004,
|
|
57
|
+
* "fieldID": 10079,
|
|
58
|
+
* "optionID": "2"
|
|
59
|
+
* },
|
|
60
|
+
* {
|
|
61
|
+
* "_type": "RichTextIssueField",
|
|
62
|
+
* "issueID": 10005,
|
|
63
|
+
* "fieldID": 10080,
|
|
64
|
+
* "richText": "new rich text value"
|
|
65
|
+
* },
|
|
66
|
+
* {
|
|
67
|
+
* "_type": "NumberIssueField",
|
|
68
|
+
* "issueID": 10006,
|
|
69
|
+
* "fieldID": 10082,
|
|
70
|
+
* "number": 54
|
|
71
|
+
* }
|
|
72
|
+
* ]
|
|
73
73
|
* }
|
|
74
74
|
*/
|
|
75
75
|
connectCustomFieldValues: ConnectCustomFieldValues;
|
|
@@ -99,57 +99,57 @@ export declare class AppMigrationService extends CommonHttpService {
|
|
|
99
99
|
* example:
|
|
100
100
|
* ```
|
|
101
101
|
* {
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
102
|
+
* "workflowEntityId": "a498d711-685d-428d-8c3e-bc03bb450ea7",
|
|
103
|
+
* "invalidRules": [
|
|
104
|
+
* "55d44f1d-c859-42e5-9c27-2c5ec3f340b1"
|
|
105
|
+
* ],
|
|
106
|
+
* "validRules": [
|
|
107
|
+
* {
|
|
108
|
+
* "workflowId": {
|
|
109
|
+
* "name": "Workflow name",
|
|
110
|
+
* "draft": true
|
|
111
|
+
* },
|
|
112
|
+
* "postFunctions": [
|
|
107
113
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* "value": "WorkflowValidator"
|
|
118
|
-
* },
|
|
119
|
-
* "transition": {
|
|
120
|
-
* "name": "transition",
|
|
121
|
-
* "id": 123
|
|
122
|
-
* }
|
|
123
|
-
* }
|
|
124
|
-
* ],
|
|
125
|
-
* "conditions": [
|
|
126
|
-
* {
|
|
127
|
-
* "id": "123",
|
|
128
|
-
* "key": "WorkflowKey",
|
|
129
|
-
* "configuration": {
|
|
130
|
-
* "value": "WorkflowValidator"
|
|
131
|
-
* },
|
|
132
|
-
* "transition": {
|
|
133
|
-
* "name": "transition",
|
|
134
|
-
* "id": 123
|
|
135
|
-
* }
|
|
136
|
-
* }
|
|
137
|
-
* ],
|
|
138
|
-
* "validators": [
|
|
139
|
-
* {
|
|
140
|
-
* "id": "123",
|
|
141
|
-
* "key": "WorkflowKey",
|
|
142
|
-
* "configuration": {
|
|
143
|
-
* "value": "WorkflowValidator"
|
|
144
|
-
* },
|
|
145
|
-
* "transition": {
|
|
146
|
-
* "name": "transition",
|
|
147
|
-
* "id": 123
|
|
148
|
-
* }
|
|
149
|
-
* }
|
|
150
|
-
* ]
|
|
114
|
+
* "id": "123",
|
|
115
|
+
* "key": "WorkflowKey",
|
|
116
|
+
* "configuration": {
|
|
117
|
+
* "value": "WorkflowValidator"
|
|
118
|
+
* },
|
|
119
|
+
* "transition": {
|
|
120
|
+
* "name": "transition",
|
|
121
|
+
* "id": 123
|
|
122
|
+
* }
|
|
151
123
|
* }
|
|
152
|
-
*
|
|
124
|
+
* ],
|
|
125
|
+
* "conditions": [
|
|
126
|
+
* {
|
|
127
|
+
* "id": "123",
|
|
128
|
+
* "key": "WorkflowKey",
|
|
129
|
+
* "configuration": {
|
|
130
|
+
* "value": "WorkflowValidator"
|
|
131
|
+
* },
|
|
132
|
+
* "transition": {
|
|
133
|
+
* "name": "transition",
|
|
134
|
+
* "id": 123
|
|
135
|
+
* }
|
|
136
|
+
* }
|
|
137
|
+
* ],
|
|
138
|
+
* "validators": [
|
|
139
|
+
* {
|
|
140
|
+
* "id": "123",
|
|
141
|
+
* "key": "WorkflowKey",
|
|
142
|
+
* "configuration": {
|
|
143
|
+
* "value": "WorkflowValidator"
|
|
144
|
+
* },
|
|
145
|
+
* "transition": {
|
|
146
|
+
* "name": "transition",
|
|
147
|
+
* "id": 123
|
|
148
|
+
* }
|
|
149
|
+
* }
|
|
150
|
+
* ]
|
|
151
|
+
* }
|
|
152
|
+
* ]
|
|
153
153
|
* }
|
|
154
154
|
* ```
|
|
155
155
|
* @path POST `/rest/atlassian-connect/1/migration/workflow/rule/search`
|
|
@@ -91,57 +91,57 @@ class AppMigrationService extends CommonHttpService_1.CommonHttpService {
|
|
|
91
91
|
* example:
|
|
92
92
|
* ```
|
|
93
93
|
* {
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
*
|
|
94
|
+
* "workflowEntityId": "a498d711-685d-428d-8c3e-bc03bb450ea7",
|
|
95
|
+
* "invalidRules": [
|
|
96
|
+
* "55d44f1d-c859-42e5-9c27-2c5ec3f340b1"
|
|
97
|
+
* ],
|
|
98
|
+
* "validRules": [
|
|
99
|
+
* {
|
|
100
|
+
* "workflowId": {
|
|
101
|
+
* "name": "Workflow name",
|
|
102
|
+
* "draft": true
|
|
103
|
+
* },
|
|
104
|
+
* "postFunctions": [
|
|
99
105
|
* {
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
* "value": "WorkflowValidator"
|
|
110
|
-
* },
|
|
111
|
-
* "transition": {
|
|
112
|
-
* "name": "transition",
|
|
113
|
-
* "id": 123
|
|
114
|
-
* }
|
|
115
|
-
* }
|
|
116
|
-
* ],
|
|
117
|
-
* "conditions": [
|
|
118
|
-
* {
|
|
119
|
-
* "id": "123",
|
|
120
|
-
* "key": "WorkflowKey",
|
|
121
|
-
* "configuration": {
|
|
122
|
-
* "value": "WorkflowValidator"
|
|
123
|
-
* },
|
|
124
|
-
* "transition": {
|
|
125
|
-
* "name": "transition",
|
|
126
|
-
* "id": 123
|
|
127
|
-
* }
|
|
128
|
-
* }
|
|
129
|
-
* ],
|
|
130
|
-
* "validators": [
|
|
131
|
-
* {
|
|
132
|
-
* "id": "123",
|
|
133
|
-
* "key": "WorkflowKey",
|
|
134
|
-
* "configuration": {
|
|
135
|
-
* "value": "WorkflowValidator"
|
|
136
|
-
* },
|
|
137
|
-
* "transition": {
|
|
138
|
-
* "name": "transition",
|
|
139
|
-
* "id": 123
|
|
140
|
-
* }
|
|
141
|
-
* }
|
|
142
|
-
* ]
|
|
106
|
+
* "id": "123",
|
|
107
|
+
* "key": "WorkflowKey",
|
|
108
|
+
* "configuration": {
|
|
109
|
+
* "value": "WorkflowValidator"
|
|
110
|
+
* },
|
|
111
|
+
* "transition": {
|
|
112
|
+
* "name": "transition",
|
|
113
|
+
* "id": 123
|
|
114
|
+
* }
|
|
143
115
|
* }
|
|
144
|
-
*
|
|
116
|
+
* ],
|
|
117
|
+
* "conditions": [
|
|
118
|
+
* {
|
|
119
|
+
* "id": "123",
|
|
120
|
+
* "key": "WorkflowKey",
|
|
121
|
+
* "configuration": {
|
|
122
|
+
* "value": "WorkflowValidator"
|
|
123
|
+
* },
|
|
124
|
+
* "transition": {
|
|
125
|
+
* "name": "transition",
|
|
126
|
+
* "id": 123
|
|
127
|
+
* }
|
|
128
|
+
* }
|
|
129
|
+
* ],
|
|
130
|
+
* "validators": [
|
|
131
|
+
* {
|
|
132
|
+
* "id": "123",
|
|
133
|
+
* "key": "WorkflowKey",
|
|
134
|
+
* "configuration": {
|
|
135
|
+
* "value": "WorkflowValidator"
|
|
136
|
+
* },
|
|
137
|
+
* "transition": {
|
|
138
|
+
* "name": "transition",
|
|
139
|
+
* "id": 123
|
|
140
|
+
* }
|
|
141
|
+
* }
|
|
142
|
+
* ]
|
|
143
|
+
* }
|
|
144
|
+
* ]
|
|
145
145
|
* }
|
|
146
146
|
* ```
|
|
147
147
|
* @path POST `/rest/atlassian-connect/1/migration/workflow/rule/search`
|
|
@@ -43,12 +43,12 @@ export declare class AppPropertiesService extends CommonHttpService {
|
|
|
43
43
|
* example:
|
|
44
44
|
* ```
|
|
45
45
|
* {
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
46
|
+
* "keys": [
|
|
47
|
+
* {
|
|
48
|
+
* "self": "https://your-domain.atlassian.net/jira/rest/atlassian-connect/1/addon/example.app.key/properties/propertyKey",
|
|
49
|
+
* "key": "propertyKey"
|
|
50
|
+
* }
|
|
51
|
+
* ]
|
|
52
52
|
* }
|
|
53
53
|
* ```
|
|
54
54
|
* @path GET `/rest/atlassian-connect/1/addons/{addonKey}/properties`
|
|
@@ -74,9 +74,9 @@ export declare class AppPropertiesService extends CommonHttpService {
|
|
|
74
74
|
* example:
|
|
75
75
|
* ```
|
|
76
76
|
* {
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
*
|
|
77
|
+
* "self": "https://your-domain.atlassian.net/jira/rest/atlassian-connect/1/addon/example.app.key/properties/propertyKey",
|
|
78
|
+
* "key": "propertyKey",
|
|
79
|
+
* "value": "propertyValue"
|
|
80
80
|
* }
|
|
81
81
|
* ```
|
|
82
82
|
* @path GET `/rest/atlassian-connect/1/addons/{addonKey}/properties/{propertyKey}`
|
|
@@ -112,8 +112,8 @@ export declare class AppPropertiesService extends CommonHttpService {
|
|
|
112
112
|
* example:
|
|
113
113
|
* ```
|
|
114
114
|
* {
|
|
115
|
-
*
|
|
116
|
-
*
|
|
115
|
+
* "message": "Property updated.",
|
|
116
|
+
* "statusCode": 200
|
|
117
117
|
* }
|
|
118
118
|
* ```
|
|
119
119
|
*
|
|
@@ -124,8 +124,8 @@ export declare class AppPropertiesService extends CommonHttpService {
|
|
|
124
124
|
* example:
|
|
125
125
|
* ```
|
|
126
126
|
* {
|
|
127
|
-
*
|
|
128
|
-
*
|
|
127
|
+
* "message": "Property created.",
|
|
128
|
+
* "statusCode": 201
|
|
129
129
|
* }
|
|
130
130
|
* ```
|
|
131
131
|
* @path PUT `/rest/atlassian-connect/1/addons/{addonKey}/properties/{propertyKey}`
|
|
@@ -191,8 +191,8 @@ export declare class AppPropertiesService extends CommonHttpService {
|
|
|
191
191
|
* example:
|
|
192
192
|
* ```
|
|
193
193
|
* {
|
|
194
|
-
*
|
|
195
|
-
*
|
|
194
|
+
* "message": "Property updated.",
|
|
195
|
+
* "statusCode": 200
|
|
196
196
|
* }
|
|
197
197
|
* ```
|
|
198
198
|
*
|
|
@@ -203,8 +203,8 @@ export declare class AppPropertiesService extends CommonHttpService {
|
|
|
203
203
|
* example:
|
|
204
204
|
* ```
|
|
205
205
|
* {
|
|
206
|
-
*
|
|
207
|
-
*
|
|
206
|
+
* "message": "Property created.",
|
|
207
|
+
* "statusCode": 201
|
|
208
208
|
* }
|
|
209
209
|
* ```
|
|
210
210
|
* @path PUT `/rest/forge/1/app/properties/{propertyKey}`
|
|
@@ -60,12 +60,12 @@ class AppPropertiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
60
60
|
* example:
|
|
61
61
|
* ```
|
|
62
62
|
* {
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
63
|
+
* "keys": [
|
|
64
|
+
* {
|
|
65
|
+
* "self": "https://your-domain.atlassian.net/jira/rest/atlassian-connect/1/addon/example.app.key/properties/propertyKey",
|
|
66
|
+
* "key": "propertyKey"
|
|
67
|
+
* }
|
|
68
|
+
* ]
|
|
69
69
|
* }
|
|
70
70
|
* ```
|
|
71
71
|
* @path GET `/rest/atlassian-connect/1/addons/{addonKey}/properties`
|
|
@@ -105,9 +105,9 @@ class AppPropertiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
105
105
|
* example:
|
|
106
106
|
* ```
|
|
107
107
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
108
|
+
* "self": "https://your-domain.atlassian.net/jira/rest/atlassian-connect/1/addon/example.app.key/properties/propertyKey",
|
|
109
|
+
* "key": "propertyKey",
|
|
110
|
+
* "value": "propertyValue"
|
|
111
111
|
* }
|
|
112
112
|
* ```
|
|
113
113
|
* @path GET `/rest/atlassian-connect/1/addons/{addonKey}/properties/{propertyKey}`
|
|
@@ -156,8 +156,8 @@ class AppPropertiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
156
156
|
* example:
|
|
157
157
|
* ```
|
|
158
158
|
* {
|
|
159
|
-
*
|
|
160
|
-
*
|
|
159
|
+
* "message": "Property updated.",
|
|
160
|
+
* "statusCode": 200
|
|
161
161
|
* }
|
|
162
162
|
* ```
|
|
163
163
|
*
|
|
@@ -168,8 +168,8 @@ class AppPropertiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
168
168
|
* example:
|
|
169
169
|
* ```
|
|
170
170
|
* {
|
|
171
|
-
*
|
|
172
|
-
*
|
|
171
|
+
* "message": "Property created.",
|
|
172
|
+
* "statusCode": 201
|
|
173
173
|
* }
|
|
174
174
|
* ```
|
|
175
175
|
* @path PUT `/rest/atlassian-connect/1/addons/{addonKey}/properties/{propertyKey}`
|
|
@@ -258,8 +258,8 @@ class AppPropertiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
258
258
|
* example:
|
|
259
259
|
* ```
|
|
260
260
|
* {
|
|
261
|
-
*
|
|
262
|
-
*
|
|
261
|
+
* "message": "Property updated.",
|
|
262
|
+
* "statusCode": 200
|
|
263
263
|
* }
|
|
264
264
|
* ```
|
|
265
265
|
*
|
|
@@ -270,8 +270,8 @@ class AppPropertiesService extends CommonHttpService_1.CommonHttpService {
|
|
|
270
270
|
* example:
|
|
271
271
|
* ```
|
|
272
272
|
* {
|
|
273
|
-
*
|
|
274
|
-
*
|
|
273
|
+
* "message": "Property created.",
|
|
274
|
+
* "statusCode": 201
|
|
275
275
|
* }
|
|
276
276
|
* ```
|
|
277
277
|
* @path PUT `/rest/forge/1/app/properties/{propertyKey}`
|
|
@@ -19,6 +19,7 @@ export declare class ApplicationRolesService extends CommonHttpService {
|
|
|
19
19
|
* @returns Returned if the request is successful.
|
|
20
20
|
*
|
|
21
21
|
* example:
|
|
22
|
+
*
|
|
22
23
|
* ```
|
|
23
24
|
* [
|
|
24
25
|
* {
|
|
@@ -93,6 +94,7 @@ export declare class ApplicationRolesService extends CommonHttpService {
|
|
|
93
94
|
* }
|
|
94
95
|
* ]
|
|
95
96
|
* ```
|
|
97
|
+
*
|
|
96
98
|
* @path GET `/rest/api/3/applicationrole`
|
|
97
99
|
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-application-roles#api-rest-api-3-applicationrole-get
|
|
98
100
|
*/
|
|
@@ -30,6 +30,7 @@ class ApplicationRolesService extends CommonHttpService_1.CommonHttpService {
|
|
|
30
30
|
* @returns Returned if the request is successful.
|
|
31
31
|
*
|
|
32
32
|
* example:
|
|
33
|
+
*
|
|
33
34
|
* ```
|
|
34
35
|
* [
|
|
35
36
|
* {
|
|
@@ -104,6 +105,7 @@ class ApplicationRolesService extends CommonHttpService_1.CommonHttpService {
|
|
|
104
105
|
* }
|
|
105
106
|
* ]
|
|
106
107
|
* ```
|
|
108
|
+
*
|
|
107
109
|
* @path GET `/rest/api/3/applicationrole`
|
|
108
110
|
* @see https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-application-roles#api-rest-api-3-applicationrole-get
|
|
109
111
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicationRolesService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/ApplicationRolesService.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAwB;AAExB,gEAAgE;AAChE,oEAAiE;AACjE,6CAG0B;AAC1B,wEAAqE;AACrE;;;;;;GAMG;AACH,MAAa,uBAAwB,SAAQ,qCAAiB;IAA9D;;QACE
|
|
1
|
+
{"version":3,"file":"ApplicationRolesService.js","sourceRoot":"","sources":["../../../../src/openapi/platform/services/ApplicationRolesService.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAwB;AAExB,gEAAgE;AAChE,oEAAiE;AACjE,6CAG0B;AAC1B,wEAAqE;AACrE;;;;;;GAMG;AACH,MAAa,uBAAwB,SAAQ,qCAAiB;IAA9D;;QACE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAyFG;QACH,2BAAsB,GAAG,GAA+B,EAAE;YACxD,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,6BAA6B;gBACnC,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,yDAAyD,CAC1D,CACF,CACF;iBACA,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;QACpC,CAAC,CAAC;QACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAoDG;QACH,uBAAkB,GAAG,CAAC,EACpB,GAAG,GAQJ,EAA4B,EAAE;YAC7B,OAAO,IAAI,CAAC,iBAAiB,EAAE;iBAC5B,OAAO,CAAC;gBACP,IAAI,EAAE,mCAAmC;gBACzC,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE;oBACV,GAAG;iBACJ;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,qDAAqD,CACtD,CACF,CACF;iBACA,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;QACpC,CAAC,CAAC;IAwBJ,CAAC;IAvBW,MAAM,CAAC,UAAU;QACzB,iDAAuB,CAAC,kBAAkB,CACxC,yDAAyD,EACzD,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,iBAAiB,CAAC,CAAC;SAC/D,CAAC;aACD,QAAQ,CAAC,yDAAyD,CAAC,CACvE,CAAC;QACF,iDAAuB,CAAC,kBAAkB,CACxC,qDAAqD,EACrD,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,iDAAuB,CAAC,IAAI,CAAC,iBAAiB,CAAC;SACtD,CAAC;aACD,QAAQ,CAAC,qDAAqD,CAAC,CACnE,CAAC;QACF,iDAAuB,CAAC,YAAY,CAAC,CAAC,wCAA+B,CAAC,CAAC,CAAC;IAC1E,CAAC;CACF;AA7OD,0DA6OC"}
|