From 11ea8dc7963aea5f1e22619d9adc3ef29e0a5c65 Mon Sep 17 00:00:00 2001 From: Renee Blackburn Date: Thu, 1 Oct 2020 21:36:47 -0400 Subject: [PATCH] fix(catalog-backend) export processors so they can be composed by custom backends --- .../src/ingestion/processors/index.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/plugins/catalog-backend/src/ingestion/processors/index.ts b/plugins/catalog-backend/src/ingestion/processors/index.ts index ed5dc3bf8e..0ce7f11a5f 100644 --- a/plugins/catalog-backend/src/ingestion/processors/index.ts +++ b/plugins/catalog-backend/src/ingestion/processors/index.ts @@ -18,3 +18,20 @@ import * as results from './results'; export { results }; export * from './types'; + +export { AnnotateLocationEntityProcessor } from './AnnotateLocationEntityProcessor'; +export { ApiDefinitionAtLocationProcessor } from './ApiDefinitionAtLocationProcessor'; +export { AzureApiReaderProcessor } from './AzureApiReaderProcessor'; +export { BitbucketApiReaderProcessor } from './BitbucketApiReaderProcessor'; +export { CodeOwnersProcessor } from './CodeOwnersProcessor'; +export { EntityPolicyProcessor } from './EntityPolicyProcessor'; +export { FileReaderProcessor } from './FileReaderProcessor'; +export { GithubOrgReaderProcessor } from './GithubOrgReaderProcessor'; +export { GithubReaderProcessor } from './GithubReaderProcessor'; +export { GitlabApiReaderProcessor } from './GitlabApiReaderProcessor'; +export { GitlabReaderProcessor } from './GitlabReaderProcessor'; +export { LocationRefProcessor } from './LocationEntityProcessor'; +export { PlaceholderProcessor } from './PlaceholderProcessor'; +export { StaticLocationProcessor } from './StaticLocationProcessor'; +export { UrlReaderProcessor } from './UrlReaderProcessor'; +export { YamlProcessor } from './YamlProcessor';