@gitkraken/provider-apis 0.17.0 → 0.17.2

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.17.2
4
+
5
+ - add a `forceIsFetch` config option for cases where the native `fetch` function has been overridden but still uses `fetch` under the hood
6
+
7
+ ## 0.17.1
8
+
9
+ - added `GitProviderUtils` with function `groupPullRequestsIntoBuckets`
10
+
3
11
  ## 0.17.0
4
12
 
5
13
  - added `permissions` field to `GitPullRequest` (GitHub)
@@ -1,2 +1,2 @@
1
1
  import { Fetch, RequestFunction } from './types';
2
- export declare const fetchWrapper: (fetch: Fetch | RequestFunction) => RequestFunction;
2
+ export declare const fetchWrapper: (fetch: Fetch) => RequestFunction;
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, };