@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
|
@@ -21,10 +21,12 @@ export interface SubmitDevopsComponentsRequest extends Record<string, unknown> {
|
|
|
21
21
|
* be supplied, keys cannot contain ':' or start with '_'.
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
|
+
* ```
|
|
24
25
|
* {
|
|
25
|
-
*
|
|
26
|
-
*
|
|
26
|
+
* "accountId": "account-234",
|
|
27
|
+
* "projectId": "project-123"
|
|
27
28
|
* }
|
|
29
|
+
* ```
|
|
28
30
|
*/
|
|
29
31
|
properties?: {
|
|
30
32
|
[key: string]: string;
|
|
@@ -43,7 +45,9 @@ export interface SubmitDevopsComponentsRequest extends Record<string, unknown> {
|
|
|
43
45
|
* An optional name of the source of the incidents.
|
|
44
46
|
*
|
|
45
47
|
* @example
|
|
48
|
+
* ```
|
|
46
49
|
* Atlassian Operations Platform 2.1.0
|
|
50
|
+
* ```
|
|
47
51
|
*/
|
|
48
52
|
product?: string;
|
|
49
53
|
};
|
|
@@ -65,10 +69,12 @@ export interface SubmitDevopsComponentsResponse extends Record<string, unknown>
|
|
|
65
69
|
* out of order is not considered a failed submission.
|
|
66
70
|
*
|
|
67
71
|
* @example
|
|
72
|
+
* ```
|
|
68
73
|
* [
|
|
69
|
-
*
|
|
70
|
-
*
|
|
74
|
+
* "111-222-333",
|
|
75
|
+
* "444-555-666"
|
|
71
76
|
* ]
|
|
77
|
+
* ```
|
|
72
78
|
*/
|
|
73
79
|
acceptedComponents?: string[];
|
|
74
80
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devOpsComponents.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/devOpsComponents.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAyC;
|
|
1
|
+
{"version":3,"file":"devOpsComponents.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/devOpsComponents.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAyC;AAwGzC,SAAgB,yCAAyC,CACvD,uBAAkE;IAElE,uBAAuB,CAAC,QAAQ,CAC9B,+BAA+B,EAC/B,OAAC;SACE,MAAM,CAAC;QACN,UAAU,EAAE,OAAC;aACV,MAAM,CAAC,EAAE,CAAC;aACV,QAAQ,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;aAC7B,WAAW,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YACxB,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBAChC,GAAG,CAAC,QAAQ,CAAC;oBACX,IAAI,EAAE,OAAC,CAAC,YAAY,CAAC,MAAM;oBAC3B,IAAI,EAAE,EAAE;oBACR,OAAO,EAAE,kCAAkC;iBAC5C,CAAC,CAAC;YACL,CAAC;QACH,CAAC,CAAC;aACD,QAAQ,EAAE;QACb,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,OAAO,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC;QACjD,gBAAgB,EAAE,OAAC;aAChB,MAAM,CAAC;YACN,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SAC/B,CAAC;aACD,MAAM,EAAE;aACR,QAAQ,EAAE;KACd,CAAC;SACD,QAAQ,CAAC,OAAC,CAAC,OAAO,EAAE,CAAC;SACrB,QAAQ,CAAC,+BAA+B,CAAC,CAC7C,CAAC;IACF,uBAAuB,CAAC,QAAQ,CAC9B,gCAAgC,EAChC,OAAC;SACE,MAAM,CAAC;QACN,kBAAkB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;QAClD,gBAAgB,EAAE,OAAC;aAChB,MAAM,CAAC,EAAE,CAAC;aACV,QAAQ,CAAC,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,OAAO,EAAE,CAAC,CAAC;aAC9B,QAAQ,EAAE;QACb,kBAAkB,EAAE,OAAC;aAClB,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC;aACnD,QAAQ,EAAE;KACd,CAAC;SACD,QAAQ,CAAC,OAAC,CAAC,OAAO,EAAE,CAAC;SACrB,QAAQ,CAAC,gCAAgC,CAAC,CAC9C,CAAC;AACJ,CAAC;AA/CD,8FA+CC"}
|
|
@@ -14,7 +14,9 @@ export interface Author extends Record<string, unknown> {
|
|
|
14
14
|
* is 255 characters.
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
|
+
* ```
|
|
17
18
|
* Jane Doe
|
|
19
|
+
* ```
|
|
18
20
|
* @deprecated
|
|
19
21
|
*/
|
|
20
22
|
name?: string;
|
|
@@ -23,7 +25,9 @@ export interface Author extends Record<string, unknown> {
|
|
|
23
25
|
* length is 255 characters.
|
|
24
26
|
*
|
|
25
27
|
* @example
|
|
28
|
+
* ```
|
|
26
29
|
* jane_doe@atlassian.com
|
|
30
|
+
* ```
|
|
27
31
|
*/
|
|
28
32
|
email?: string;
|
|
29
33
|
/**
|
|
@@ -32,7 +36,9 @@ export interface Author extends Record<string, unknown> {
|
|
|
32
36
|
* characters.
|
|
33
37
|
*
|
|
34
38
|
* @example
|
|
39
|
+
* ```
|
|
35
40
|
* jdoe
|
|
41
|
+
* ```
|
|
36
42
|
* @deprecated
|
|
37
43
|
*/
|
|
38
44
|
username?: string;
|
|
@@ -40,7 +46,9 @@ export interface Author extends Record<string, unknown> {
|
|
|
40
46
|
* Deprecated. The URL of the profile for this user. Max length is 2000 characters.
|
|
41
47
|
*
|
|
42
48
|
* @example
|
|
49
|
+
* ```
|
|
43
50
|
* https://atlassian.com/account/jane_doe
|
|
51
|
+
* ```
|
|
44
52
|
* @deprecated
|
|
45
53
|
*/
|
|
46
54
|
url?: string;
|
|
@@ -48,7 +56,9 @@ export interface Author extends Record<string, unknown> {
|
|
|
48
56
|
* Deprecated. The URL of the avatar for this user. Max length is 2000 characters.
|
|
49
57
|
*
|
|
50
58
|
* @example
|
|
59
|
+
* ```
|
|
51
60
|
* https://atlassian.com/account/jane_doe/avatar/32
|
|
61
|
+
* ```
|
|
52
62
|
* @deprecated
|
|
53
63
|
*/
|
|
54
64
|
avatar?: string;
|
|
@@ -69,7 +79,9 @@ export interface Branch extends Record<string, unknown> {
|
|
|
69
79
|
* is 1024 characters.
|
|
70
80
|
*
|
|
71
81
|
* @example
|
|
82
|
+
* ```
|
|
72
83
|
* c6c7c750-cee2-48e2-b920-d7706dfd11f9
|
|
84
|
+
* ```
|
|
73
85
|
*/
|
|
74
86
|
id: string;
|
|
75
87
|
/**
|
|
@@ -77,10 +89,12 @@ export interface Branch extends Record<string, unknown> {
|
|
|
77
89
|
* Jira issue keys.
|
|
78
90
|
*
|
|
79
91
|
* @example
|
|
92
|
+
* ```
|
|
80
93
|
* [
|
|
81
94
|
* "ISSUE-1",
|
|
82
95
|
* "TEST-2"
|
|
83
96
|
* ]
|
|
97
|
+
* ```
|
|
84
98
|
*/
|
|
85
99
|
issueKeys: string[];
|
|
86
100
|
/**
|
|
@@ -93,14 +107,18 @@ export interface Branch extends Record<string, unknown> {
|
|
|
93
107
|
* what is currently stored will be ignored.
|
|
94
108
|
*
|
|
95
109
|
* @example
|
|
110
|
+
* ```
|
|
96
111
|
* 1523494301248
|
|
112
|
+
* ```
|
|
97
113
|
*/
|
|
98
114
|
updateSequenceId: number;
|
|
99
115
|
/**
|
|
100
116
|
* The name of the branch. Max length is 512 characters.
|
|
101
117
|
*
|
|
102
118
|
* @example
|
|
119
|
+
* ```
|
|
103
120
|
* master
|
|
121
|
+
* ```
|
|
104
122
|
*/
|
|
105
123
|
name: string;
|
|
106
124
|
/**
|
|
@@ -114,14 +132,18 @@ export interface Branch extends Record<string, unknown> {
|
|
|
114
132
|
* 2000 characters.
|
|
115
133
|
*
|
|
116
134
|
* @example
|
|
135
|
+
* ```
|
|
117
136
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/pull-requests/new
|
|
137
|
+
* ```
|
|
118
138
|
*/
|
|
119
139
|
createPullRequestUrl?: string;
|
|
120
140
|
/**
|
|
121
141
|
* The URL of the branch. Max length is 2000 characters.
|
|
122
142
|
*
|
|
123
143
|
* @example
|
|
144
|
+
* ```
|
|
124
145
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/branch/master
|
|
146
|
+
* ```
|
|
125
147
|
*/
|
|
126
148
|
url: string;
|
|
127
149
|
}
|
|
@@ -141,7 +163,9 @@ export interface Commit extends Record<string, unknown> {
|
|
|
141
163
|
* allowed. Max length is 1024 characters
|
|
142
164
|
*
|
|
143
165
|
* @example
|
|
166
|
+
* ```
|
|
144
167
|
* a7727ee6350c33cdf90826dc21abaa26a5704370
|
|
168
|
+
* ```
|
|
145
169
|
*/
|
|
146
170
|
id: string;
|
|
147
171
|
/**
|
|
@@ -149,10 +173,12 @@ export interface Commit extends Record<string, unknown> {
|
|
|
149
173
|
* Jira issue keys.
|
|
150
174
|
*
|
|
151
175
|
* @example
|
|
176
|
+
* ```
|
|
152
177
|
* [
|
|
153
178
|
* "ISSUE-1",
|
|
154
179
|
* "TEST-2"
|
|
155
180
|
* ]
|
|
181
|
+
* ```
|
|
156
182
|
*/
|
|
157
183
|
issueKeys: string[];
|
|
158
184
|
/**
|
|
@@ -165,7 +191,9 @@ export interface Commit extends Record<string, unknown> {
|
|
|
165
191
|
* what is currently stored will be ignored.
|
|
166
192
|
*
|
|
167
193
|
* @example
|
|
194
|
+
* ```
|
|
168
195
|
* 1523494301248
|
|
196
|
+
* ```
|
|
169
197
|
*/
|
|
170
198
|
updateSequenceId: number;
|
|
171
199
|
/**
|
|
@@ -178,7 +206,9 @@ export interface Commit extends Record<string, unknown> {
|
|
|
178
206
|
* The set of flags for this commit
|
|
179
207
|
*
|
|
180
208
|
* @example
|
|
209
|
+
* ```
|
|
181
210
|
* [MERGE_COMMIT]
|
|
211
|
+
* ```
|
|
182
212
|
*/
|
|
183
213
|
flags?: "MERGE_COMMIT"[];
|
|
184
214
|
/**
|
|
@@ -186,7 +216,9 @@ export interface Commit extends Record<string, unknown> {
|
|
|
186
216
|
* supplied, it will be truncated down to 1024 characters.
|
|
187
217
|
*
|
|
188
218
|
* @example
|
|
219
|
+
* ```
|
|
189
220
|
* README.md edited online with Bitbucket
|
|
221
|
+
* ```
|
|
190
222
|
*/
|
|
191
223
|
message: string;
|
|
192
224
|
/**
|
|
@@ -199,14 +231,18 @@ export interface Commit extends Record<string, unknown> {
|
|
|
199
231
|
* The total number of files added, removed, or modified by this commit
|
|
200
232
|
*
|
|
201
233
|
* @example
|
|
234
|
+
* ```
|
|
202
235
|
* 1
|
|
236
|
+
* ```
|
|
203
237
|
*/
|
|
204
238
|
fileCount: number;
|
|
205
239
|
/**
|
|
206
240
|
* The URL of this commit. Max length is 2000 characters.
|
|
207
241
|
*
|
|
208
242
|
* @example
|
|
243
|
+
* ```
|
|
209
244
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/commits/a7727ee6350c33cdf90826dc21abaa26a5704370
|
|
245
|
+
* ```
|
|
210
246
|
*/
|
|
211
247
|
url: string;
|
|
212
248
|
/**
|
|
@@ -220,7 +256,9 @@ export interface Commit extends Record<string, unknown> {
|
|
|
220
256
|
* format.
|
|
221
257
|
*
|
|
222
258
|
* @example
|
|
259
|
+
* ```
|
|
223
260
|
* 2016-10-31T23:27:25+00:00
|
|
261
|
+
* ```
|
|
224
262
|
*/
|
|
225
263
|
authorTimestamp: string;
|
|
226
264
|
/**
|
|
@@ -228,7 +266,9 @@ export interface Commit extends Record<string, unknown> {
|
|
|
228
266
|
* characters.
|
|
229
267
|
*
|
|
230
268
|
* @example
|
|
269
|
+
* ```
|
|
231
270
|
* a7727ee
|
|
271
|
+
* ```
|
|
232
272
|
*/
|
|
233
273
|
displayId: string;
|
|
234
274
|
}
|
|
@@ -260,7 +300,9 @@ export interface DevInformation extends Record<string, unknown> {
|
|
|
260
300
|
* also processed slower in comparison to "NORMAL" operations.
|
|
261
301
|
*
|
|
262
302
|
* @example
|
|
303
|
+
* ```
|
|
263
304
|
* NORMAL
|
|
305
|
+
* ```
|
|
264
306
|
*/
|
|
265
307
|
operationType?: "NORMAL" | "BACKFILL";
|
|
266
308
|
/**
|
|
@@ -347,35 +389,45 @@ export interface File extends Record<string, unknown> {
|
|
|
347
389
|
* The path of the file. Max length is 1024 characters.
|
|
348
390
|
*
|
|
349
391
|
* @example
|
|
392
|
+
* ```
|
|
350
393
|
* /home/user/src/atlassian-connect-jira-example/README.md
|
|
394
|
+
* ```
|
|
351
395
|
*/
|
|
352
396
|
path: string;
|
|
353
397
|
/**
|
|
354
398
|
* The URL of this file. Max length is 2000 characters.
|
|
355
399
|
*
|
|
356
400
|
* @example
|
|
401
|
+
* ```
|
|
357
402
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/a7727ee6350c33cdf90826dc21abaa26a5704370/README.md
|
|
403
|
+
* ```
|
|
358
404
|
*/
|
|
359
405
|
url: string;
|
|
360
406
|
/**
|
|
361
407
|
* The operation performed on this file
|
|
362
408
|
*
|
|
363
409
|
* @example
|
|
410
|
+
* ```
|
|
364
411
|
* MODIFIED
|
|
412
|
+
* ```
|
|
365
413
|
*/
|
|
366
414
|
changeType: "ADDED" | "COPIED" | "DELETED" | "MODIFIED" | "MOVED" | "UNKNOWN";
|
|
367
415
|
/**
|
|
368
416
|
* Number of lines added to the file
|
|
369
417
|
*
|
|
370
418
|
* @example
|
|
419
|
+
* ```
|
|
371
420
|
* 0
|
|
421
|
+
* ```
|
|
372
422
|
*/
|
|
373
423
|
linesAdded: number;
|
|
374
424
|
/**
|
|
375
425
|
* Number of lines removed from the file
|
|
376
426
|
*
|
|
377
427
|
* @example
|
|
428
|
+
* ```
|
|
378
429
|
* 1
|
|
430
|
+
* ```
|
|
379
431
|
*/
|
|
380
432
|
linesRemoved: number;
|
|
381
433
|
}
|
|
@@ -395,7 +447,9 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
395
447
|
* is 1024 characters
|
|
396
448
|
*
|
|
397
449
|
* @example
|
|
450
|
+
* ```
|
|
398
451
|
* c6c7c750-cee2-48e2-b920-d7706dfd11f9
|
|
452
|
+
* ```
|
|
399
453
|
*/
|
|
400
454
|
id: string;
|
|
401
455
|
/**
|
|
@@ -403,10 +457,12 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
403
457
|
* Jira issue keys.
|
|
404
458
|
*
|
|
405
459
|
* @example
|
|
460
|
+
* ```
|
|
406
461
|
* [
|
|
407
462
|
* "ISSUE-1",
|
|
408
463
|
* "TEST-2"
|
|
409
464
|
* ]
|
|
465
|
+
* ```
|
|
410
466
|
*/
|
|
411
467
|
issueKeys: string[];
|
|
412
468
|
/**
|
|
@@ -419,7 +475,9 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
419
475
|
* what is currently stored will be ignored.
|
|
420
476
|
*
|
|
421
477
|
* @example
|
|
478
|
+
* ```
|
|
422
479
|
* 1523494301248
|
|
480
|
+
* ```
|
|
423
481
|
*/
|
|
424
482
|
updateSequenceId: number;
|
|
425
483
|
/**
|
|
@@ -427,14 +485,18 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
427
485
|
* given in the order OPEN, MERGED, DECLINED, UNKNOWN
|
|
428
486
|
*
|
|
429
487
|
* @example
|
|
488
|
+
* ```
|
|
430
489
|
* OPEN
|
|
490
|
+
* ```
|
|
431
491
|
*/
|
|
432
492
|
status: "OPEN" | "MERGED" | "DECLINED" | "UNKNOWN";
|
|
433
493
|
/**
|
|
434
494
|
* Title of the pull request. Max length is 1024 characters.
|
|
435
495
|
*
|
|
436
496
|
* @example
|
|
497
|
+
* ```
|
|
437
498
|
* Pull request 2, fixing all the issues caused by pull request #1
|
|
499
|
+
* ```
|
|
438
500
|
*/
|
|
439
501
|
title: string;
|
|
440
502
|
/**
|
|
@@ -447,14 +509,18 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
447
509
|
* The number of comments on the pull request
|
|
448
510
|
*
|
|
449
511
|
* @example
|
|
512
|
+
* ```
|
|
450
513
|
* 42
|
|
514
|
+
* ```
|
|
451
515
|
*/
|
|
452
516
|
commentCount: number;
|
|
453
517
|
/**
|
|
454
518
|
* The name of the source branch of this PR. Max length is 255 characters.
|
|
455
519
|
*
|
|
456
520
|
* @example
|
|
521
|
+
* ```
|
|
457
522
|
* ISSUE-1-feature-branch
|
|
523
|
+
* ```
|
|
458
524
|
*/
|
|
459
525
|
sourceBranch: string;
|
|
460
526
|
/**
|
|
@@ -462,28 +528,36 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
462
528
|
* the branch. Max length is 2000 characters.
|
|
463
529
|
*
|
|
464
530
|
* @example
|
|
531
|
+
* ```
|
|
465
532
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/branch/ISSUE-1-feature-branch
|
|
533
|
+
* ```
|
|
466
534
|
*/
|
|
467
535
|
sourceBranchUrl?: string;
|
|
468
536
|
/**
|
|
469
537
|
* The most recent update to this PR. Formatted as a UTC ISO 8601 date time format.
|
|
470
538
|
*
|
|
471
539
|
* @example
|
|
540
|
+
* ```
|
|
472
541
|
* 2016-10-31T23:27:25+00:00
|
|
542
|
+
* ```
|
|
473
543
|
*/
|
|
474
544
|
lastUpdate: string;
|
|
475
545
|
/**
|
|
476
546
|
* The name of destination branch of this PR. Max length is 255 characters.
|
|
477
547
|
*
|
|
478
548
|
* @example
|
|
549
|
+
* ```
|
|
479
550
|
* master
|
|
551
|
+
* ```
|
|
480
552
|
*/
|
|
481
553
|
destinationBranch?: string;
|
|
482
554
|
/**
|
|
483
555
|
* The url of the destination branch of this PR. Max length is 2000 characters.
|
|
484
556
|
*
|
|
485
557
|
* @example
|
|
558
|
+
* ```
|
|
486
559
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/src/master
|
|
560
|
+
* ```
|
|
487
561
|
*/
|
|
488
562
|
destinationBranchUrl?: string;
|
|
489
563
|
/** The list of reviewers of this pull request */
|
|
@@ -492,7 +566,9 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
492
566
|
* The URL of this pull request. Max length is 2000 characters.
|
|
493
567
|
*
|
|
494
568
|
* @example
|
|
569
|
+
* ```
|
|
495
570
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/pull-requests/2
|
|
571
|
+
* ```
|
|
496
572
|
*/
|
|
497
573
|
url: string;
|
|
498
574
|
/**
|
|
@@ -500,7 +576,9 @@ export interface PullRequest extends Record<string, unknown> {
|
|
|
500
576
|
* characters.
|
|
501
577
|
*
|
|
502
578
|
* @example
|
|
579
|
+
* ```
|
|
503
580
|
* Pull request 2
|
|
581
|
+
* ```
|
|
504
582
|
*/
|
|
505
583
|
displayId: string;
|
|
506
584
|
}
|
|
@@ -517,14 +595,18 @@ export interface Repository extends Record<string, unknown> {
|
|
|
517
595
|
* The name of this repository. Max length is 255 characters.
|
|
518
596
|
*
|
|
519
597
|
* @example
|
|
598
|
+
* ```
|
|
520
599
|
* atlassian-connect-jira-example
|
|
600
|
+
* ```
|
|
521
601
|
*/
|
|
522
602
|
name: string;
|
|
523
603
|
/**
|
|
524
604
|
* Description of this repository. Max length is 1024 characters.
|
|
525
605
|
*
|
|
526
606
|
* @example
|
|
607
|
+
* ```
|
|
527
608
|
* The repository which stores code of the Atlassian Connect Add-on Devinfo application.
|
|
609
|
+
* ```
|
|
528
610
|
*/
|
|
529
611
|
description?: string;
|
|
530
612
|
/**
|
|
@@ -532,14 +614,18 @@ export interface Repository extends Record<string, unknown> {
|
|
|
532
614
|
* length is 1024 characters.
|
|
533
615
|
*
|
|
534
616
|
* @example
|
|
617
|
+
* ```
|
|
535
618
|
* 56c7c750-cee2-48e2-b920-d7706dfd11f7
|
|
619
|
+
* ```
|
|
536
620
|
*/
|
|
537
621
|
forkOf?: string;
|
|
538
622
|
/**
|
|
539
623
|
* The URL of this repository. Max length is 2000 characters.
|
|
540
624
|
*
|
|
541
625
|
* @example
|
|
626
|
+
* ```
|
|
542
627
|
* https://bitbucket.org/atlassianlabs/atlassian-connect-jira-example
|
|
628
|
+
* ```
|
|
543
629
|
*/
|
|
544
630
|
url: string;
|
|
545
631
|
/**
|
|
@@ -561,14 +647,18 @@ export interface Repository extends Record<string, unknown> {
|
|
|
561
647
|
* The URL of the avatar for this repository. Max length is 2000 characters.
|
|
562
648
|
*
|
|
563
649
|
* @example
|
|
650
|
+
* ```
|
|
564
651
|
* http://bitbucket.org/atlassianlabs/atlassian-connect-jira-example/avatar/32
|
|
652
|
+
* ```
|
|
565
653
|
*/
|
|
566
654
|
avatar?: string;
|
|
567
655
|
/**
|
|
568
656
|
* Description of the avatar for this repository. Max length is 1024 characters.
|
|
569
657
|
*
|
|
570
658
|
* @example
|
|
659
|
+
* ```
|
|
571
660
|
* Avatar description
|
|
661
|
+
* ```
|
|
572
662
|
*/
|
|
573
663
|
avatarDescription?: string;
|
|
574
664
|
/**
|
|
@@ -579,7 +669,9 @@ export interface Repository extends Record<string, unknown> {
|
|
|
579
669
|
* is 1024 characters.
|
|
580
670
|
*
|
|
581
671
|
* @example
|
|
672
|
+
* ```
|
|
582
673
|
* c6c7c750-cee2-48e2-b920-d7706dfd11f9
|
|
674
|
+
* ```
|
|
583
675
|
*/
|
|
584
676
|
id: string;
|
|
585
677
|
/**
|
|
@@ -592,7 +684,9 @@ export interface Repository extends Record<string, unknown> {
|
|
|
592
684
|
* what is currently stored will be ignored.
|
|
593
685
|
*
|
|
594
686
|
* @example
|
|
687
|
+
* ```
|
|
595
688
|
* 1523494301248
|
|
689
|
+
* ```
|
|
596
690
|
*/
|
|
597
691
|
updateSequenceId: number;
|
|
598
692
|
}
|
|
@@ -635,7 +729,9 @@ export interface Reviewer extends Record<string, unknown> {
|
|
|
635
729
|
* Deprecated. The name of this reviewer. Max length is 255 characters.
|
|
636
730
|
*
|
|
637
731
|
* @example
|
|
732
|
+
* ```
|
|
638
733
|
* Jane Doe
|
|
734
|
+
* ```
|
|
639
735
|
* @deprecated
|
|
640
736
|
*/
|
|
641
737
|
name?: string;
|
|
@@ -643,7 +739,9 @@ export interface Reviewer extends Record<string, unknown> {
|
|
|
643
739
|
* The approval status of this reviewer, default is UNAPPROVED.
|
|
644
740
|
*
|
|
645
741
|
* @example
|
|
742
|
+
* ```
|
|
646
743
|
* APPROVED
|
|
744
|
+
* ```
|
|
647
745
|
*/
|
|
648
746
|
approvalStatus?: "APPROVED" | "UNAPPROVED";
|
|
649
747
|
/**
|
|
@@ -651,7 +749,9 @@ export interface Reviewer extends Record<string, unknown> {
|
|
|
651
749
|
* characters.
|
|
652
750
|
*
|
|
653
751
|
* @example
|
|
752
|
+
* ```
|
|
654
753
|
* https://atlassian.com/account/jane_doe
|
|
754
|
+
* ```
|
|
655
755
|
* @deprecated
|
|
656
756
|
*/
|
|
657
757
|
url?: string;
|
|
@@ -660,7 +760,9 @@ export interface Reviewer extends Record<string, unknown> {
|
|
|
660
760
|
* characters.
|
|
661
761
|
*
|
|
662
762
|
* @example
|
|
763
|
+
* ```
|
|
663
764
|
* https://atlassian.com/account/jane_doe/avatar/32
|
|
765
|
+
* ```
|
|
664
766
|
* @deprecated
|
|
665
767
|
*/
|
|
666
768
|
avatar?: string;
|
|
@@ -668,14 +770,18 @@ export interface Reviewer extends Record<string, unknown> {
|
|
|
668
770
|
* The email address of this reviewer. Max length is 254 characters.
|
|
669
771
|
*
|
|
670
772
|
* @example
|
|
773
|
+
* ```
|
|
671
774
|
* jane_doe@example.com
|
|
775
|
+
* ```
|
|
672
776
|
*/
|
|
673
777
|
email?: string;
|
|
674
778
|
/**
|
|
675
779
|
* The Atlassian Account ID (AAID) of this reviewer. Max length is 128 characters.
|
|
676
780
|
*
|
|
677
781
|
* @example
|
|
782
|
+
* ```
|
|
678
783
|
* 655363:e4ca5e2d-a901-40e3-877e-bf5d22c0f130
|
|
784
|
+
* ```
|
|
679
785
|
*/
|
|
680
786
|
accountId?: string;
|
|
681
787
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"developmentInformation.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/developmentInformation.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAyC;AAGzC,qCAGkB;
|
|
1
|
+
{"version":3,"file":"developmentInformation.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/developmentInformation.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,14 +15,18 @@ export interface FeatureFlagData extends Record<string, unknown> {
|
|
|
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 Feature Flag. 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
|
/**
|
|
@@ -32,7 +36,9 @@ export interface FeatureFlagData extends Record<string, unknown> {
|
|
|
32
36
|
* Will be made available via the UI for users to copy into their source code etc.
|
|
33
37
|
*
|
|
34
38
|
* @example
|
|
39
|
+
* ```
|
|
35
40
|
* my-awesome-feature
|
|
41
|
+
* ```
|
|
36
42
|
*/
|
|
37
43
|
key: string;
|
|
38
44
|
/**
|
|
@@ -48,7 +54,9 @@ export interface FeatureFlagData extends Record<string, unknown> {
|
|
|
48
54
|
* than what is currently stored will be ignored.
|
|
49
55
|
*
|
|
50
56
|
* @example
|
|
57
|
+
* ```
|
|
51
58
|
* 1523494301448
|
|
59
|
+
* ```
|
|
52
60
|
*/
|
|
53
61
|
updateSequenceId: number;
|
|
54
62
|
/**
|
|
@@ -57,7 +65,9 @@ export interface FeatureFlagData extends Record<string, unknown> {
|
|
|
57
65
|
* If not provided, will use the ID for display.
|
|
58
66
|
*
|
|
59
67
|
* @example
|
|
68
|
+
* ```
|
|
60
69
|
* Enable awesome feature
|
|
70
|
+
* ```
|
|
61
71
|
*/
|
|
62
72
|
displayName?: string;
|
|
63
73
|
/** The Jira issue keys to associate the Feature Flag information with. */
|
|
@@ -109,10 +119,12 @@ export interface SubmitFeatureFlagRequest extends Record<string, unknown> {
|
|
|
109
119
|
* supplied, and keys must not contain ':' or start with '_'.
|
|
110
120
|
*
|
|
111
121
|
* @example
|
|
122
|
+
* ```
|
|
112
123
|
* {
|
|
113
|
-
*
|
|
114
|
-
*
|
|
124
|
+
* "accountId": "account-234",
|
|
125
|
+
* "projectId": "project-123"
|
|
115
126
|
* }
|
|
127
|
+
* ```
|
|
116
128
|
*/
|
|
117
129
|
properties?: {
|
|
118
130
|
[key: string]: string;
|
|
@@ -137,7 +149,9 @@ export interface SubmitFeatureFlagRequest extends Record<string, unknown> {
|
|
|
137
149
|
* An optional name of the source of the feature flags.
|
|
138
150
|
*
|
|
139
151
|
* @example
|
|
152
|
+
* ```
|
|
140
153
|
* Atlassian Release Platform 2.1.0
|
|
154
|
+
* ```
|
|
141
155
|
*/
|
|
142
156
|
product?: string;
|
|
143
157
|
} & {
|
|
@@ -162,10 +176,12 @@ export interface SubmitFeatureFlagsResponse extends Record<string, unknown> {
|
|
|
162
176
|
* out of order is not considered a failed submission.
|
|
163
177
|
*
|
|
164
178
|
* @example
|
|
179
|
+
* ```
|
|
165
180
|
* [
|
|
166
|
-
*
|
|
167
|
-
*
|
|
181
|
+
* "111-222-333",
|
|
182
|
+
* "444-555-666"
|
|
168
183
|
* ]
|
|
184
|
+
* ```
|
|
169
185
|
*/
|
|
170
186
|
acceptedFeatureFlags?: string[];
|
|
171
187
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"featureFlags.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/featureFlags.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,wDAAwD;AACxD,gDAAgD;AAChD,6BAAyC;
|
|
1
|
+
{"version":3,"file":"featureFlags.js","sourceRoot":"","sources":["../../../../src/openapi/software/models/featureFlags.ts"],"names":[],"mappings":"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"}
|