@k8slens/extensions 6.1.1-git.79efe1be29.0 → 6.1.1-git.8c49ea8148.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.
@@ -2,10 +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
- import type { Injectable } from "@ogre-tools/injectable";
5
+ import type { Injectable, InjectionToken } from "@ogre-tools/injectable";
6
6
  import { Router } from "./router";
7
7
  import type { Route } from "./route";
8
- export declare const routeInjectionToken: import("@ogre-tools/injectable").InjectionToken<Route<unknown, string>, void>;
8
+ export declare const routeInjectionToken: InjectionToken<Route<unknown, string>, void>;
9
9
  export declare function getRouteInjectable<T, Path extends string>(opts: Omit<Injectable<Route<T, Path>, Route<T, Path>, void>, "lifecycle" | "injectionToken">): Injectable<Route<T, Path>, Route<T, Path>, void>;
10
10
  declare const routerInjectable: Injectable<Router, unknown, void>;
11
11
  export default routerInjectable;
@@ -1,5 +1,9 @@
1
1
  declare const setupLensProxyInjectable: import("@ogre-tools/injectable").Injectable<{
2
2
  id: string;
3
3
  run: () => Promise<void>;
4
+ runAfter: {
5
+ id: string;
6
+ run: () => Promise<void>;
7
+ };
4
8
  }, import("../../../common/runnable/run-many-for").Runnable<void>, void>;
5
9
  export default setupLensProxyInjectable;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@k8slens/extensions",
3
3
  "productName": "OpenLens extensions",
4
4
  "description": "OpenLens - Open Source Kubernetes IDE: extensions",
5
- "version": "6.1.1-git.79efe1be29.0",
5
+ "version": "6.1.1-git.8c49ea8148.0",
6
6
  "copyright": "© 2022 OpenLens Authors",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/extensions/extension-api.js",