@gitkraken/provider-apis 0.16.0 → 0.17.1
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/CHANGELOG.md +15 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +134 -132
- package/dist/providerUtils/gitProvider.d.ts +13 -0
- package/dist/providers/azureDevops/azureDevOps.d.ts +33 -4
- package/dist/providers/azureDevops/azureDevOpsTypes.d.ts +8 -0
- package/dist/providers/gitProvider.d.ts +7 -1
- package/dist/providers/github/githubTypes.d.ts +9 -0
- package/dist/types.d.ts +10 -0
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.17.1
|
|
4
|
+
|
|
5
|
+
- added `GitProviderUtils` with function `groupPullRequestsIntoBuckets`
|
|
6
|
+
|
|
7
|
+
## 0.17.0
|
|
8
|
+
|
|
9
|
+
- added `permissions` field to `GitPullRequest` (GitHub)
|
|
10
|
+
- added `getAccountFromAzureGraphAccount` (Azure DevOps)
|
|
11
|
+
- added `getAccountsFromAzureGraphAccounts (Azure DevOps)
|
|
12
|
+
|
|
13
|
+
### ⚠️ Breaking Changes
|
|
14
|
+
|
|
15
|
+
- GitLab normalizes "manual" build status states as `OPTIONAL_ACTION_REQUIRED` instead of `ACTION_REQUIRED`
|
|
16
|
+
- replaced `getAccountsForAzureProject` with `getAzureGraphAccountsForAzureProject`, which now returns `AzureGraphAccount[]`
|
|
17
|
+
|
|
3
18
|
## 0.16.0
|
|
4
19
|
|
|
5
20
|
- added paging to `getIssuesForProject` and `getIssuesForResourceForCurrentUser` (Jira and Jira Server)
|
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { Trello } from './providers/trello/trello';
|
|
|
9
9
|
import * as AzureDevopsUtils from './providerUtils/azureDevops';
|
|
10
10
|
import * as BitbucketUtils from './providerUtils/bitbucket';
|
|
11
11
|
import * as BitbucketServerUtils from './providerUtils/bitbucketServer';
|
|
12
|
+
import * as GitProviderUtils from './providerUtils/gitProvider';
|
|
12
13
|
import * as GitHubUtils from './providerUtils/github';
|
|
13
14
|
import * as GitLabUtils from './providerUtils/gitlab';
|
|
14
15
|
import * as JiraUtils from './providerUtils/jira';
|
|
@@ -43,7 +44,8 @@ declare const Utils: {
|
|
|
43
44
|
bitbucketServer: typeof BitbucketServerUtils;
|
|
44
45
|
github: typeof GitHubUtils;
|
|
45
46
|
gitlab: typeof GitLabUtils;
|
|
47
|
+
gitProvider: typeof GitProviderUtils;
|
|
46
48
|
jira: typeof JiraUtils;
|
|
47
49
|
trello: typeof TrelloUtils;
|
|
48
50
|
};
|
|
49
|
-
export { AzureDevopsUtils, BitbucketServerUtils, BitbucketUtils, GitHubUtils, GitLabUtils, JiraUtils, TrelloUtils, Utils, };
|
|
51
|
+
export { AzureDevopsUtils, BitbucketServerUtils, BitbucketUtils, GitHubUtils, GitLabUtils, GitProviderUtils, JiraUtils, TrelloUtils, Utils, };
|