chore(api-report): update api report for tech-inisghts

Signed-off-by: Fernando.Teixeira <fernando.Teixeira@traderev.com>
This commit is contained in:
Fernando.Teixeira
2023-01-25 15:03:16 -05:00
parent f44199533a
commit 9d59c101c8
4 changed files with 24 additions and 18 deletions
+1 -17
View File
@@ -8,6 +8,7 @@ import { Config } from '@backstage/config';
import { DateTime } from 'luxon';
import { Duration } from 'luxon';
import { DurationLike } from 'luxon';
import { FactSchema } from '@backstage/plugin-tech-insights-common';
import { HumanDuration } from '@backstage/types';
import { JsonValue } from '@backstage/types';
import { Logger } from 'winston';
@@ -78,23 +79,6 @@ export type FactRetrieverRegistration = {
initialDelay?: Duration | HumanDuration;
};
// @public
export type FactSchema = {
[name: string]: {
type:
| 'integer'
| 'float'
| 'string'
| 'boolean'
| 'datetime'
| 'set'
| 'object';
description: string;
since?: string;
metadata?: Record<string, any>;
};
};
// @public
export type FactSchemaDefinition = Omit<FactRetriever, 'handler'>;