update api report

Signed-off-by: Alex Eftimie <alex.eftimie@getyourguide.com>
This commit is contained in:
Alex Eftimie
2024-09-04 17:55:42 +02:00
parent 98be1a602a
commit adf89f4645
@@ -18,9 +18,6 @@ import { Readable } from 'stream';
import { TechDocsDocument } from '@backstage/plugin-techdocs-node';
import { TokenManager } from '@backstage/backend-common';
// @public (undocumented)
export const defaultTechDocsCollatorDocumentTransformer: TechDocsCollatorDocumentTransformer;
// @public (undocumented)
export const defaultTechDocsCollatorEntityTransformer: TechDocsCollatorEntityTransformer;
@@ -54,21 +51,23 @@ export interface MkSearchIndexDoc {
// @public (undocumented)
export type TechDocsCollatorDocumentTransformer = (
doc: MkSearchIndexDoc,
) => Omit<
TechDocsDocument,
| 'location'
| 'authorization'
| 'kind'
| 'namespace'
| 'name'
| 'lifecycle'
| 'owner'
) => Partial<
Omit<
TechDocsDocument,
| 'location'
| 'authorization'
| 'kind'
| 'namespace'
| 'name'
| 'lifecycle'
| 'owner'
>
>;
// @public (undocumented)
export type TechDocsCollatorEntityTransformer = (
entity: Entity,
) => Omit<TechDocsDocument, 'location' | 'authorization'>;
) => Partial<Omit<TechDocsDocument, 'location' | 'authorization'>>;
// @public @deprecated
export type TechDocsCollatorFactoryOptions = {