@gitkraken/provider-apis 0.46.0 → 0.46.2
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 +8 -0
- package/dist/index.js +148 -148
- package/dist/index.providers.js +138 -138
- package/dist/types/internalTypes/azureDevOps.d.ts +3 -2
- package/package.json +1 -1
|
@@ -206,10 +206,11 @@ export interface AzureIteration {
|
|
|
206
206
|
export interface AzureIterationChange {
|
|
207
207
|
changeId: number;
|
|
208
208
|
item: {
|
|
209
|
-
path: string;
|
|
209
|
+
path: string | null;
|
|
210
210
|
originalPath?: string;
|
|
211
211
|
};
|
|
212
|
-
|
|
212
|
+
originalPath?: string;
|
|
213
|
+
changeType: string | number;
|
|
213
214
|
}
|
|
214
215
|
export declare enum AzureThreadStatus {
|
|
215
216
|
Unknown = 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitkraken/provider-apis",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.2",
|
|
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",
|