@k8slens/extensions 6.0.1-git.bd3f123aef.0 → 6.0.1-git.d6ca2c2cd7.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/dist/src/common/k8s-api/kube-api.d.ts +0 -1
- package/dist/src/common/k8s-api/kube-object.store.d.ts +0 -1
- package/dist/src/common/test-utils/get-global-override.d.ts +4 -0
- package/dist/src/common/utils/abort-controller.d.ts +5 -2
- package/dist/src/common/utils/delay.d.ts +0 -1
- package/dist/src/common/utils/reject-promise.d.ts +0 -1
- package/dist/src/common/vars/package-json.injectable.d.ts +0 -1
- package/dist/src/extensions/extension-api.js +9 -20
- package/dist/src/main/tray/tray-menu-registration.d.ts +1 -1
- package/package.json +1 -1
@@ -10,7 +10,6 @@ import type { KubeJsonApiData } from "./kube-json-api";
|
|
10
10
|
import { KubeJsonApi } from "./kube-json-api";
|
11
11
|
import type { Disposer } from "../utils";
|
12
12
|
import type { RequestInit } from "node-fetch";
|
13
|
-
import type AbortController from "abort-controller";
|
14
13
|
import { Agent } from "https";
|
15
14
|
import type { Patch } from "rfc6902";
|
16
15
|
import type { PartialDeep } from "type-fest";
|
@@ -9,7 +9,6 @@ import type { IKubeWatchEvent } from "./kube-watch-event";
|
|
9
9
|
import { ItemStore } from "../item.store";
|
10
10
|
import type { KubeApiQueryParams, KubeApi } from "./kube-api";
|
11
11
|
import type { RequestInit } from "node-fetch";
|
12
|
-
import AbortController from "abort-controller";
|
13
12
|
import type { Patch } from "rfc6902";
|
14
13
|
import type { PartialDeep } from "type-fest";
|
15
14
|
export declare type OnLoadFailure = (error: unknown) => void;
|
@@ -3,6 +3,10 @@
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
4
4
|
*/
|
5
5
|
import type { Injectable } from "@ogre-tools/injectable";
|
6
|
+
export interface GlobalOverride {
|
7
|
+
injectable: Injectable<any, any, any>;
|
8
|
+
overridingInstantiate: any;
|
9
|
+
}
|
6
10
|
export declare const getGlobalOverride: <T extends Injectable<any, any, any>>(injectable: T, overridingInstantiate: T["instantiate"]) => {
|
7
11
|
injectable: T;
|
8
12
|
overridingInstantiate: T["instantiate"];
|
@@ -2,7 +2,10 @@
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
4
4
|
*/
|
5
|
-
|
5
|
+
/**
|
6
|
+
* This is like an `AbortController` but will also abort if the parent aborts,
|
7
|
+
* but won't make the parent abort if this aborts (single direction)
|
8
|
+
*/
|
6
9
|
export declare class WrappedAbortController extends AbortController {
|
7
|
-
constructor(parent?: AbortController);
|
10
|
+
constructor(parent?: AbortController | undefined);
|
8
11
|
}
|
@@ -2,7 +2,6 @@
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
4
4
|
*/
|
5
|
-
import type { AbortController } from "abort-controller";
|
6
5
|
/**
|
7
6
|
* Return a promise that will be resolved after at least `timeout` ms have
|
8
7
|
* passed. If `failFast` is provided then the promise is also resolved if it has
|
@@ -2,7 +2,6 @@
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
4
4
|
*/
|
5
|
-
import type { AbortSignal } from "abort-controller";
|
6
5
|
/**
|
7
6
|
* Creates a new promise that will be rejected when the signal rejects.
|
8
7
|
*
|
@@ -147,7 +147,6 @@ declare const packageJsonInjectable: import("@ogre-tools/injectable").Injectable
|
|
147
147
|
"@sentry/integrations": string;
|
148
148
|
"@side/jest-runtime": string;
|
149
149
|
"@types/circular-dependency-plugin": string;
|
150
|
-
"abort-controller": string;
|
151
150
|
"auto-bind": string;
|
152
151
|
"await-lock": string;
|
153
152
|
byline: string;
|