@gitkraken/provider-apis 0.28.2 → 0.28.3

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,12 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.28.3
4
+
5
+ - fix REST API url for GitLab Self-Managed when it's not included in the base URL
6
+
3
7
  ## 0.28.2
4
8
 
5
9
  - add support for Enterprise Managed Users (GitHub Enterprise Cloud)
6
10
  - stop fetching approved field (GitLab Self-Managed)
7
11
 
8
12
  ## 0.28.1
9
- - added repo/repos optional input for specifying fetching from specific repos in
13
+
14
+ - added repo/repos optional input for specifying fetching from specific repos in
10
15
  - getPullRequestsAssociatedWithUser (github)
11
16
  - getPullRequestsForUserAndWorkspace (bitbucket)
12
17
  - getPullRequestsForUser (gitlab)
@@ -21,11 +26,13 @@
21
26
  In order to fix the Jira Cloud paging bug, we needed to change the argument types and return types for both Jira Cloud and Jira Data Center issue fetching functions. The argument types have been changed to use `CursorPageInput` instead of `NumberedPageInput`, and the return types have been changed to use `CursorPageInfo` instead of `NumberedPageInfo`. The following functions have been affected:
22
27
 
23
28
  Jira Cloud:
29
+
24
30
  - `getIssuesForProject`
25
31
  - `getIssuesForProjects`
26
32
  - `getIssuesForResourceForCurrentUser`
27
33
 
28
34
  Jira Data Center:
35
+
29
36
  - `getIssuesForProject`
30
37
  - `getIssuesForProjects`
31
38
  - `getIssuesForResourceForCurrentUser`
@@ -54,6 +61,7 @@ Jira Data Center:
54
61
  ### ⚠️ Breaking Changes
55
62
 
56
63
  Removed the `permission` field from `GitRepository` and replaced it with the `permissions` field. The old `permission` field was a GitHub-specific addition that was not normalized for other providers. The new `permissions` field is designed to be normalized with other providers, and also offers granular properties:
64
+
57
65
  ```ts
58
66
  type GitRepositoryPermissions = {
59
67
  canCreateWebhook: boolean | null;