@k8slens/extensions 6.0.1-git.e2b854d3af.0 → 6.0.1-git.e89afe081c.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/{main/routes/metrics/metrics-query.d.ts → behaviours/pod-logs/download-logs.test.d.ts} +1 -3
- package/dist/src/common/app-event-bus/app-event-bus.global-override-for-injectable.d.ts +5 -0
- package/dist/src/common/base-store.d.ts +1 -1
- package/dist/src/common/get-configuration-file-model/get-configuration-file-model.injectable.d.ts +1 -1
- package/dist/src/common/k8s-api/endpoints/daemon-set.api.d.ts +1 -1
- package/dist/src/common/k8s-api/endpoints/index.d.ts +1 -0
- package/dist/src/common/k8s-api/endpoints/job.api.d.ts +4 -3
- package/dist/src/common/k8s-api/endpoints/metrics.api.d.ts +5 -2
- package/dist/src/common/k8s-api/endpoints/pod.api.d.ts +13 -129
- package/dist/src/common/k8s-api/endpoints/replica-set.api.d.ts +1 -1
- package/dist/src/common/k8s-api/endpoints/stateful-set.api.d.ts +1 -1
- package/dist/src/common/k8s-api/endpoints/types/capabilities.d.ts +17 -0
- package/dist/src/common/k8s-api/endpoints/types/container-port.d.ts +11 -0
- package/dist/src/common/k8s-api/endpoints/types/container.d.ts +158 -0
- package/dist/src/common/k8s-api/endpoints/types/env-from-source.d.ts +13 -0
- package/dist/src/common/k8s-api/endpoints/types/env-source.d.ts +11 -0
- package/dist/src/common/k8s-api/endpoints/types/env-var-key-selector.d.ts +9 -0
- package/dist/src/common/k8s-api/endpoints/types/env-var-source.d.ts +13 -0
- package/dist/src/common/k8s-api/endpoints/types/env-var.d.ts +10 -0
- package/dist/src/common/k8s-api/endpoints/types/exec-action.d.ts +18 -0
- package/dist/src/common/k8s-api/endpoints/types/handler.d.ts +15 -0
- package/dist/src/common/k8s-api/endpoints/types/http-get-action.d.ts +32 -0
- package/dist/src/common/k8s-api/endpoints/types/http-header.d.ts +17 -0
- package/dist/src/common/k8s-api/endpoints/types/index.d.ts +35 -0
- package/dist/src/common/k8s-api/endpoints/types/lifecycle.d.ts +15 -0
- package/dist/src/common/k8s-api/endpoints/types/object-field-selector.d.ts +8 -0
- package/dist/src/common/k8s-api/endpoints/types/pod-security-context.d.ts +20 -0
- package/dist/src/common/k8s-api/endpoints/types/probe.d.ts +70 -0
- package/dist/src/common/k8s-api/endpoints/types/resource-field-selector.d.ts +9 -0
- package/dist/src/common/k8s-api/endpoints/types/se-linux-options.d.ts +25 -0
- package/dist/src/common/k8s-api/endpoints/types/seccomp-profile.d.ts +27 -0
- package/dist/src/common/k8s-api/endpoints/types/security-context.d.ts +45 -0
- package/dist/src/common/k8s-api/endpoints/types/tcp-socket-action.d.ts +17 -0
- package/dist/src/common/k8s-api/endpoints/types/volume-device.d.ts +17 -0
- package/dist/src/common/k8s-api/endpoints/types/volume-mount.d.ts +12 -0
- package/dist/src/common/k8s-api/endpoints/types/windows-security-context-options.d.ts +36 -0
- package/dist/src/common/utils/singleton.d.ts +1 -1
- package/dist/src/common/vars/package-json.injectable.d.ts +3 -0
- package/dist/src/extensions/as-legacy-globals-for-extension-api/as-legacy-global-object-for-extension-api-with-modifications.d.ts +1 -1
- package/dist/src/extensions/common-api/k8s-api.d.ts +1 -1
- package/dist/src/extensions/extension-api.js +400 -26
- package/dist/src/extensions/extension-store.d.ts +1 -1
- package/dist/src/extensions/renderer-api/theming.d.ts +7 -1
- package/dist/src/features/cluster/workload-overview.test.d.ts +5 -0
- package/dist/src/features/telemetry/emit-telemetry-from-specific-function-calls.test.d.ts +1 -0
- package/dist/src/features/telemetry/renderer/emit-telemetry.injectable.d.ts +5 -0
- package/dist/src/features/telemetry/renderer/telemetry-decorator.injectable.d.ts +11 -0
- package/dist/src/features/telemetry/renderer/telemetry-white-list-for-functions.injectable.d.ts +2 -0
- package/dist/src/main/prometheus/helm-14.d.ts +14 -0
- package/dist/src/main/prometheus/helm.d.ts +3 -3
- package/dist/src/renderer/components/+helm-releases/release-details/release-details-model/release-details-model.injectable.d.ts +3 -3
- package/dist/src/renderer/components/+workloads-overview/overview-workload-status.d.ts +19 -1
- package/dist/src/renderer/components/+workloads-overview/workloads/workload-injection-token.d.ts +2 -1
- package/dist/src/renderer/components/+workloads-pods/details/volumes/variant-helpers.d.ts +1 -1
- package/dist/src/renderer/components/+workloads-pods/pod-container-env.d.ts +4 -10
- package/dist/src/renderer/components/+workloads-pods/pod-details-container.d.ts +2 -2
- package/dist/src/renderer/components/chart/chart.d.ts +1 -0
- package/dist/src/renderer/components/dock/logs/controls.d.ts +1 -3
- package/dist/src/renderer/components/dock/logs/create-pod-logs-tab.injectable.d.ts +2 -2
- package/dist/src/renderer/components/dock/logs/download-all-logs.injectable.d.ts +4 -0
- package/dist/src/renderer/components/dock/logs/download-logs-dropdown.d.ts +10 -0
- package/dist/src/renderer/components/dock/logs/download-logs.injectable.d.ts +2 -0
- package/dist/src/renderer/components/dock/logs/get-random-id-for-pod-logs-tab.injectable.d.ts +2 -0
- package/dist/src/renderer/components/dock/logs/logs-view-model.d.ts +6 -1
- package/dist/src/renderer/components/dropdown/dropdown.d.ts +11 -0
- package/dist/src/renderer/components/layout/sidebar-item.d.ts +0 -1
- package/dist/src/renderer/components/test-utils/get-application-builder.d.ts +1 -0
- package/dist/src/renderer/navigation/index.d.ts +0 -4
- package/dist/src/renderer/navigation/match-route.injectable.d.ts +3 -1
- package/dist/src/renderer/themes/active.injectable.d.ts +2 -0
- package/dist/src/renderer/themes/lens-dark.d.ts +2 -2
- package/dist/src/renderer/themes/lens-light.d.ts +2 -2
- package/dist/src/renderer/themes/store.d.ts +4 -4
- package/dist/src/renderer/utils/storageHelper.d.ts +1 -1
- package/package.json +1 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.