@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
|
@@ -894,101 +894,101 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
894
894
|
*
|
|
895
895
|
* @example
|
|
896
896
|
* {
|
|
897
|
-
*
|
|
898
|
-
*
|
|
899
|
-
*
|
|
900
|
-
*
|
|
901
|
-
*
|
|
902
|
-
*
|
|
903
|
-
*
|
|
904
|
-
*
|
|
905
|
-
*
|
|
906
|
-
*
|
|
907
|
-
*
|
|
908
|
-
*
|
|
909
|
-
*
|
|
910
|
-
*
|
|
911
|
-
*
|
|
912
|
-
*
|
|
913
|
-
*
|
|
914
|
-
*
|
|
915
|
-
*
|
|
916
|
-
*
|
|
917
|
-
*
|
|
918
|
-
*
|
|
919
|
-
*
|
|
920
|
-
*
|
|
921
|
-
*
|
|
922
|
-
*
|
|
923
|
-
*
|
|
924
|
-
*
|
|
925
|
-
*
|
|
926
|
-
*
|
|
897
|
+
* "description": "This is a workflow used for Stories and Tasks",
|
|
898
|
+
* "name": "Workflow 1",
|
|
899
|
+
* "statuses": [
|
|
900
|
+
* {
|
|
901
|
+
* "id": "1",
|
|
902
|
+
* "properties": {
|
|
903
|
+
* "jira.issue.editable": "false"
|
|
904
|
+
* }
|
|
905
|
+
* },
|
|
906
|
+
* {
|
|
907
|
+
* "id": "2"
|
|
908
|
+
* },
|
|
909
|
+
* {
|
|
910
|
+
* "id": "3"
|
|
911
|
+
* }
|
|
912
|
+
* ],
|
|
913
|
+
* "transitions": [
|
|
914
|
+
* {
|
|
915
|
+
* "from": [],
|
|
916
|
+
* "name": "Created",
|
|
917
|
+
* "to": "1",
|
|
918
|
+
* "type": "initial"
|
|
919
|
+
* },
|
|
920
|
+
* {
|
|
921
|
+
* "from": [
|
|
922
|
+
* "1"
|
|
923
|
+
* ],
|
|
924
|
+
* "name": "In progress",
|
|
925
|
+
* "properties": {
|
|
926
|
+
* "custom-property": "custom-value"
|
|
927
|
+
* },
|
|
928
|
+
* "rules": {
|
|
929
|
+
* "conditions": {
|
|
930
|
+
* "conditions": [
|
|
931
|
+
* {
|
|
932
|
+
* "type": "RemoteOnlyCondition"
|
|
927
933
|
* },
|
|
928
|
-
*
|
|
929
|
-
*
|
|
930
|
-
*
|
|
931
|
-
*
|
|
932
|
-
*
|
|
933
|
-
* },
|
|
934
|
-
* {
|
|
935
|
-
* "configuration": {
|
|
936
|
-
* "groups": [
|
|
937
|
-
* "developers",
|
|
938
|
-
* "qa-testers"
|
|
939
|
-
* ]
|
|
940
|
-
* },
|
|
941
|
-
* "type": "UserInAnyGroupCondition"
|
|
942
|
-
* }
|
|
943
|
-
* ],
|
|
944
|
-
* "operator": "AND"
|
|
945
|
-
* },
|
|
946
|
-
* "postFunctions": [
|
|
947
|
-
* {
|
|
948
|
-
* "type": "AssignToCurrentUserFunction"
|
|
949
|
-
* }
|
|
934
|
+
* {
|
|
935
|
+
* "configuration": {
|
|
936
|
+
* "groups": [
|
|
937
|
+
* "developers",
|
|
938
|
+
* "qa-testers"
|
|
950
939
|
* ]
|
|
940
|
+
* },
|
|
941
|
+
* "type": "UserInAnyGroupCondition"
|
|
942
|
+
* }
|
|
943
|
+
* ],
|
|
944
|
+
* "operator": "AND"
|
|
945
|
+
* },
|
|
946
|
+
* "postFunctions": [
|
|
947
|
+
* {
|
|
948
|
+
* "type": "AssignToCurrentUserFunction"
|
|
949
|
+
* }
|
|
950
|
+
* ]
|
|
951
|
+
* },
|
|
952
|
+
* "screen": {
|
|
953
|
+
* "id": "10001"
|
|
954
|
+
* },
|
|
955
|
+
* "to": "2",
|
|
956
|
+
* "type": "directed"
|
|
957
|
+
* },
|
|
958
|
+
* {
|
|
959
|
+
* "name": "Completed",
|
|
960
|
+
* "rules": {
|
|
961
|
+
* "postFunctions": [
|
|
962
|
+
* {
|
|
963
|
+
* "configuration": {
|
|
964
|
+
* "fieldId": "assignee"
|
|
951
965
|
* },
|
|
952
|
-
* "
|
|
953
|
-
*
|
|
966
|
+
* "type": "ClearFieldValuePostFunction"
|
|
967
|
+
* }
|
|
968
|
+
* ],
|
|
969
|
+
* "validators": [
|
|
970
|
+
* {
|
|
971
|
+
* "configuration": {
|
|
972
|
+
* "parentStatuses": [
|
|
973
|
+
* {
|
|
974
|
+
* "id": "3"
|
|
975
|
+
* }
|
|
976
|
+
* ]
|
|
954
977
|
* },
|
|
955
|
-
* "
|
|
956
|
-
*
|
|
957
|
-
*
|
|
958
|
-
*
|
|
959
|
-
*
|
|
960
|
-
* "rules": {
|
|
961
|
-
* "postFunctions": [
|
|
962
|
-
* {
|
|
963
|
-
* "configuration": {
|
|
964
|
-
* "fieldId": "assignee"
|
|
965
|
-
* },
|
|
966
|
-
* "type": "ClearFieldValuePostFunction"
|
|
967
|
-
* }
|
|
968
|
-
* ],
|
|
969
|
-
* "validators": [
|
|
970
|
-
* {
|
|
971
|
-
* "configuration": {
|
|
972
|
-
* "parentStatuses": [
|
|
973
|
-
* {
|
|
974
|
-
* "id": "3"
|
|
975
|
-
* }
|
|
976
|
-
* ]
|
|
977
|
-
* },
|
|
978
|
-
* "type": "ParentStatusValidator"
|
|
979
|
-
* },
|
|
980
|
-
* {
|
|
981
|
-
* "configuration": {
|
|
982
|
-
* "permissionKey": "ADMINISTER_PROJECTS"
|
|
983
|
-
* },
|
|
984
|
-
* "type": "PermissionValidator"
|
|
985
|
-
* }
|
|
986
|
-
* ]
|
|
978
|
+
* "type": "ParentStatusValidator"
|
|
979
|
+
* },
|
|
980
|
+
* {
|
|
981
|
+
* "configuration": {
|
|
982
|
+
* "permissionKey": "ADMINISTER_PROJECTS"
|
|
987
983
|
* },
|
|
988
|
-
* "
|
|
989
|
-
*
|
|
990
|
-
*
|
|
991
|
-
*
|
|
984
|
+
* "type": "PermissionValidator"
|
|
985
|
+
* }
|
|
986
|
+
* ]
|
|
987
|
+
* },
|
|
988
|
+
* "to": "3",
|
|
989
|
+
* "type": "global"
|
|
990
|
+
* }
|
|
991
|
+
* ]
|
|
992
992
|
* }
|
|
993
993
|
*/
|
|
994
994
|
createWorkflowDetails: CreateWorkflowDetails;
|
|
@@ -1161,123 +1161,123 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
1161
1161
|
/**
|
|
1162
1162
|
* @example
|
|
1163
1163
|
* {
|
|
1164
|
-
*
|
|
1165
|
-
*
|
|
1164
|
+
* "scope": {
|
|
1165
|
+
* "type": "GLOBAL"
|
|
1166
|
+
* },
|
|
1167
|
+
* "statuses": [
|
|
1168
|
+
* {
|
|
1169
|
+
* "description": "",
|
|
1170
|
+
* "name": "To Do",
|
|
1171
|
+
* "statusCategory": "TODO",
|
|
1172
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1166
1173
|
* },
|
|
1167
|
-
*
|
|
1174
|
+
* {
|
|
1175
|
+
* "description": "",
|
|
1176
|
+
* "name": "In Progress",
|
|
1177
|
+
* "statusCategory": "IN_PROGRESS",
|
|
1178
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1179
|
+
* },
|
|
1180
|
+
* {
|
|
1181
|
+
* "description": "",
|
|
1182
|
+
* "name": "Done",
|
|
1183
|
+
* "statusCategory": "DONE",
|
|
1184
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
1185
|
+
* }
|
|
1186
|
+
* ],
|
|
1187
|
+
* "workflows": [
|
|
1188
|
+
* {
|
|
1189
|
+
* "description": "",
|
|
1190
|
+
* "name": "Software workflow 1",
|
|
1191
|
+
* "startPointLayout": {
|
|
1192
|
+
* "x": -100.00030899047852,
|
|
1193
|
+
* "y": -153.00020599365234
|
|
1194
|
+
* },
|
|
1195
|
+
* "statuses": [
|
|
1168
1196
|
* {
|
|
1169
|
-
*
|
|
1170
|
-
* "
|
|
1171
|
-
* "
|
|
1197
|
+
* "layout": {
|
|
1198
|
+
* "x": 114.99993896484375,
|
|
1199
|
+
* "y": -16
|
|
1200
|
+
* },
|
|
1201
|
+
* "properties": {},
|
|
1202
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1203
|
+
* },
|
|
1204
|
+
* {
|
|
1205
|
+
* "layout": {
|
|
1206
|
+
* "x": 317.0000915527344,
|
|
1207
|
+
* "y": -16
|
|
1208
|
+
* },
|
|
1209
|
+
* "properties": {},
|
|
1210
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1211
|
+
* },
|
|
1212
|
+
* {
|
|
1213
|
+
* "layout": {
|
|
1214
|
+
* "x": 508.000244140625,
|
|
1215
|
+
* "y": -16
|
|
1216
|
+
* },
|
|
1217
|
+
* "properties": {},
|
|
1218
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
1219
|
+
* }
|
|
1220
|
+
* ],
|
|
1221
|
+
* "transitions": [
|
|
1222
|
+
* {
|
|
1223
|
+
* "actions": [],
|
|
1224
|
+
* "description": "",
|
|
1225
|
+
* "from": [],
|
|
1226
|
+
* "id": "1",
|
|
1227
|
+
* "name": "Create",
|
|
1228
|
+
* "properties": {},
|
|
1229
|
+
* "to": {
|
|
1172
1230
|
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1231
|
+
* },
|
|
1232
|
+
* "triggers": [],
|
|
1233
|
+
* "type": "INITIAL",
|
|
1234
|
+
* "validators": []
|
|
1173
1235
|
* },
|
|
1174
1236
|
* {
|
|
1175
|
-
*
|
|
1176
|
-
*
|
|
1177
|
-
*
|
|
1237
|
+
* "actions": [],
|
|
1238
|
+
* "description": "",
|
|
1239
|
+
* "from": [],
|
|
1240
|
+
* "id": "11",
|
|
1241
|
+
* "name": "To Do",
|
|
1242
|
+
* "properties": {},
|
|
1243
|
+
* "to": {
|
|
1244
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1245
|
+
* },
|
|
1246
|
+
* "triggers": [],
|
|
1247
|
+
* "type": "GLOBAL",
|
|
1248
|
+
* "validators": []
|
|
1249
|
+
* },
|
|
1250
|
+
* {
|
|
1251
|
+
* "actions": [],
|
|
1252
|
+
* "description": "",
|
|
1253
|
+
* "from": [],
|
|
1254
|
+
* "id": "21",
|
|
1255
|
+
* "name": "In Progress",
|
|
1256
|
+
* "properties": {},
|
|
1257
|
+
* "to": {
|
|
1178
1258
|
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1259
|
+
* },
|
|
1260
|
+
* "triggers": [],
|
|
1261
|
+
* "type": "GLOBAL",
|
|
1262
|
+
* "validators": []
|
|
1179
1263
|
* },
|
|
1180
1264
|
* {
|
|
1181
|
-
*
|
|
1182
|
-
*
|
|
1183
|
-
*
|
|
1265
|
+
* "actions": [],
|
|
1266
|
+
* "description": "",
|
|
1267
|
+
* "from": [],
|
|
1268
|
+
* "id": "31",
|
|
1269
|
+
* "name": "Done",
|
|
1270
|
+
* "properties": {},
|
|
1271
|
+
* "to": {
|
|
1184
1272
|
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
1273
|
+
* },
|
|
1274
|
+
* "triggers": [],
|
|
1275
|
+
* "type": "GLOBAL",
|
|
1276
|
+
* "validators": []
|
|
1185
1277
|
* }
|
|
1186
|
-
*
|
|
1187
|
-
*
|
|
1188
|
-
*
|
|
1189
|
-
* "description": "",
|
|
1190
|
-
* "name": "Software workflow 1",
|
|
1191
|
-
* "startPointLayout": {
|
|
1192
|
-
* "x": -100.00030899047852,
|
|
1193
|
-
* "y": -153.00020599365234
|
|
1194
|
-
* },
|
|
1195
|
-
* "statuses": [
|
|
1196
|
-
* {
|
|
1197
|
-
* "layout": {
|
|
1198
|
-
* "x": 114.99993896484375,
|
|
1199
|
-
* "y": -16
|
|
1200
|
-
* },
|
|
1201
|
-
* "properties": {},
|
|
1202
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1203
|
-
* },
|
|
1204
|
-
* {
|
|
1205
|
-
* "layout": {
|
|
1206
|
-
* "x": 317.0000915527344,
|
|
1207
|
-
* "y": -16
|
|
1208
|
-
* },
|
|
1209
|
-
* "properties": {},
|
|
1210
|
-
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1211
|
-
* },
|
|
1212
|
-
* {
|
|
1213
|
-
* "layout": {
|
|
1214
|
-
* "x": 508.000244140625,
|
|
1215
|
-
* "y": -16
|
|
1216
|
-
* },
|
|
1217
|
-
* "properties": {},
|
|
1218
|
-
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
1219
|
-
* }
|
|
1220
|
-
* ],
|
|
1221
|
-
* "transitions": [
|
|
1222
|
-
* {
|
|
1223
|
-
* "actions": [],
|
|
1224
|
-
* "description": "",
|
|
1225
|
-
* "from": [],
|
|
1226
|
-
* "id": "1",
|
|
1227
|
-
* "name": "Create",
|
|
1228
|
-
* "properties": {},
|
|
1229
|
-
* "to": {
|
|
1230
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1231
|
-
* },
|
|
1232
|
-
* "triggers": [],
|
|
1233
|
-
* "type": "INITIAL",
|
|
1234
|
-
* "validators": []
|
|
1235
|
-
* },
|
|
1236
|
-
* {
|
|
1237
|
-
* "actions": [],
|
|
1238
|
-
* "description": "",
|
|
1239
|
-
* "from": [],
|
|
1240
|
-
* "id": "11",
|
|
1241
|
-
* "name": "To Do",
|
|
1242
|
-
* "properties": {},
|
|
1243
|
-
* "to": {
|
|
1244
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1245
|
-
* },
|
|
1246
|
-
* "triggers": [],
|
|
1247
|
-
* "type": "GLOBAL",
|
|
1248
|
-
* "validators": []
|
|
1249
|
-
* },
|
|
1250
|
-
* {
|
|
1251
|
-
* "actions": [],
|
|
1252
|
-
* "description": "",
|
|
1253
|
-
* "from": [],
|
|
1254
|
-
* "id": "21",
|
|
1255
|
-
* "name": "In Progress",
|
|
1256
|
-
* "properties": {},
|
|
1257
|
-
* "to": {
|
|
1258
|
-
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1259
|
-
* },
|
|
1260
|
-
* "triggers": [],
|
|
1261
|
-
* "type": "GLOBAL",
|
|
1262
|
-
* "validators": []
|
|
1263
|
-
* },
|
|
1264
|
-
* {
|
|
1265
|
-
* "actions": [],
|
|
1266
|
-
* "description": "",
|
|
1267
|
-
* "from": [],
|
|
1268
|
-
* "id": "31",
|
|
1269
|
-
* "name": "Done",
|
|
1270
|
-
* "properties": {},
|
|
1271
|
-
* "to": {
|
|
1272
|
-
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
1273
|
-
* },
|
|
1274
|
-
* "triggers": [],
|
|
1275
|
-
* "type": "GLOBAL",
|
|
1276
|
-
* "validators": []
|
|
1277
|
-
* }
|
|
1278
|
-
* ]
|
|
1279
|
-
* }
|
|
1280
|
-
* ]
|
|
1278
|
+
* ]
|
|
1279
|
+
* }
|
|
1280
|
+
* ]
|
|
1281
1281
|
* }
|
|
1282
1282
|
*/
|
|
1283
1283
|
workflowCreateRequest: WorkflowCreateRequest;
|
|
@@ -1319,6 +1319,7 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
1319
1319
|
* @returns Returned if the request is successful.
|
|
1320
1320
|
*
|
|
1321
1321
|
* example:
|
|
1322
|
+
*
|
|
1322
1323
|
* ```
|
|
1323
1324
|
* [
|
|
1324
1325
|
* {
|
|
@@ -1332,6 +1333,7 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
1332
1333
|
* }
|
|
1333
1334
|
* ]
|
|
1334
1335
|
* ```
|
|
1336
|
+
*
|
|
1335
1337
|
* @path GET `/rest/api/3/workflow`
|
|
1336
1338
|
* @scopes-current manage:jira-configuration
|
|
1337
1339
|
* @scopes-beta read:workflow:jira, read:project:jira, read:project-category:jira, read:avatar:jira
|
|
@@ -1739,12 +1741,12 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
1739
1741
|
/**
|
|
1740
1742
|
* @example
|
|
1741
1743
|
* {
|
|
1742
|
-
*
|
|
1743
|
-
*
|
|
1744
|
-
*
|
|
1745
|
-
*
|
|
1746
|
-
*
|
|
1747
|
-
*
|
|
1744
|
+
* "projectAndIssueTypes": [],
|
|
1745
|
+
* "workflowIds": [],
|
|
1746
|
+
* "workflowNames": [
|
|
1747
|
+
* "Workflow 1",
|
|
1748
|
+
* "Workflow 2"
|
|
1749
|
+
* ]
|
|
1748
1750
|
* }
|
|
1749
1751
|
*/
|
|
1750
1752
|
workflowReadRequest: WorkflowReadRequest;
|
|
@@ -1928,142 +1930,142 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
1928
1930
|
/**
|
|
1929
1931
|
* @example
|
|
1930
1932
|
* {
|
|
1931
|
-
*
|
|
1933
|
+
* "statuses": [
|
|
1934
|
+
* {
|
|
1935
|
+
* "description": "",
|
|
1936
|
+
* "name": "To Do",
|
|
1937
|
+
* "statusCategory": "TODO",
|
|
1938
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1939
|
+
* },
|
|
1940
|
+
* {
|
|
1941
|
+
* "description": "",
|
|
1942
|
+
* "name": "In Progress",
|
|
1943
|
+
* "statusCategory": "IN_PROGRESS",
|
|
1944
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1945
|
+
* },
|
|
1946
|
+
* {
|
|
1947
|
+
* "description": "",
|
|
1948
|
+
* "name": "Done",
|
|
1949
|
+
* "statusCategory": "DONE",
|
|
1950
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
1951
|
+
* }
|
|
1952
|
+
* ],
|
|
1953
|
+
* "workflows": [
|
|
1954
|
+
* {
|
|
1955
|
+
* "defaultStatusMappings": [
|
|
1932
1956
|
* {
|
|
1933
|
-
*
|
|
1934
|
-
*
|
|
1935
|
-
*
|
|
1957
|
+
* "newStatusReference": "10011",
|
|
1958
|
+
* "oldStatusReference": "10010"
|
|
1959
|
+
* }
|
|
1960
|
+
* ],
|
|
1961
|
+
* "description": "",
|
|
1962
|
+
* "id": "10001",
|
|
1963
|
+
* "startPointLayout": {
|
|
1964
|
+
* "x": -100.00030899047852,
|
|
1965
|
+
* "y": -153.00020599365234
|
|
1966
|
+
* },
|
|
1967
|
+
* "statusMappings": [
|
|
1968
|
+
* {
|
|
1969
|
+
* "issueTypeId": "10002",
|
|
1970
|
+
* "projectId": "10003",
|
|
1971
|
+
* "statusMigrations": [
|
|
1972
|
+
* {
|
|
1973
|
+
* "newStatusReference": "10011",
|
|
1974
|
+
* "oldStatusReference": "10010"
|
|
1975
|
+
* }
|
|
1976
|
+
* ]
|
|
1977
|
+
* }
|
|
1978
|
+
* ],
|
|
1979
|
+
* "statuses": [
|
|
1980
|
+
* {
|
|
1981
|
+
* "layout": {
|
|
1982
|
+
* "x": 114.99993896484375,
|
|
1983
|
+
* "y": -16
|
|
1984
|
+
* },
|
|
1985
|
+
* "properties": {},
|
|
1986
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1987
|
+
* },
|
|
1988
|
+
* {
|
|
1989
|
+
* "layout": {
|
|
1990
|
+
* "x": 317.0000915527344,
|
|
1991
|
+
* "y": -16
|
|
1992
|
+
* },
|
|
1993
|
+
* "properties": {},
|
|
1994
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1995
|
+
* },
|
|
1996
|
+
* {
|
|
1997
|
+
* "layout": {
|
|
1998
|
+
* "x": 508.000244140625,
|
|
1999
|
+
* "y": -16
|
|
2000
|
+
* },
|
|
2001
|
+
* "properties": {},
|
|
2002
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2003
|
+
* }
|
|
2004
|
+
* ],
|
|
2005
|
+
* "transitions": [
|
|
2006
|
+
* {
|
|
2007
|
+
* "actions": [],
|
|
2008
|
+
* "description": "",
|
|
2009
|
+
* "from": [],
|
|
2010
|
+
* "id": "1",
|
|
2011
|
+
* "name": "Create",
|
|
2012
|
+
* "properties": {},
|
|
2013
|
+
* "to": {
|
|
1936
2014
|
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2015
|
+
* },
|
|
2016
|
+
* "triggers": [],
|
|
2017
|
+
* "type": "INITIAL",
|
|
2018
|
+
* "validators": []
|
|
1937
2019
|
* },
|
|
1938
2020
|
* {
|
|
1939
|
-
*
|
|
1940
|
-
*
|
|
1941
|
-
*
|
|
2021
|
+
* "actions": [],
|
|
2022
|
+
* "description": "",
|
|
2023
|
+
* "from": [],
|
|
2024
|
+
* "id": "11",
|
|
2025
|
+
* "name": "To Do",
|
|
2026
|
+
* "properties": {},
|
|
2027
|
+
* "to": {
|
|
2028
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2029
|
+
* },
|
|
2030
|
+
* "triggers": [],
|
|
2031
|
+
* "type": "GLOBAL",
|
|
2032
|
+
* "validators": []
|
|
2033
|
+
* },
|
|
2034
|
+
* {
|
|
2035
|
+
* "actions": [],
|
|
2036
|
+
* "description": "",
|
|
2037
|
+
* "from": [],
|
|
2038
|
+
* "id": "21",
|
|
2039
|
+
* "name": "In Progress",
|
|
2040
|
+
* "properties": {},
|
|
2041
|
+
* "to": {
|
|
1942
2042
|
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2043
|
+
* },
|
|
2044
|
+
* "triggers": [],
|
|
2045
|
+
* "type": "GLOBAL",
|
|
2046
|
+
* "validators": []
|
|
1943
2047
|
* },
|
|
1944
2048
|
* {
|
|
1945
|
-
*
|
|
1946
|
-
*
|
|
1947
|
-
*
|
|
2049
|
+
* "actions": [],
|
|
2050
|
+
* "description": "",
|
|
2051
|
+
* "from": [],
|
|
2052
|
+
* "id": "31",
|
|
2053
|
+
* "name": "Done",
|
|
2054
|
+
* "properties": {},
|
|
2055
|
+
* "to": {
|
|
1948
2056
|
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2057
|
+
* },
|
|
2058
|
+
* "triggers": [],
|
|
2059
|
+
* "type": "GLOBAL",
|
|
2060
|
+
* "validators": []
|
|
1949
2061
|
* }
|
|
1950
|
-
*
|
|
1951
|
-
*
|
|
1952
|
-
*
|
|
1953
|
-
*
|
|
1954
|
-
*
|
|
1955
|
-
*
|
|
1956
|
-
*
|
|
1957
|
-
* }
|
|
1958
|
-
* ],
|
|
1959
|
-
* "description": "",
|
|
1960
|
-
* "id": "10001",
|
|
1961
|
-
* "startPointLayout": {
|
|
1962
|
-
* "x": -100.00030899047852,
|
|
1963
|
-
* "y": -153.00020599365234
|
|
1964
|
-
* },
|
|
1965
|
-
* "statusMappings": [
|
|
1966
|
-
* {
|
|
1967
|
-
* "issueTypeId": "10002",
|
|
1968
|
-
* "projectId": "10003",
|
|
1969
|
-
* "statusMigrations": [
|
|
1970
|
-
* {
|
|
1971
|
-
* "newStatusReference": "10011",
|
|
1972
|
-
* "oldStatusReference": "10010"
|
|
1973
|
-
* }
|
|
1974
|
-
* ]
|
|
1975
|
-
* }
|
|
1976
|
-
* ],
|
|
1977
|
-
* "statuses": [
|
|
1978
|
-
* {
|
|
1979
|
-
* "layout": {
|
|
1980
|
-
* "x": 114.99993896484375,
|
|
1981
|
-
* "y": -16
|
|
1982
|
-
* },
|
|
1983
|
-
* "properties": {},
|
|
1984
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
1985
|
-
* },
|
|
1986
|
-
* {
|
|
1987
|
-
* "layout": {
|
|
1988
|
-
* "x": 317.0000915527344,
|
|
1989
|
-
* "y": -16
|
|
1990
|
-
* },
|
|
1991
|
-
* "properties": {},
|
|
1992
|
-
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
1993
|
-
* },
|
|
1994
|
-
* {
|
|
1995
|
-
* "layout": {
|
|
1996
|
-
* "x": 508.000244140625,
|
|
1997
|
-
* "y": -16
|
|
1998
|
-
* },
|
|
1999
|
-
* "properties": {},
|
|
2000
|
-
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2001
|
-
* }
|
|
2002
|
-
* ],
|
|
2003
|
-
* "transitions": [
|
|
2004
|
-
* {
|
|
2005
|
-
* "actions": [],
|
|
2006
|
-
* "description": "",
|
|
2007
|
-
* "from": [],
|
|
2008
|
-
* "id": "1",
|
|
2009
|
-
* "name": "Create",
|
|
2010
|
-
* "properties": {},
|
|
2011
|
-
* "to": {
|
|
2012
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2013
|
-
* },
|
|
2014
|
-
* "triggers": [],
|
|
2015
|
-
* "type": "INITIAL",
|
|
2016
|
-
* "validators": []
|
|
2017
|
-
* },
|
|
2018
|
-
* {
|
|
2019
|
-
* "actions": [],
|
|
2020
|
-
* "description": "",
|
|
2021
|
-
* "from": [],
|
|
2022
|
-
* "id": "11",
|
|
2023
|
-
* "name": "To Do",
|
|
2024
|
-
* "properties": {},
|
|
2025
|
-
* "to": {
|
|
2026
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2027
|
-
* },
|
|
2028
|
-
* "triggers": [],
|
|
2029
|
-
* "type": "GLOBAL",
|
|
2030
|
-
* "validators": []
|
|
2031
|
-
* },
|
|
2032
|
-
* {
|
|
2033
|
-
* "actions": [],
|
|
2034
|
-
* "description": "",
|
|
2035
|
-
* "from": [],
|
|
2036
|
-
* "id": "21",
|
|
2037
|
-
* "name": "In Progress",
|
|
2038
|
-
* "properties": {},
|
|
2039
|
-
* "to": {
|
|
2040
|
-
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2041
|
-
* },
|
|
2042
|
-
* "triggers": [],
|
|
2043
|
-
* "type": "GLOBAL",
|
|
2044
|
-
* "validators": []
|
|
2045
|
-
* },
|
|
2046
|
-
* {
|
|
2047
|
-
* "actions": [],
|
|
2048
|
-
* "description": "",
|
|
2049
|
-
* "from": [],
|
|
2050
|
-
* "id": "31",
|
|
2051
|
-
* "name": "Done",
|
|
2052
|
-
* "properties": {},
|
|
2053
|
-
* "to": {
|
|
2054
|
-
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2055
|
-
* },
|
|
2056
|
-
* "triggers": [],
|
|
2057
|
-
* "type": "GLOBAL",
|
|
2058
|
-
* "validators": []
|
|
2059
|
-
* }
|
|
2060
|
-
* ],
|
|
2061
|
-
* "version": {
|
|
2062
|
-
* "id": "6f6c988b-2590-4358-90c2-5f7960265592",
|
|
2063
|
-
* "versionNumber": 1
|
|
2064
|
-
* }
|
|
2065
|
-
* }
|
|
2066
|
-
* ]
|
|
2062
|
+
* ],
|
|
2063
|
+
* "version": {
|
|
2064
|
+
* "id": "6f6c988b-2590-4358-90c2-5f7960265592",
|
|
2065
|
+
* "versionNumber": 1
|
|
2066
|
+
* }
|
|
2067
|
+
* }
|
|
2068
|
+
* ]
|
|
2067
2069
|
* }
|
|
2068
2070
|
*/
|
|
2069
2071
|
workflowUpdateRequest: WorkflowUpdateRequest;
|
|
@@ -2105,131 +2107,131 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
2105
2107
|
/**
|
|
2106
2108
|
* @example
|
|
2107
2109
|
* {
|
|
2108
|
-
*
|
|
2109
|
-
*
|
|
2110
|
-
*
|
|
2110
|
+
* "payload": {
|
|
2111
|
+
* "scope": {
|
|
2112
|
+
* "type": "GLOBAL"
|
|
2113
|
+
* },
|
|
2114
|
+
* "statuses": [
|
|
2115
|
+
* {
|
|
2116
|
+
* "description": "",
|
|
2117
|
+
* "name": "To Do",
|
|
2118
|
+
* "statusCategory": "TODO",
|
|
2119
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2120
|
+
* },
|
|
2121
|
+
* {
|
|
2122
|
+
* "description": "",
|
|
2123
|
+
* "name": "In Progress",
|
|
2124
|
+
* "statusCategory": "IN_PROGRESS",
|
|
2125
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2126
|
+
* },
|
|
2127
|
+
* {
|
|
2128
|
+
* "description": "",
|
|
2129
|
+
* "name": "Done",
|
|
2130
|
+
* "statusCategory": "DONE",
|
|
2131
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2132
|
+
* }
|
|
2133
|
+
* ],
|
|
2134
|
+
* "workflows": [
|
|
2135
|
+
* {
|
|
2136
|
+
* "description": "",
|
|
2137
|
+
* "name": "Software workflow 1",
|
|
2138
|
+
* "startPointLayout": {
|
|
2139
|
+
* "x": -100.00030899047852,
|
|
2140
|
+
* "y": -153.00020599365234
|
|
2111
2141
|
* },
|
|
2112
2142
|
* "statuses": [
|
|
2113
|
-
*
|
|
2114
|
-
*
|
|
2115
|
-
*
|
|
2116
|
-
*
|
|
2117
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2143
|
+
* {
|
|
2144
|
+
* "layout": {
|
|
2145
|
+
* "x": 114.99993896484375,
|
|
2146
|
+
* "y": -16
|
|
2118
2147
|
* },
|
|
2119
|
-
* {
|
|
2120
|
-
*
|
|
2121
|
-
*
|
|
2122
|
-
*
|
|
2123
|
-
*
|
|
2148
|
+
* "properties": {},
|
|
2149
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2150
|
+
* },
|
|
2151
|
+
* {
|
|
2152
|
+
* "layout": {
|
|
2153
|
+
* "x": 317.0000915527344,
|
|
2154
|
+
* "y": -16
|
|
2124
2155
|
* },
|
|
2125
|
-
* {
|
|
2126
|
-
*
|
|
2127
|
-
*
|
|
2128
|
-
*
|
|
2129
|
-
*
|
|
2130
|
-
*
|
|
2156
|
+
* "properties": {},
|
|
2157
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2158
|
+
* },
|
|
2159
|
+
* {
|
|
2160
|
+
* "layout": {
|
|
2161
|
+
* "x": 508.000244140625,
|
|
2162
|
+
* "y": -16
|
|
2163
|
+
* },
|
|
2164
|
+
* "properties": {},
|
|
2165
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2166
|
+
* }
|
|
2131
2167
|
* ],
|
|
2132
|
-
* "
|
|
2133
|
-
*
|
|
2134
|
-
*
|
|
2135
|
-
*
|
|
2136
|
-
*
|
|
2137
|
-
*
|
|
2138
|
-
*
|
|
2139
|
-
*
|
|
2140
|
-
*
|
|
2141
|
-
*
|
|
2142
|
-
*
|
|
2143
|
-
*
|
|
2144
|
-
*
|
|
2145
|
-
*
|
|
2146
|
-
*
|
|
2147
|
-
*
|
|
2148
|
-
*
|
|
2149
|
-
*
|
|
2150
|
-
*
|
|
2151
|
-
*
|
|
2152
|
-
*
|
|
2153
|
-
*
|
|
2154
|
-
*
|
|
2155
|
-
*
|
|
2156
|
-
*
|
|
2157
|
-
*
|
|
2158
|
-
*
|
|
2159
|
-
*
|
|
2160
|
-
*
|
|
2161
|
-
*
|
|
2162
|
-
*
|
|
2163
|
-
*
|
|
2164
|
-
*
|
|
2165
|
-
*
|
|
2166
|
-
*
|
|
2167
|
-
*
|
|
2168
|
-
*
|
|
2169
|
-
*
|
|
2170
|
-
*
|
|
2171
|
-
*
|
|
2172
|
-
*
|
|
2173
|
-
*
|
|
2174
|
-
*
|
|
2175
|
-
*
|
|
2176
|
-
*
|
|
2177
|
-
*
|
|
2178
|
-
*
|
|
2179
|
-
*
|
|
2180
|
-
*
|
|
2181
|
-
*
|
|
2182
|
-
*
|
|
2183
|
-
*
|
|
2184
|
-
*
|
|
2185
|
-
*
|
|
2186
|
-
*
|
|
2187
|
-
*
|
|
2188
|
-
*
|
|
2189
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2190
|
-
* },
|
|
2191
|
-
* "triggers": [],
|
|
2192
|
-
* "type": "GLOBAL",
|
|
2193
|
-
* "validators": []
|
|
2194
|
-
* },
|
|
2195
|
-
* {
|
|
2196
|
-
* "actions": [],
|
|
2197
|
-
* "description": "",
|
|
2198
|
-
* "from": [],
|
|
2199
|
-
* "id": "21",
|
|
2200
|
-
* "name": "In Progress",
|
|
2201
|
-
* "properties": {},
|
|
2202
|
-
* "to": {
|
|
2203
|
-
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2204
|
-
* },
|
|
2205
|
-
* "triggers": [],
|
|
2206
|
-
* "type": "GLOBAL",
|
|
2207
|
-
* "validators": []
|
|
2208
|
-
* },
|
|
2209
|
-
* {
|
|
2210
|
-
* "actions": [],
|
|
2211
|
-
* "description": "",
|
|
2212
|
-
* "from": [],
|
|
2213
|
-
* "id": "31",
|
|
2214
|
-
* "name": "Done",
|
|
2215
|
-
* "properties": {},
|
|
2216
|
-
* "to": {
|
|
2217
|
-
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2218
|
-
* },
|
|
2219
|
-
* "triggers": [],
|
|
2220
|
-
* "type": "GLOBAL",
|
|
2221
|
-
* "validators": []
|
|
2222
|
-
* }
|
|
2223
|
-
* ]
|
|
2224
|
-
* }
|
|
2225
|
-
* ]
|
|
2226
|
-
* },
|
|
2227
|
-
* "validationOptions": {
|
|
2228
|
-
* "levels": [
|
|
2229
|
-
* "ERROR",
|
|
2230
|
-
* "WARNING"
|
|
2168
|
+
* "transitions": [
|
|
2169
|
+
* {
|
|
2170
|
+
* "actions": [],
|
|
2171
|
+
* "description": "",
|
|
2172
|
+
* "from": [],
|
|
2173
|
+
* "id": "1",
|
|
2174
|
+
* "name": "Create",
|
|
2175
|
+
* "properties": {},
|
|
2176
|
+
* "to": {
|
|
2177
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2178
|
+
* },
|
|
2179
|
+
* "triggers": [],
|
|
2180
|
+
* "type": "INITIAL",
|
|
2181
|
+
* "validators": []
|
|
2182
|
+
* },
|
|
2183
|
+
* {
|
|
2184
|
+
* "actions": [],
|
|
2185
|
+
* "description": "",
|
|
2186
|
+
* "from": [],
|
|
2187
|
+
* "id": "11",
|
|
2188
|
+
* "name": "To Do",
|
|
2189
|
+
* "properties": {},
|
|
2190
|
+
* "to": {
|
|
2191
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2192
|
+
* },
|
|
2193
|
+
* "triggers": [],
|
|
2194
|
+
* "type": "GLOBAL",
|
|
2195
|
+
* "validators": []
|
|
2196
|
+
* },
|
|
2197
|
+
* {
|
|
2198
|
+
* "actions": [],
|
|
2199
|
+
* "description": "",
|
|
2200
|
+
* "from": [],
|
|
2201
|
+
* "id": "21",
|
|
2202
|
+
* "name": "In Progress",
|
|
2203
|
+
* "properties": {},
|
|
2204
|
+
* "to": {
|
|
2205
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2206
|
+
* },
|
|
2207
|
+
* "triggers": [],
|
|
2208
|
+
* "type": "GLOBAL",
|
|
2209
|
+
* "validators": []
|
|
2210
|
+
* },
|
|
2211
|
+
* {
|
|
2212
|
+
* "actions": [],
|
|
2213
|
+
* "description": "",
|
|
2214
|
+
* "from": [],
|
|
2215
|
+
* "id": "31",
|
|
2216
|
+
* "name": "Done",
|
|
2217
|
+
* "properties": {},
|
|
2218
|
+
* "to": {
|
|
2219
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2220
|
+
* },
|
|
2221
|
+
* "triggers": [],
|
|
2222
|
+
* "type": "GLOBAL",
|
|
2223
|
+
* "validators": []
|
|
2224
|
+
* }
|
|
2231
2225
|
* ]
|
|
2232
|
-
*
|
|
2226
|
+
* }
|
|
2227
|
+
* ]
|
|
2228
|
+
* },
|
|
2229
|
+
* "validationOptions": {
|
|
2230
|
+
* "levels": [
|
|
2231
|
+
* "ERROR",
|
|
2232
|
+
* "WARNING"
|
|
2233
|
+
* ]
|
|
2234
|
+
* }
|
|
2233
2235
|
* }
|
|
2234
2236
|
*/
|
|
2235
2237
|
workflowCreateValidateRequest: WorkflowCreateValidateRequest;
|
|
@@ -2271,150 +2273,150 @@ export declare class WorkflowsService extends CommonHttpService {
|
|
|
2271
2273
|
/**
|
|
2272
2274
|
* @example
|
|
2273
2275
|
* {
|
|
2274
|
-
*
|
|
2276
|
+
* "payload": {
|
|
2277
|
+
* "statuses": [
|
|
2278
|
+
* {
|
|
2279
|
+
* "description": "",
|
|
2280
|
+
* "name": "To Do",
|
|
2281
|
+
* "statusCategory": "TODO",
|
|
2282
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2283
|
+
* },
|
|
2284
|
+
* {
|
|
2285
|
+
* "description": "",
|
|
2286
|
+
* "name": "In Progress",
|
|
2287
|
+
* "statusCategory": "IN_PROGRESS",
|
|
2288
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2289
|
+
* },
|
|
2290
|
+
* {
|
|
2291
|
+
* "description": "",
|
|
2292
|
+
* "name": "Done",
|
|
2293
|
+
* "statusCategory": "DONE",
|
|
2294
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2295
|
+
* }
|
|
2296
|
+
* ],
|
|
2297
|
+
* "workflows": [
|
|
2298
|
+
* {
|
|
2299
|
+
* "defaultStatusMappings": [
|
|
2300
|
+
* {
|
|
2301
|
+
* "newStatusReference": "10011",
|
|
2302
|
+
* "oldStatusReference": "10010"
|
|
2303
|
+
* }
|
|
2304
|
+
* ],
|
|
2305
|
+
* "description": "",
|
|
2306
|
+
* "id": "10001",
|
|
2307
|
+
* "startPointLayout": {
|
|
2308
|
+
* "x": -100.00030899047852,
|
|
2309
|
+
* "y": -153.00020599365234
|
|
2310
|
+
* },
|
|
2311
|
+
* "statusMappings": [
|
|
2312
|
+
* {
|
|
2313
|
+
* "issueTypeId": "10002",
|
|
2314
|
+
* "projectId": "10003",
|
|
2315
|
+
* "statusMigrations": [
|
|
2316
|
+
* {
|
|
2317
|
+
* "newStatusReference": "10011",
|
|
2318
|
+
* "oldStatusReference": "10010"
|
|
2319
|
+
* }
|
|
2320
|
+
* ]
|
|
2321
|
+
* }
|
|
2322
|
+
* ],
|
|
2275
2323
|
* "statuses": [
|
|
2276
|
-
*
|
|
2277
|
-
*
|
|
2278
|
-
*
|
|
2279
|
-
*
|
|
2280
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2324
|
+
* {
|
|
2325
|
+
* "layout": {
|
|
2326
|
+
* "x": 114.99993896484375,
|
|
2327
|
+
* "y": -16
|
|
2281
2328
|
* },
|
|
2282
|
-
* {
|
|
2283
|
-
*
|
|
2284
|
-
*
|
|
2285
|
-
*
|
|
2286
|
-
*
|
|
2329
|
+
* "properties": {},
|
|
2330
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2331
|
+
* },
|
|
2332
|
+
* {
|
|
2333
|
+
* "layout": {
|
|
2334
|
+
* "x": 317.0000915527344,
|
|
2335
|
+
* "y": -16
|
|
2287
2336
|
* },
|
|
2288
|
-
* {
|
|
2289
|
-
*
|
|
2290
|
-
*
|
|
2291
|
-
*
|
|
2292
|
-
*
|
|
2293
|
-
*
|
|
2337
|
+
* "properties": {},
|
|
2338
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2339
|
+
* },
|
|
2340
|
+
* {
|
|
2341
|
+
* "layout": {
|
|
2342
|
+
* "x": 508.000244140625,
|
|
2343
|
+
* "y": -16
|
|
2344
|
+
* },
|
|
2345
|
+
* "properties": {},
|
|
2346
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2347
|
+
* }
|
|
2294
2348
|
* ],
|
|
2295
|
-
* "
|
|
2296
|
-
*
|
|
2297
|
-
*
|
|
2298
|
-
*
|
|
2299
|
-
*
|
|
2300
|
-
*
|
|
2301
|
-
*
|
|
2302
|
-
*
|
|
2303
|
-
*
|
|
2304
|
-
*
|
|
2305
|
-
*
|
|
2306
|
-
*
|
|
2307
|
-
*
|
|
2308
|
-
*
|
|
2309
|
-
*
|
|
2310
|
-
*
|
|
2311
|
-
*
|
|
2312
|
-
*
|
|
2313
|
-
*
|
|
2314
|
-
*
|
|
2315
|
-
*
|
|
2316
|
-
*
|
|
2317
|
-
*
|
|
2318
|
-
*
|
|
2319
|
-
*
|
|
2320
|
-
*
|
|
2321
|
-
*
|
|
2322
|
-
*
|
|
2323
|
-
*
|
|
2324
|
-
*
|
|
2325
|
-
*
|
|
2326
|
-
*
|
|
2327
|
-
*
|
|
2328
|
-
*
|
|
2329
|
-
*
|
|
2330
|
-
*
|
|
2331
|
-
*
|
|
2332
|
-
*
|
|
2333
|
-
*
|
|
2334
|
-
*
|
|
2335
|
-
*
|
|
2336
|
-
*
|
|
2337
|
-
*
|
|
2338
|
-
*
|
|
2339
|
-
*
|
|
2340
|
-
*
|
|
2341
|
-
*
|
|
2342
|
-
*
|
|
2343
|
-
*
|
|
2344
|
-
*
|
|
2345
|
-
*
|
|
2346
|
-
*
|
|
2347
|
-
*
|
|
2348
|
-
*
|
|
2349
|
-
*
|
|
2350
|
-
*
|
|
2351
|
-
*
|
|
2352
|
-
*
|
|
2353
|
-
*
|
|
2354
|
-
*
|
|
2355
|
-
*
|
|
2356
|
-
*
|
|
2357
|
-
*
|
|
2358
|
-
*
|
|
2359
|
-
*
|
|
2360
|
-
*
|
|
2361
|
-
*
|
|
2362
|
-
*
|
|
2363
|
-
*
|
|
2364
|
-
*
|
|
2365
|
-
*
|
|
2366
|
-
* "id": "11",
|
|
2367
|
-
* "name": "To Do",
|
|
2368
|
-
* "properties": {},
|
|
2369
|
-
* "to": {
|
|
2370
|
-
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2371
|
-
* },
|
|
2372
|
-
* "triggers": [],
|
|
2373
|
-
* "type": "GLOBAL",
|
|
2374
|
-
* "validators": []
|
|
2375
|
-
* },
|
|
2376
|
-
* {
|
|
2377
|
-
* "actions": [],
|
|
2378
|
-
* "description": "",
|
|
2379
|
-
* "from": [],
|
|
2380
|
-
* "id": "21",
|
|
2381
|
-
* "name": "In Progress",
|
|
2382
|
-
* "properties": {},
|
|
2383
|
-
* "to": {
|
|
2384
|
-
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2385
|
-
* },
|
|
2386
|
-
* "triggers": [],
|
|
2387
|
-
* "type": "GLOBAL",
|
|
2388
|
-
* "validators": []
|
|
2389
|
-
* },
|
|
2390
|
-
* {
|
|
2391
|
-
* "actions": [],
|
|
2392
|
-
* "description": "",
|
|
2393
|
-
* "from": [],
|
|
2394
|
-
* "id": "31",
|
|
2395
|
-
* "name": "Done",
|
|
2396
|
-
* "properties": {},
|
|
2397
|
-
* "to": {
|
|
2398
|
-
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2399
|
-
* },
|
|
2400
|
-
* "triggers": [],
|
|
2401
|
-
* "type": "GLOBAL",
|
|
2402
|
-
* "validators": []
|
|
2403
|
-
* }
|
|
2404
|
-
* ],
|
|
2405
|
-
* "version": {
|
|
2406
|
-
* "id": "6f6c988b-2590-4358-90c2-5f7960265592",
|
|
2407
|
-
* "versionNumber": 1
|
|
2408
|
-
* }
|
|
2409
|
-
* }
|
|
2410
|
-
* ]
|
|
2411
|
-
* },
|
|
2412
|
-
* "validationOptions": {
|
|
2413
|
-
* "levels": [
|
|
2414
|
-
* "ERROR",
|
|
2415
|
-
* "WARNING"
|
|
2416
|
-
* ]
|
|
2417
|
-
* }
|
|
2349
|
+
* "transitions": [
|
|
2350
|
+
* {
|
|
2351
|
+
* "actions": [],
|
|
2352
|
+
* "description": "",
|
|
2353
|
+
* "from": [],
|
|
2354
|
+
* "id": "1",
|
|
2355
|
+
* "name": "Create",
|
|
2356
|
+
* "properties": {},
|
|
2357
|
+
* "to": {
|
|
2358
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2359
|
+
* },
|
|
2360
|
+
* "triggers": [],
|
|
2361
|
+
* "type": "INITIAL",
|
|
2362
|
+
* "validators": []
|
|
2363
|
+
* },
|
|
2364
|
+
* {
|
|
2365
|
+
* "actions": [],
|
|
2366
|
+
* "description": "",
|
|
2367
|
+
* "from": [],
|
|
2368
|
+
* "id": "11",
|
|
2369
|
+
* "name": "To Do",
|
|
2370
|
+
* "properties": {},
|
|
2371
|
+
* "to": {
|
|
2372
|
+
* "statusReference": "f0b24de5-25e7-4fab-ab94-63d81db6c0c0"
|
|
2373
|
+
* },
|
|
2374
|
+
* "triggers": [],
|
|
2375
|
+
* "type": "GLOBAL",
|
|
2376
|
+
* "validators": []
|
|
2377
|
+
* },
|
|
2378
|
+
* {
|
|
2379
|
+
* "actions": [],
|
|
2380
|
+
* "description": "",
|
|
2381
|
+
* "from": [],
|
|
2382
|
+
* "id": "21",
|
|
2383
|
+
* "name": "In Progress",
|
|
2384
|
+
* "properties": {},
|
|
2385
|
+
* "to": {
|
|
2386
|
+
* "statusReference": "c7a35bf0-c127-4aa6-869f-4033730c61d8"
|
|
2387
|
+
* },
|
|
2388
|
+
* "triggers": [],
|
|
2389
|
+
* "type": "GLOBAL",
|
|
2390
|
+
* "validators": []
|
|
2391
|
+
* },
|
|
2392
|
+
* {
|
|
2393
|
+
* "actions": [],
|
|
2394
|
+
* "description": "",
|
|
2395
|
+
* "from": [],
|
|
2396
|
+
* "id": "31",
|
|
2397
|
+
* "name": "Done",
|
|
2398
|
+
* "properties": {},
|
|
2399
|
+
* "to": {
|
|
2400
|
+
* "statusReference": "6b3fc04d-3316-46c5-a257-65751aeb8849"
|
|
2401
|
+
* },
|
|
2402
|
+
* "triggers": [],
|
|
2403
|
+
* "type": "GLOBAL",
|
|
2404
|
+
* "validators": []
|
|
2405
|
+
* }
|
|
2406
|
+
* ],
|
|
2407
|
+
* "version": {
|
|
2408
|
+
* "id": "6f6c988b-2590-4358-90c2-5f7960265592",
|
|
2409
|
+
* "versionNumber": 1
|
|
2410
|
+
* }
|
|
2411
|
+
* }
|
|
2412
|
+
* ]
|
|
2413
|
+
* },
|
|
2414
|
+
* "validationOptions": {
|
|
2415
|
+
* "levels": [
|
|
2416
|
+
* "ERROR",
|
|
2417
|
+
* "WARNING"
|
|
2418
|
+
* ]
|
|
2419
|
+
* }
|
|
2418
2420
|
* }
|
|
2419
2421
|
*/
|
|
2420
2422
|
workflowUpdateValidateRequestBean: WorkflowUpdateValidateRequestBean;
|