chore: updated api-reports

Signed-off-by: Niek te Grootenhuis <niek.te.grootenhuis@alliander.com>
This commit is contained in:
Niek te Grootenhuis
2022-08-22 10:06:31 +02:00
parent 03fe82e6d1
commit 0ec1dd3098
2 changed files with 5 additions and 1 deletions
+2 -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 { HumanDuration } from '@backstage/backend-tasks';
import { JsonValue } from '@backstage/types';
import { Logger } from 'winston';
import { PluginEndpointDiscovery } from '@backstage/backend-common';
@@ -72,7 +73,7 @@ export type FactRetrieverContext = {
export type FactRetrieverRegistration = {
factRetriever: FactRetriever;
cadence?: string;
timeout?: Duration;
timeout?: Duration | HumanDuration;
lifecycle?: FactLifecycle;
};