@gitkraken/provider-apis 0.25.8 → 0.25.9
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 +10 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +143 -143
- package/dist/index.providers.d.ts +1 -0
- package/dist/index.providers.js +146 -146
- package/dist/providers/errors.d.ts +5 -0
- package/dist/providers/github/github.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.25.9
|
|
4
|
+
|
|
5
|
+
- fixed GraphQL errors (GitHub)
|
|
6
|
+
|
|
3
7
|
## 0.25.8
|
|
4
8
|
|
|
5
9
|
- added `getReposForOrg` (GitHub)
|
|
@@ -8,6 +12,7 @@
|
|
|
8
12
|
- fix null dereference error that sometimes happens when fetching issues (GitHub)
|
|
9
13
|
|
|
10
14
|
This version of the package introduces code-splitting. There are three new entry points that you can import code from:
|
|
15
|
+
|
|
11
16
|
```
|
|
12
17
|
// the main entry point exports everything in this package. this results in the largest bundle size when imported
|
|
13
18
|
import { ... } from '@gitkraken/provider-apis';
|
|
@@ -26,12 +31,12 @@ import { ... } from '@gitkraken/provider-apis/providers';
|
|
|
26
31
|
```
|
|
27
32
|
|
|
28
33
|
Table of bundle sizes for each entry point for v0.25.8:
|
|
29
|
-
|Entry point
|
|
34
|
+
|Entry point |Parsed size|Gzipped size|
|
|
30
35
|
|--------------------------------------------|-----------|------------|
|
|
31
|
-
|@gitkraken/provider-apis
|
|
32
|
-
|@gitkraken/provider-apis/entity-identifiers |8.97 KB
|
|
33
|
-
|@gitkraken/provider-apis/provider-utils
|
|
34
|
-
|@gitkraken/provider-apis/providers
|
|
36
|
+
|@gitkraken/provider-apis |160 KB |36 KB |
|
|
37
|
+
|@gitkraken/provider-apis/entity-identifiers |8.97 KB |1.42 KB |
|
|
38
|
+
|@gitkraken/provider-apis/provider-utils |34 KB |9.21 KB |
|
|
39
|
+
|@gitkraken/provider-apis/providers |142 KB |32 KB |
|
|
35
40
|
|
|
36
41
|
## 0.25.7
|
|
37
42
|
|
package/dist/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from './types/exportedTypes/issueProvider';
|
|
|
28
28
|
export * from './types/exportedTypes/jira';
|
|
29
29
|
export * from './types/exportedTypes/trello';
|
|
30
30
|
export * from './types/exportedTypes/types';
|
|
31
|
+
export * from './providers/errors';
|
|
31
32
|
declare const Utils: {
|
|
32
33
|
azureDevOps: typeof AzureDevopsUtils;
|
|
33
34
|
bitbucket: typeof BitbucketUtils;
|