refactor(tech-insights): reorg exports

Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
This commit is contained in:
Patrick Jungermann
2024-01-08 19:37:29 +01:00
parent 9747db38e3
commit 0269b01576
7 changed files with 98 additions and 27 deletions
@@ -13,15 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export {
JsonRulesEngineFactCheckerFactory,
JsonRulesEngineFactChecker,
} from './service/JsonRulesEngineFactChecker';
export { JSON_RULE_ENGINE_CHECK_TYPE } from './constants';
export type {
JsonRulesEngineFactCheckerFactoryOptions,
JsonRulesEngineFactCheckerOptions,
} from './service/JsonRulesEngineFactChecker';
export * from './service';
export type {
JsonRuleCheckResponse,
JsonRuleBooleanCheckResult,
@@ -0,0 +1,25 @@
/*
* Copyright 2024 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 {
JsonRulesEngineFactCheckerFactory,
JsonRulesEngineFactChecker,
} from './JsonRulesEngineFactChecker';
export type {
JsonRulesEngineFactCheckerFactoryOptions,
JsonRulesEngineFactCheckerOptions,
} from './JsonRulesEngineFactChecker';
+1 -18
View File
@@ -14,21 +14,4 @@
* limitations under the License.
*/
export * from './service/router';
export type { RouterOptions } from './service/router';
export { buildTechInsightsContext } from './service/techInsightsContextBuilder';
export { initializePersistenceContext } from './service/persistence/persistenceContext';
export type {
TechInsightsOptions,
TechInsightsContext,
} from './service/techInsightsContextBuilder';
export type { FactRetrieverEngine } from './service/fact/FactRetrieverEngine';
export type {
PersistenceContext,
PersistenceContextOptions,
} from './service/persistence/persistenceContext';
export { createFactRetrieverRegistration } from './service/fact/createFactRetriever';
export type { FactRetrieverRegistry } from './service/fact/FactRetrieverRegistry';
export type { FactRetrieverRegistrationOptions } from './service/fact/createFactRetriever';
export * from './service/fact/factRetrievers';
export * from './service';
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './entityOwnershipFactRetriever';
export * from './entityMetadataFactRetriever';
export * from './entityOwnershipFactRetriever';
export * from './techdocsFactRetriever';
@@ -0,0 +1,21 @@
/*
* Copyright 2024 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 { createFactRetrieverRegistration } from './createFactRetriever';
export type { FactRetrieverRegistrationOptions } from './createFactRetriever';
export type { FactRetrieverEngine } from './FactRetrieverEngine';
export type { FactRetrieverRegistry } from './FactRetrieverRegistry';
export * from './factRetrievers';
@@ -0,0 +1,26 @@
/*
* Copyright 2024 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 * from './fact';
export * from './persistence';
export * from './router';
export type { RouterOptions } from './router';
export { buildTechInsightsContext } from './techInsightsContextBuilder';
export type {
TechInsightsOptions,
TechInsightsContext,
} from './techInsightsContextBuilder';
@@ -0,0 +1,21 @@
/*
* Copyright 2024 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 { initializePersistenceContext } from './persistenceContext';
export type {
PersistenceContext,
PersistenceContextOptions,
} from './persistenceContext';