@k8slens/extensions 5.3.0-git.e64060cc69.0 → 5.3.0-git.f12b0658ba.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/catalog-entities/kubernetes-cluster.d.ts +9 -1
- package/dist/src/common/catalog-entities/web-link.d.ts +2 -0
- package/dist/src/common/kube-helpers.d.ts +9 -14
- package/dist/src/common/user-store/preferences-helpers.d.ts +0 -1
- package/dist/src/common/user-store/user-store.d.ts +1 -1
- package/dist/src/extensions/common-api/catalog.d.ts +2 -1
- package/dist/src/extensions/extension-api.js +261 -296
- package/dist/src/main/cluster.d.ts +0 -1
- package/dist/src/main/utils/update-channel.d.ts +6 -0
- package/dist/src/renderer/components/+catalog/catalog-entity-item.d.ts +1 -1
- package/dist/src/renderer/components/+config-maps/config-map-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-pod-disruption-budgets/pod-disruption-budgets-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-resource-quotas/resource-quota-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-secrets/secret-details.d.ts +1 -1
- package/dist/src/renderer/components/+custom-resources/crd-details.d.ts +1 -1
- package/dist/src/renderer/components/+custom-resources/crd-resource-details.d.ts +2 -2
- package/dist/src/renderer/components/+entity-settings/entity-settings.d.ts +1 -2
- package/dist/src/renderer/components/+events/event-details.d.ts +1 -1
- package/dist/src/renderer/components/+events/kube-event-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-endpoints/endpoint-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-ingresses/ingress-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-policies/network-policy-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-services/service-details.d.ts +1 -1
- package/dist/src/renderer/components/+pod-security-policies/pod-security-policy-details.d.ts +9 -8
- package/dist/src/renderer/components/+storage-classes/storage-class-details.d.ts +1 -1
- package/dist/src/renderer/components/+workloads-cronjobs/cronjob-details.d.ts +1 -1
- package/dist/src/renderer/components/kube-object-meta/kube-object-meta.d.ts +1 -1
- package/dist/src/renderer/components/layout/setting-layout.d.ts +0 -1
- package/package.json +1 -1
- package/dist/src/common/custom-errors.d.ts +0 -23
|
@@ -293,7 +293,6 @@ export declare class Cluster implements ClusterModel, ClusterState {
|
|
|
293
293
|
accessible: boolean;
|
|
294
294
|
disconnected: boolean;
|
|
295
295
|
};
|
|
296
|
-
protected getAllowedNamespacesErrorCount: number;
|
|
297
296
|
protected getAllowedNamespaces(): Promise<string[]>;
|
|
298
297
|
protected getAllowedResources(): Promise<KubeResource[]>;
|
|
299
298
|
isAllowedResource(kind: string): boolean;
|
|
@@ -18,4 +18,10 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
+
/**
|
|
22
|
+
* Compute the next update channel from the current updating channel
|
|
23
|
+
* @param defaultChannel The default (initial) channel to check
|
|
24
|
+
* @param channel The current channel that did not have a new version associated with it
|
|
25
|
+
* @returns The channel name of the next release version
|
|
26
|
+
*/
|
|
21
27
|
export declare function nextUpdateChannel(defaultChannel: string, channel: string): string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import
|
|
2
|
+
import { CatalogEntity } from "../../api/catalog-entity";
|
|
3
3
|
import type { ItemObject } from "../../../common/item.store";
|
|
4
4
|
import type { CatalogEntityRegistry } from "../../api/catalog-entity-registry";
|
|
5
5
|
export declare class CatalogEntityItem<T extends CatalogEntity> implements ItemObject {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./config-map-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { ConfigMap } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<ConfigMap> {
|
|
26
26
|
}
|
|
27
27
|
export declare class ConfigMapDetails extends React.Component<Props> {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./pod-disruption-budgets-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { PodDisruptionBudget } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<PodDisruptionBudget> {
|
|
26
26
|
}
|
|
27
27
|
export declare class PodDisruptionBudgetDetails extends React.Component<Props> {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./resource-quota-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { ResourceQuota } from "../../../common/k8s-api/endpoints/resource-quota.api";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<ResourceQuota> {
|
|
26
26
|
}
|
|
27
27
|
export declare class ResourceQuotaDetails extends React.Component<Props> {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./secret-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { Secret } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<Secret> {
|
|
26
26
|
}
|
|
27
27
|
export declare class SecretDetails extends React.Component<Props> {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./crd-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
|
|
24
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<CustomResourceDefinition> {
|
|
26
26
|
}
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
import "./crd-resource-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
25
|
-
import
|
|
24
|
+
import { AdditionalPrinterColumnsV1, CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
|
|
25
|
+
import { KubeObject, KubeObjectMetadata, KubeObjectStatus } from "../../../common/k8s-api/kube-object";
|
|
26
26
|
interface Props extends KubeObjectDetailsProps<KubeObject> {
|
|
27
27
|
crd: CustomResourceDefinition;
|
|
28
28
|
}
|
|
@@ -30,10 +30,9 @@ export declare class EntitySettings extends React.Component<Props> {
|
|
|
30
30
|
get entityId(): string;
|
|
31
31
|
get entity(): CatalogEntity;
|
|
32
32
|
get menuItems(): import("../../../extensions/registries").RegisteredEntitySetting[];
|
|
33
|
-
|
|
33
|
+
get activeSetting(): import("../../../extensions/registries").RegisteredEntitySetting;
|
|
34
34
|
onTabChange: (tabId: string) => void;
|
|
35
35
|
renderNavigation(): JSX.Element;
|
|
36
|
-
ensureActiveTab(): void;
|
|
37
36
|
render(): JSX.Element;
|
|
38
37
|
}
|
|
39
38
|
export {};
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./event-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { KubeEvent } from "../../../common/k8s-api/endpoints/events.api";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<KubeEvent> {
|
|
26
26
|
}
|
|
27
27
|
export declare class EventDetails extends React.Component<Props> {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./kube-event-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { KubeObject } from "../../../common/k8s-api/kube-object";
|
|
24
24
|
export interface KubeEventDetailsProps {
|
|
25
25
|
object: KubeObject;
|
|
26
26
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./endpoint-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { Endpoint } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<Endpoint> {
|
|
26
26
|
}
|
|
27
27
|
export declare class EndpointDetails extends React.Component<Props> {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./ingress-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { ILoadBalancerIngress, Ingress } from "../../../common/k8s-api/endpoints";
|
|
24
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
25
25
|
import { IIngressMetrics } from "../../../common/k8s-api/endpoints/ingress.api";
|
|
26
26
|
interface Props extends KubeObjectDetailsProps<Ingress> {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./network-policy-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { IPolicyEgress, IPolicyIngress, NetworkPolicy } from "../../../common/k8s-api/endpoints/network-policy.api";
|
|
24
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<NetworkPolicy> {
|
|
26
26
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./service-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { Service } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<Service> {
|
|
26
26
|
}
|
|
27
27
|
export declare class ServiceDetails extends React.Component<Props> {
|
package/dist/src/renderer/components/+pod-security-policies/pod-security-policy-details.d.ts
CHANGED
|
@@ -21,17 +21,18 @@
|
|
|
21
21
|
import "./pod-security-policy-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { PodSecurityPolicy } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<PodSecurityPolicy> {
|
|
26
26
|
}
|
|
27
|
+
interface RuleGroup {
|
|
28
|
+
rule: string;
|
|
29
|
+
ranges?: {
|
|
30
|
+
max: number;
|
|
31
|
+
min: number;
|
|
32
|
+
}[];
|
|
33
|
+
}
|
|
27
34
|
export declare class PodSecurityPolicyDetails extends React.Component<Props> {
|
|
28
|
-
renderRuleGroup(title: React.ReactNode, group:
|
|
29
|
-
rule: string;
|
|
30
|
-
ranges?: {
|
|
31
|
-
max: number;
|
|
32
|
-
min: number;
|
|
33
|
-
}[];
|
|
34
|
-
}): JSX.Element;
|
|
35
|
+
renderRuleGroup(title: React.ReactNode, group: RuleGroup): JSX.Element;
|
|
35
36
|
render(): JSX.Element;
|
|
36
37
|
}
|
|
37
38
|
export {};
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./storage-class-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { StorageClass } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<StorageClass> {
|
|
26
26
|
}
|
|
27
27
|
export declare class StorageClassDetails extends React.Component<Props> {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./cronjob-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { CronJob } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<CronJob> {
|
|
26
26
|
}
|
|
27
27
|
export declare class CronJobDetails extends React.Component<Props> {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
21
|
import React from "react";
|
|
22
|
-
import
|
|
22
|
+
import { KubeMetaField, KubeObject } from "../../../common/k8s-api/kube-object";
|
|
23
23
|
export interface KubeObjectMetaProps {
|
|
24
24
|
object: KubeObject;
|
|
25
25
|
hideFields?: KubeMetaField[];
|
|
@@ -34,7 +34,6 @@ export interface SettingLayoutProps extends React.DOMAttributes<any> {
|
|
|
34
34
|
*/
|
|
35
35
|
export declare class SettingLayout extends React.Component<SettingLayoutProps> {
|
|
36
36
|
static defaultProps: object;
|
|
37
|
-
back(evt?: React.MouseEvent | KeyboardEvent): void;
|
|
38
37
|
componentDidMount(): Promise<void>;
|
|
39
38
|
componentWillUnmount(): void;
|
|
40
39
|
onEscapeKey: (evt: KeyboardEvent) => void;
|
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": "5.3.0-git.
|
|
5
|
+
"version": "5.3.0-git.f12b0658ba.0",
|
|
6
6
|
"copyright": "© 2021 OpenLens Authors",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/src/extensions/extension-api.js",
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2021 OpenLens Authors
|
|
3
|
-
*
|
|
4
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
-
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
-
* the Software without restriction, including without limitation the rights to
|
|
7
|
-
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
-
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
-
* subject to the following conditions:
|
|
10
|
-
*
|
|
11
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
* copies or substantial portions of the Software.
|
|
13
|
-
*
|
|
14
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
-
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
-
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
-
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
-
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
-
*/
|
|
21
|
-
export declare class ExecValidationNotFoundError extends Error {
|
|
22
|
-
constructor(execPath: string, isAbsolute: boolean);
|
|
23
|
-
}
|