Merge pull request #9933 from backstage/freben/catalog-client-remove-old-types

remove deprecated catalog-client request/response types
This commit is contained in:
Fredrik Adelöw
2022-03-03 10:51:39 +01:00
committed by GitHub
4 changed files with 10 additions and 56 deletions
+10
View File
@@ -0,0 +1,10 @@
---
'@backstage/catalog-client': minor
---
**BREAKING**: Removed the old deprecated request/response types:
- `CatalogEntitiesRequest` - please use `GetEntitiesRequest` instead
- `CatalogEntityAncestorsRequest` - please use `GetEntityAncestorsRequest` instead
- `CatalogEntityAncestorsResponse` - please use `GetEntityAncestorsResponse` instead
- `CatalogListResponse` - please use `GetEntitiesResponse` instead
-12
View File
@@ -130,18 +130,6 @@ export class CatalogClient implements CatalogApi {
): Promise<void>;
}
// @public @deprecated (undocumented)
export type CatalogEntitiesRequest = GetEntitiesRequest;
// @public @deprecated (undocumented)
export type CatalogEntityAncestorsRequest = GetEntityAncestorsRequest;
// @public @deprecated (undocumented)
export type CatalogEntityAncestorsResponse = GetEntityAncestorsResponse;
// @public @deprecated (undocumented)
export type CatalogListResponse<_Entity> = GetEntitiesResponse;
// @public
export interface CatalogRequestOptions {
// (undocumented)
@@ -1,43 +0,0 @@
/*
* Copyright 2022 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
GetEntitiesRequest,
GetEntitiesResponse,
GetEntityAncestorsRequest,
GetEntityAncestorsResponse,
} from './api';
/**
* @public
* @deprecated use GetEntitiesRequest instead
*/
export type CatalogEntitiesRequest = GetEntitiesRequest;
/**
* @public
* @deprecated use GetEntitiesResponse instead
*/
export type CatalogListResponse<_Entity> = GetEntitiesResponse;
/**
* @public
* @deprecated use GetEntityAncestorsRequest instead
*/
export type CatalogEntityAncestorsRequest = GetEntityAncestorsRequest;
/**
* @public
* @deprecated use GetEntityAncestorsResponse instead
*/
export type CatalogEntityAncestorsResponse = GetEntityAncestorsResponse;
@@ -28,5 +28,4 @@ export type {
GetEntityFacetsRequest,
GetEntityFacetsResponse,
} from './api';
export * from './deprecated';
export { ENTITY_STATUS_CATALOG_PROCESSING_TYPE } from './status';