@gitkraken/provider-apis 0.17.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 +4 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +132 -132
- package/dist/providerUtils/gitProvider.d.ts +13 -0
- package/dist/types.d.ts +10 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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, };
|