@gitkraken/provider-apis 0.29.8 → 0.30.0

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,6 +1,18 @@
1
1
  # Changelog
2
2
 
3
- ## 0.29.7
3
+ ## 0.30.0
4
+
5
+ - Removed `node-fetch` usage
6
+ - Updated `node` to >=20
7
+ - Added `getProjects` to Linear
8
+ - Added `getCycles` to Linear
9
+ - Added `getLabels` to Linear
10
+
11
+ ## 0.29.9
12
+
13
+ - Added `getIssues` to Linear
14
+
15
+ ## 0.29.8
4
16
 
5
17
  - Added `getCurrentUser` to Linear
6
18
 
@@ -1,6 +1 @@
1
- import nodeFetch from 'node-fetch';
2
- import { Fetch } from './types/exportedTypes/types';
3
- declare global {
4
- var fetch: Fetch | undefined;
5
- }
6
- export declare const defaultRequest: typeof nodeFetch;
1
+ export declare const defaultRequest: typeof fetch;