Update API report.

Signed-off-by: Jussi Hallila <jussi@hallila.com>
This commit is contained in:
Jussi Hallila
2022-06-10 09:04:46 +02:00
parent aa15229ec3
commit 989761315a
2 changed files with 11 additions and 1 deletions
+1
View File
@@ -301,6 +301,7 @@ superfences
Superfences
superset
supertype
storable
talkdesk
Talkdesk
tasklist
+10 -1
View File
@@ -8,6 +8,7 @@ import { Config } from '@backstage/config';
import { DateTime } from 'luxon';
import { Duration } from 'luxon';
import { DurationLike } from 'luxon';
import { JsonValue } from '@backstage/types';
import { Logger } from 'winston';
import { PluginEndpointDiscovery } from '@backstage/backend-common';
import { TokenManager } from '@backstage/backend-common';
@@ -76,7 +77,14 @@ export type FactRetrieverRegistration = {
// @public
export type FactSchema = {
[name: string]: {
type: 'integer' | 'float' | 'string' | 'boolean' | 'datetime' | 'set';
type:
| 'integer'
| 'float'
| 'string'
| 'boolean'
| 'datetime'
| 'set'
| 'object';
description: string;
since?: string;
metadata?: Record<string, any>;
@@ -136,6 +144,7 @@ export type TechInsightFact = {
| string[]
| boolean[]
| DateTime[]
| JsonValue
>;
timestamp?: DateTime;
};