@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
|
@@ -15,14 +15,18 @@ export interface Incident {
|
|
|
15
15
|
* Placeholder to support potential schema changes in the future.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
+
* ```
|
|
18
19
|
* 1
|
|
20
|
+
* ```
|
|
19
21
|
*/
|
|
20
22
|
schemaVersion: "1.0";
|
|
21
23
|
/**
|
|
22
24
|
* The identifier for the Incident. Must be unique for a given Provider.
|
|
23
25
|
*
|
|
24
26
|
* @example
|
|
27
|
+
* ```
|
|
25
28
|
* 111-222-333
|
|
29
|
+
* ```
|
|
26
30
|
*/
|
|
27
31
|
id: string;
|
|
28
32
|
/**
|
|
@@ -38,7 +42,9 @@ export interface Incident {
|
|
|
38
42
|
* what is currently stored will be ignored.
|
|
39
43
|
*
|
|
40
44
|
* @example
|
|
45
|
+
* ```
|
|
41
46
|
* 1523494301448
|
|
47
|
+
* ```
|
|
42
48
|
*/
|
|
43
49
|
updateSequenceNumber: number;
|
|
44
50
|
/**
|
|
@@ -46,10 +52,12 @@ export interface Incident {
|
|
|
46
52
|
* Provider.
|
|
47
53
|
*
|
|
48
54
|
* @example
|
|
55
|
+
* ```
|
|
49
56
|
* [
|
|
50
|
-
*
|
|
51
|
-
*
|
|
57
|
+
* "111-222-333",
|
|
58
|
+
* "444-555-666"
|
|
52
59
|
* ]
|
|
60
|
+
* ```
|
|
53
61
|
*/
|
|
54
62
|
affectedComponents: string[];
|
|
55
63
|
/**
|
|
@@ -58,7 +66,9 @@ export interface Incident {
|
|
|
58
66
|
* If not provided, will use the ID for display.
|
|
59
67
|
*
|
|
60
68
|
* @example
|
|
69
|
+
* ```
|
|
61
70
|
* Unable to log into VPN
|
|
71
|
+
* ```
|
|
62
72
|
*/
|
|
63
73
|
summary: string;
|
|
64
74
|
/**
|
|
@@ -66,7 +76,9 @@ export interface Incident {
|
|
|
66
76
|
* when creating Jira Issues.
|
|
67
77
|
*
|
|
68
78
|
* @example
|
|
79
|
+
* ```
|
|
69
80
|
* null
|
|
81
|
+
* ```
|
|
70
82
|
*/
|
|
71
83
|
description: string;
|
|
72
84
|
/**
|
|
@@ -77,7 +89,9 @@ export interface Incident {
|
|
|
77
89
|
* the user to the incident in that project).
|
|
78
90
|
*
|
|
79
91
|
* @example
|
|
92
|
+
* ```
|
|
80
93
|
* https://example.com/project/ITHELPDESK-9/summary
|
|
94
|
+
* ```
|
|
81
95
|
*/
|
|
82
96
|
url: string;
|
|
83
97
|
/**
|
|
@@ -86,7 +100,9 @@ export interface Incident {
|
|
|
86
100
|
* Expected format is an RFC3339 formatted string.
|
|
87
101
|
*
|
|
88
102
|
* @example
|
|
103
|
+
* ```
|
|
89
104
|
* 2018-01-20T23:27:25.000Z
|
|
105
|
+
* ```
|
|
90
106
|
*/
|
|
91
107
|
createdDate: string;
|
|
92
108
|
/**
|
|
@@ -96,7 +112,9 @@ export interface Incident {
|
|
|
96
112
|
* Expected format is an RFC3339 formatted string.
|
|
97
113
|
*
|
|
98
114
|
* @example
|
|
115
|
+
* ```
|
|
99
116
|
* 2018-01-20T23:27:25.000Z
|
|
117
|
+
* ```
|
|
100
118
|
*/
|
|
101
119
|
lastUpdated: string;
|
|
102
120
|
/**
|
|
@@ -114,7 +132,9 @@ export interface Incident {
|
|
|
114
132
|
* The current status of the Incident.
|
|
115
133
|
*
|
|
116
134
|
* @example
|
|
135
|
+
* ```
|
|
117
136
|
* open
|
|
137
|
+
* ```
|
|
118
138
|
*/
|
|
119
139
|
status: "open" | "resolved" | "unknown";
|
|
120
140
|
/**
|
|
@@ -126,7 +146,9 @@ export interface Incident {
|
|
|
126
146
|
* the type of the association being made
|
|
127
147
|
*
|
|
128
148
|
* @example
|
|
149
|
+
* ```
|
|
129
150
|
* issueIdOrKeys
|
|
151
|
+
* ```
|
|
130
152
|
*/
|
|
131
153
|
associationType?: "issueIdOrKeys" | "serviceIdOrKeys" | "ati:cloud:compass:event-source";
|
|
132
154
|
values?: string[];
|
|
@@ -148,10 +170,12 @@ export interface OperationsWorkspaceIds extends Record<string, unknown> {
|
|
|
148
170
|
* The IDs of Operations Workspaces that are available to this Jira site.
|
|
149
171
|
*
|
|
150
172
|
* @example
|
|
173
|
+
* ```
|
|
151
174
|
* [
|
|
152
|
-
*
|
|
153
|
-
*
|
|
175
|
+
* "111-222-333",
|
|
176
|
+
* "444-555-666"
|
|
154
177
|
* ]
|
|
178
|
+
* ```
|
|
155
179
|
*/
|
|
156
180
|
workspaceIds: string[];
|
|
157
181
|
}
|
|
@@ -171,14 +195,18 @@ export interface Review {
|
|
|
171
195
|
* Placeholder to support potential schema changes in the future.
|
|
172
196
|
*
|
|
173
197
|
* @example
|
|
198
|
+
* ```
|
|
174
199
|
* 1
|
|
200
|
+
* ```
|
|
175
201
|
*/
|
|
176
202
|
schemaVersion: "1.0";
|
|
177
203
|
/**
|
|
178
204
|
* The identifier for the Review. Must be unique for a given Provider.
|
|
179
205
|
*
|
|
180
206
|
* @example
|
|
207
|
+
* ```
|
|
181
208
|
* 111-222-333
|
|
209
|
+
* ```
|
|
182
210
|
*/
|
|
183
211
|
id: string;
|
|
184
212
|
/**
|
|
@@ -194,7 +222,9 @@ export interface Review {
|
|
|
194
222
|
* is currently stored will be ignored.
|
|
195
223
|
*
|
|
196
224
|
* @example
|
|
225
|
+
* ```
|
|
197
226
|
* 1523494301448
|
|
227
|
+
* ```
|
|
198
228
|
*/
|
|
199
229
|
updateSequenceNumber: number;
|
|
200
230
|
/**
|
|
@@ -202,10 +232,12 @@ export interface Review {
|
|
|
202
232
|
* Provider.
|
|
203
233
|
*
|
|
204
234
|
* @example
|
|
235
|
+
* ```
|
|
205
236
|
* [
|
|
206
|
-
*
|
|
207
|
-
*
|
|
237
|
+
* "111-222-333",
|
|
238
|
+
* "444-555-666"
|
|
208
239
|
* ]
|
|
240
|
+
* ```
|
|
209
241
|
*/
|
|
210
242
|
reviews: string[];
|
|
211
243
|
/**
|
|
@@ -215,7 +247,9 @@ export interface Review {
|
|
|
215
247
|
* If not provided, will use the ID for display.
|
|
216
248
|
*
|
|
217
249
|
* @example
|
|
250
|
+
* ```
|
|
218
251
|
* PIR - Unable to log into VPN
|
|
252
|
+
* ```
|
|
219
253
|
*/
|
|
220
254
|
summary: string;
|
|
221
255
|
/**
|
|
@@ -223,7 +257,9 @@ export interface Review {
|
|
|
223
257
|
* used when creating Jira Issues.
|
|
224
258
|
*
|
|
225
259
|
* @example
|
|
260
|
+
* ```
|
|
226
261
|
* null
|
|
262
|
+
* ```
|
|
227
263
|
*/
|
|
228
264
|
description: string;
|
|
229
265
|
/**
|
|
@@ -234,7 +270,9 @@ export interface Review {
|
|
|
234
270
|
* the user to the review in that project).
|
|
235
271
|
*
|
|
236
272
|
* @example
|
|
273
|
+
* ```
|
|
237
274
|
* https://example.com/project/ITHELPDESK-9/summary
|
|
275
|
+
* ```
|
|
238
276
|
*/
|
|
239
277
|
url: string;
|
|
240
278
|
/**
|
|
@@ -243,7 +281,9 @@ export interface Review {
|
|
|
243
281
|
* Expected format is an RFC3339 formatted string.
|
|
244
282
|
*
|
|
245
283
|
* @example
|
|
284
|
+
* ```
|
|
246
285
|
* 2018-01-20T23:27:25.000Z
|
|
286
|
+
* ```
|
|
247
287
|
*/
|
|
248
288
|
createdDate: string;
|
|
249
289
|
/**
|
|
@@ -253,7 +293,9 @@ export interface Review {
|
|
|
253
293
|
* Expected format is an RFC3339 formatted string.
|
|
254
294
|
*
|
|
255
295
|
* @example
|
|
296
|
+
* ```
|
|
256
297
|
* 2018-01-20T23:27:25.000Z
|
|
298
|
+
* ```
|
|
257
299
|
*/
|
|
258
300
|
lastUpdated: string;
|
|
259
301
|
/**
|
|
@@ -262,7 +304,9 @@ export interface Review {
|
|
|
262
304
|
* The current status of the Post-Incident Review.
|
|
263
305
|
*
|
|
264
306
|
* @example
|
|
307
|
+
* ```
|
|
265
308
|
* open
|
|
309
|
+
* ```
|
|
266
310
|
*/
|
|
267
311
|
status: "in progress" | "outstanding actions" | "completed" | "unknown";
|
|
268
312
|
/**
|
|
@@ -274,7 +318,9 @@ export interface Review {
|
|
|
274
318
|
* the type of the association being made
|
|
275
319
|
*
|
|
276
320
|
* @example
|
|
321
|
+
* ```
|
|
277
322
|
* issueIdOrKeys
|
|
323
|
+
* ```
|
|
278
324
|
*/
|
|
279
325
|
associationType?: "issueIdOrKeys" | "serviceIdOrKeys" | "ati:cloud:compass:event-source";
|
|
280
326
|
values?: string[];
|
|
@@ -303,10 +349,12 @@ export type SubmitIncidentsRequest = ({
|
|
|
303
349
|
* be supplied, keys cannot contain ':' or start with '_'.
|
|
304
350
|
*
|
|
305
351
|
* @example
|
|
352
|
+
* ```
|
|
306
353
|
* {
|
|
307
|
-
*
|
|
308
|
-
*
|
|
354
|
+
* "accountId": "account-234",
|
|
355
|
+
* "projectId": "project-123"
|
|
309
356
|
* }
|
|
357
|
+
* ```
|
|
310
358
|
*/
|
|
311
359
|
properties?: {
|
|
312
360
|
[key: string]: string;
|
|
@@ -324,7 +372,9 @@ export type SubmitIncidentsRequest = ({
|
|
|
324
372
|
* An optional name of the source of the incidents.
|
|
325
373
|
*
|
|
326
374
|
* @example
|
|
375
|
+
* ```
|
|
327
376
|
* Atlassian Operations Platform 2.1.0
|
|
377
|
+
* ```
|
|
328
378
|
*/
|
|
329
379
|
product?: string;
|
|
330
380
|
};
|
|
@@ -345,10 +395,12 @@ export type SubmitIncidentsRequest = ({
|
|
|
345
395
|
* be supplied, keys cannot contain ':' or start with '_'.
|
|
346
396
|
*
|
|
347
397
|
* @example
|
|
398
|
+
* ```
|
|
348
399
|
* {
|
|
349
|
-
*
|
|
350
|
-
*
|
|
400
|
+
* "accountId": "account-234",
|
|
401
|
+
* "projectId": "project-123"
|
|
351
402
|
* }
|
|
403
|
+
* ```
|
|
352
404
|
*/
|
|
353
405
|
properties?: {
|
|
354
406
|
[key: string]: string;
|
|
@@ -366,7 +418,9 @@ export type SubmitIncidentsRequest = ({
|
|
|
366
418
|
* An optional name of the source of the incidents.
|
|
367
419
|
*
|
|
368
420
|
* @example
|
|
421
|
+
* ```
|
|
369
422
|
* Atlassian Operations Platform 2.1.0
|
|
423
|
+
* ```
|
|
370
424
|
*/
|
|
371
425
|
product?: string;
|
|
372
426
|
};
|
|
@@ -391,10 +445,12 @@ export interface SubmitIncidentsResponse extends Record<string, unknown> {
|
|
|
391
445
|
* out of order is not considered a failed submission.
|
|
392
446
|
*
|
|
393
447
|
* @example
|
|
448
|
+
* ```
|
|
394
449
|
* [
|
|
395
|
-
*
|
|
396
|
-
*
|
|
450
|
+
* "111-222-333",
|
|
451
|
+
* "444-555-666"
|
|
397
452
|
* ]
|
|
453
|
+
* ```
|
|
398
454
|
*/
|
|
399
455
|
acceptedIncidents?: string[];
|
|
400
456
|
/**
|
|
@@ -434,10 +490,12 @@ export interface SubmitOperationsWorkspacesRequest extends Record<string, unknow
|
|
|
434
490
|
* The IDs of Operations Workspaces that are available to this Jira site.
|
|
435
491
|
*
|
|
436
492
|
* @example
|
|
493
|
+
* ```
|
|
437
494
|
* [
|
|
438
|
-
*
|
|
439
|
-
*
|
|
495
|
+
* "111-222-333",
|
|
496
|
+
* "444-555-666"
|
|
440
497
|
* ]
|
|
498
|
+
* ```
|
|
441
499
|
*/
|
|
442
500
|
workspaceIds: string[];
|
|
443
501
|
}
|
|
@@ -454,10 +512,12 @@ export interface SubmitOperationsWorkspacesResponse extends Record<string, unkno
|
|
|
454
512
|
* request.
|
|
455
513
|
*
|
|
456
514
|
* @example
|
|
515
|
+
* ```
|
|
457
516
|
* [
|
|
458
|
-
*
|
|
459
|
-
*
|
|
517
|
+
* "111-222-333",
|
|
518
|
+
* "444-555-666"
|
|
460
519
|
* ]
|
|
520
|
+
* ```
|
|
461
521
|
*/
|
|
462
522
|
acceptedWorkspaceIds?: string[];
|
|
463
523
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/operations.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAyC;
|
|
1
|
+
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/operations.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,13 +7,15 @@ import { type IssueKey, type Properties, type ProviderMetadata } from "./common"
|
|
|
7
7
|
* An association type referencing issues in Jira.
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
10
|
+
* ```
|
|
10
11
|
* {
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
12
|
+
* "associationType": "issueKeys",
|
|
13
|
+
* "values": [
|
|
14
|
+
* "ABC-123",
|
|
15
|
+
* "ABC-456"
|
|
16
|
+
* ]
|
|
16
17
|
* }
|
|
18
|
+
* ```
|
|
17
19
|
* @category Models
|
|
18
20
|
*/
|
|
19
21
|
export interface IssueKeysAssociation extends Record<string, unknown> {
|
|
@@ -21,7 +23,9 @@ export interface IssueKeysAssociation extends Record<string, unknown> {
|
|
|
21
23
|
* Defines the asssociation type.
|
|
22
24
|
*
|
|
23
25
|
* @example
|
|
26
|
+
* ```
|
|
24
27
|
* issueKeys
|
|
28
|
+
* ```
|
|
25
29
|
*/
|
|
26
30
|
associationType: "issueKeys";
|
|
27
31
|
/**
|
|
@@ -46,14 +50,18 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
46
50
|
* Placeholder to support potential schema changes in the future.
|
|
47
51
|
*
|
|
48
52
|
* @example
|
|
53
|
+
* ```
|
|
49
54
|
* 1
|
|
55
|
+
* ```
|
|
50
56
|
*/
|
|
51
57
|
schemaVersion?: "1.0";
|
|
52
58
|
/**
|
|
53
59
|
* The identifier for the Remote Link. Must be unique for a given Provider.
|
|
54
60
|
*
|
|
55
61
|
* @example
|
|
62
|
+
* ```
|
|
56
63
|
* 111-222-333
|
|
64
|
+
* ```
|
|
57
65
|
*/
|
|
58
66
|
id: string;
|
|
59
67
|
/**
|
|
@@ -70,7 +78,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
70
78
|
* stored will be ignored.
|
|
71
79
|
*
|
|
72
80
|
* @example
|
|
81
|
+
* ```
|
|
73
82
|
* 1523494301448
|
|
83
|
+
* ```
|
|
74
84
|
*/
|
|
75
85
|
updateSequenceNumber: number;
|
|
76
86
|
/**
|
|
@@ -79,7 +89,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
79
89
|
* Will be shown in the UI.
|
|
80
90
|
*
|
|
81
91
|
* @example
|
|
92
|
+
* ```
|
|
82
93
|
* Remote Link #42
|
|
94
|
+
* ```
|
|
83
95
|
*/
|
|
84
96
|
displayName: string;
|
|
85
97
|
/** The URL to this Remote Link in your system. */
|
|
@@ -90,7 +102,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
90
102
|
* 'security', 'logFile', 'prototype', 'coverage', 'bugReport' and 'other'
|
|
91
103
|
*
|
|
92
104
|
* @example
|
|
105
|
+
* ```
|
|
93
106
|
* security
|
|
107
|
+
* ```
|
|
94
108
|
*/
|
|
95
109
|
type: "document" | "alert" | "test" | "security" | "logFile" | "prototype" | "coverage" | "bugReport" | "other";
|
|
96
110
|
/**
|
|
@@ -99,7 +113,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
99
113
|
* This may be anything that makes sense in your system.
|
|
100
114
|
*
|
|
101
115
|
* @example
|
|
116
|
+
* ```
|
|
102
117
|
* Remote Link #42 with more information in this description
|
|
118
|
+
* ```
|
|
103
119
|
*/
|
|
104
120
|
description?: string;
|
|
105
121
|
/**
|
|
@@ -107,7 +123,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
107
123
|
* Link was last updated.
|
|
108
124
|
*
|
|
109
125
|
* @example
|
|
126
|
+
* ```
|
|
110
127
|
* 2018-01-20T23:27:25.000Z
|
|
128
|
+
* ```
|
|
111
129
|
*/
|
|
112
130
|
lastUpdated: string;
|
|
113
131
|
/** The entities to associate the Remote Link information with. */
|
|
@@ -116,7 +134,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
116
134
|
* Defines the asssociation type.
|
|
117
135
|
*
|
|
118
136
|
* @example
|
|
137
|
+
* ```
|
|
119
138
|
* issueKeys
|
|
139
|
+
* ```
|
|
120
140
|
*/
|
|
121
141
|
associationType: "issueKeys";
|
|
122
142
|
/**
|
|
@@ -133,7 +153,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
133
153
|
* Defines the asssociation type.
|
|
134
154
|
*
|
|
135
155
|
* @example
|
|
156
|
+
* ```
|
|
136
157
|
* serviceIdOrKeys
|
|
158
|
+
* ```
|
|
137
159
|
*/
|
|
138
160
|
associationType: "serviceIdOrKeys";
|
|
139
161
|
/**
|
|
@@ -159,7 +181,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
159
181
|
* [Lozenge](https://atlaskit.atlassian.com/packages/core/lozenge) component.
|
|
160
182
|
*
|
|
161
183
|
* @example
|
|
184
|
+
* ```
|
|
162
185
|
* inprogress
|
|
186
|
+
* ```
|
|
163
187
|
*/
|
|
164
188
|
appearance: "default" | "inprogress" | "moved" | "new" | "removed" | "prototype" | "success";
|
|
165
189
|
/**
|
|
@@ -168,7 +192,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
168
192
|
* Will be shown in the UI.
|
|
169
193
|
*
|
|
170
194
|
* @example
|
|
195
|
+
* ```
|
|
171
196
|
* ANOMALOUS
|
|
197
|
+
* ```
|
|
172
198
|
*/
|
|
173
199
|
label: string;
|
|
174
200
|
} & {
|
|
@@ -183,10 +209,12 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
183
209
|
* `attributeMap` must be passed in.
|
|
184
210
|
*
|
|
185
211
|
* @example
|
|
212
|
+
* ```
|
|
186
213
|
* [
|
|
187
|
-
*
|
|
188
|
-
*
|
|
214
|
+
* "action-111-222-333",
|
|
215
|
+
* "action-444-555-666"
|
|
189
216
|
* ]
|
|
217
|
+
* ```
|
|
190
218
|
*/
|
|
191
219
|
actionIds?: string[];
|
|
192
220
|
/**
|
|
@@ -204,7 +232,9 @@ export interface RemoteLinkData extends Record<string, unknown> {
|
|
|
204
232
|
* A service id or service key.
|
|
205
233
|
*
|
|
206
234
|
* @example
|
|
235
|
+
* ```
|
|
207
236
|
* some-service-key
|
|
237
|
+
* ```
|
|
208
238
|
* @category Models
|
|
209
239
|
*/
|
|
210
240
|
export type ServiceIdOrKeys = string;
|
|
@@ -214,12 +244,14 @@ export type ServiceIdOrKeys = string;
|
|
|
214
244
|
* An association type referencing service id or keys.
|
|
215
245
|
*
|
|
216
246
|
* @example
|
|
247
|
+
* ```
|
|
217
248
|
* {
|
|
218
|
-
*
|
|
219
|
-
*
|
|
220
|
-
*
|
|
221
|
-
*
|
|
249
|
+
* "associationType": "serviceIdOrKeys",
|
|
250
|
+
* "values": [
|
|
251
|
+
* "some-service-key"
|
|
252
|
+
* ]
|
|
222
253
|
* }
|
|
254
|
+
* ```
|
|
223
255
|
* @category Models
|
|
224
256
|
*/
|
|
225
257
|
export interface ServiceIdOrKeysAssociation extends Record<string, unknown> {
|
|
@@ -227,7 +259,9 @@ export interface ServiceIdOrKeysAssociation extends Record<string, unknown> {
|
|
|
227
259
|
* Defines the asssociation type.
|
|
228
260
|
*
|
|
229
261
|
* @example
|
|
262
|
+
* ```
|
|
230
263
|
* serviceIdOrKeys
|
|
264
|
+
* ```
|
|
231
265
|
*/
|
|
232
266
|
associationType: "serviceIdOrKeys";
|
|
233
267
|
/**
|
|
@@ -267,10 +301,12 @@ export interface SubmitRemoteLinksRequest extends Record<string, unknown> {
|
|
|
267
301
|
* contain ':' or start with '_'.
|
|
268
302
|
*
|
|
269
303
|
* @example
|
|
304
|
+
* ```
|
|
270
305
|
* {
|
|
271
|
-
*
|
|
272
|
-
*
|
|
306
|
+
* "accountId": "account-234",
|
|
307
|
+
* "projectId": "project-123"
|
|
273
308
|
* }
|
|
309
|
+
* ```
|
|
274
310
|
*/
|
|
275
311
|
properties?: Properties;
|
|
276
312
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remoteLinks.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/remoteLinks.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAyC;AAGzC,qCAKkB;
|
|
1
|
+
{"version":3,"file":"remoteLinks.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/remoteLinks.ts"],"names":[],"mappings":"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"}
|