chore: moving the CatalogEntityDocument to catalog-common

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-03-03 11:08:57 +01:00
parent db1e6ac8cc
commit 1de7dd85b0
7 changed files with 74 additions and 27 deletions
+2 -14
View File
@@ -7,6 +7,7 @@
import { BitbucketIntegration } from '@backstage/integration';
import { CatalogApi } from '@backstage/catalog-client';
import { CatalogEntityDocument } from '@backstage/plugin-catalog-common';
import { CompoundEntityRef } from '@backstage/catalog-model';
import { ConditionalPolicyDecision } from '@backstage/plugin-permission-node';
import { Conditions } from '@backstage/plugin-permission-node';
@@ -18,7 +19,6 @@ import express from 'express';
import { GetEntitiesRequest } from '@backstage/catalog-client';
import { GithubCredentialsProvider } from '@backstage/integration';
import { GitHubIntegrationConfig } from '@backstage/integration';
import { IndexableDocument } from '@backstage/search-common';
import { JsonObject } from '@backstage/types';
import { JsonValue } from '@backstage/types';
import { Location as Location_2 } from '@backstage/catalog-client';
@@ -248,19 +248,7 @@ export const catalogConditions: Conditions<{
>;
}>;
// @public (undocumented)
export interface CatalogEntityDocument extends IndexableDocument {
// (undocumented)
componentType: string;
// (undocumented)
kind: string;
// (undocumented)
lifecycle: string;
// (undocumented)
namespace: string;
// (undocumented)
owner: string;
}
export { CatalogEntityDocument };
// @public (undocumented)
export type CatalogEnvironment = {
@@ -29,21 +29,17 @@ import {
UserEntity,
} from '@backstage/catalog-model';
import { Config } from '@backstage/config';
import { DocumentCollatorFactory } from '@backstage/search-common';
import {
DocumentCollatorFactory,
IndexableDocument,
} from '@backstage/search-common';
import { catalogEntityReadPermission } from '@backstage/plugin-catalog-common';
catalogEntityReadPermission,
CatalogEntityDocument,
} from '@backstage/plugin-catalog-common';
import { Readable } from 'stream';
/** @public */
export interface CatalogEntityDocument extends IndexableDocument {
componentType: string;
namespace: string;
kind: string;
lifecycle: string;
owner: string;
}
/**
* @deprecated import from `@backstage/plugin-catalog-common` instead
*/
export type { CatalogEntityDocument };
/** @public */
export type DefaultCatalogCollatorFactoryOptions = {
+15
View File
@@ -3,6 +3,7 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { IndexableDocument } from '@backstage/search-common';
import { Permission } from '@backstage/plugin-permission-common';
// @alpha
@@ -11,6 +12,20 @@ export const catalogEntityCreatePermission: Permission;
// @alpha
export const catalogEntityDeletePermission: Permission;
// @public
export interface CatalogEntityDocument extends IndexableDocument {
// (undocumented)
componentType: string;
// (undocumented)
kind: string;
// (undocumented)
lifecycle: string;
// (undocumented)
namespace: string;
// (undocumented)
owner: string;
}
// @alpha
export const catalogEntityReadPermission: Permission;
+2 -1
View File
@@ -34,7 +34,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/plugin-permission-common": "^0.5.1"
"@backstage/plugin-permission-common": "^0.5.1",
"@backstage/search-common": "^0.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.14.0"
+2
View File
@@ -31,3 +31,5 @@ export {
catalogLocationCreatePermission,
catalogLocationDeletePermission,
} from './permissions';
export * from './search';
@@ -0,0 +1,29 @@
/*
* 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 { IndexableDocument } from '@backstage/search-common';
/**
* The Document format for an Entity in the Catalog for search
*
* @public
*/
export interface CatalogEntityDocument extends IndexableDocument {
componentType: string;
namespace: string;
kind: string;
lifecycle: string;
owner: string;
}
@@ -0,0 +1,16 @@
/*
* 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.
*/
export type { CatalogEntityDocument } from './CatalogEntityDocument';