rename misspelled k8s type

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2023-01-20 13:55:29 +01:00
parent c223b8194d
commit 1728c1ef01
3 changed files with 9 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-kubernetes-common': minor
---
**BREAKING**: Renamed misspelled `LimitRangeFetchReponse` to `LimitRangeFetchResponse`.
+2 -2
View File
@@ -140,7 +140,7 @@ export type FetchResponse =
| ServiceFetchResponse
| ConfigMapFetchResponse
| DeploymentFetchResponse
| LimitRangeFetchReponse
| LimitRangeFetchResponse
| ReplicaSetsFetchResponse
| HorizontalPodAutoscalersFetchResponse
| JobsFetchResponse
@@ -205,7 +205,7 @@ export interface KubernetesRequestBody {
}
// @public (undocumented)
export interface LimitRangeFetchReponse {
export interface LimitRangeFetchResponse {
// (undocumented)
resources: Array<V1LimitRange>;
// (undocumented)
+2 -2
View File
@@ -127,7 +127,7 @@ export type FetchResponse =
| ServiceFetchResponse
| ConfigMapFetchResponse
| DeploymentFetchResponse
| LimitRangeFetchReponse
| LimitRangeFetchResponse
| ReplicaSetsFetchResponse
| HorizontalPodAutoscalersFetchResponse
| JobsFetchResponse
@@ -169,7 +169,7 @@ export interface ReplicaSetsFetchResponse {
}
/** @public */
export interface LimitRangeFetchReponse {
export interface LimitRangeFetchResponse {
type: 'limitranges';
resources: Array<V1LimitRange>;
}