@k8slens/extensions 5.3.1-git.f02018c1e7.0 → 5.3.1-git.f78d9c5fc2.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.
|
@@ -166,7 +166,7 @@ export declare class KubeApi<T extends KubeObject> {
|
|
|
166
166
|
get(desc: ResourceDescriptor, query?: IKubeApiQueryParams): Promise<T | null>;
|
|
167
167
|
create({ name, namespace }: Partial<ResourceDescriptor>, data?: PartialKubeObject<T>): Promise<T | null>;
|
|
168
168
|
update({ name, namespace }: ResourceDescriptor, data: PartialKubeObject<T>): Promise<T | null>;
|
|
169
|
-
patch(desc: ResourceDescriptor, data?:
|
|
169
|
+
patch(desc: ResourceDescriptor, data?: PartialKubeObject<T> | Patch, strategy?: KubeApiPatchType): Promise<T>;
|
|
170
170
|
delete({ propagationPolicy, ...desc }: DeleteResourceDescriptor): Promise<KubeJsonApiData>;
|
|
171
171
|
getWatchUrl(namespace?: string, query?: IKubeApiQueryParams): string;
|
|
172
172
|
watch(opts?: KubeApiWatchOptions): () => 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.1-git.
|
|
5
|
+
"version": "5.3.1-git.f78d9c5fc2.0",
|
|
6
6
|
"copyright": "© 2021 OpenLens Authors",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/src/extensions/extension-api.js",
|