@gitkraken/provider-apis 0.25.9 → 0.25.11

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.
@@ -304,3 +304,16 @@ export interface GraphQLReviewComment {
304
304
  } | null;
305
305
  url: string;
306
306
  }
307
+ export interface RESTTreeResponse {
308
+ sha: string;
309
+ url: string;
310
+ tree: RESTTreeItem[];
311
+ truncated: boolean;
312
+ }
313
+ export interface RESTTreeItem {
314
+ path: string;
315
+ mode: string;
316
+ type: string;
317
+ sha: string;
318
+ url: string;
319
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitkraken/provider-apis",
3
- "version": "0.25.9",
3
+ "version": "0.25.11",
4
4
  "description": "An SDK around different third-party APIs that accepts and returns data in a common format.",
5
5
  "author": "Axosoft, LLC dba GitKraken",
6
6
  "license": "SEE LICENSE IN LICENSE",