diff --git a/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts b/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts index aa4d9aff03..aaba29ecb1 100644 --- a/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts +++ b/plugins/tech-insights-backend/src/service/fact/createFactRetriever.ts @@ -41,10 +41,10 @@ export type FactRetrieverRegistrationOptions = { * @public * * A helper function to construct fact retriever registrations. - * @param options.cadence - Cron expression to indicate when the fact retriever should be triggered - * @param options.factRetriever - Implementation of fact retriever consisting of at least id, version, schema and handler - * @param options.lifecycle - Optional lifecycle definition indicating the cleanup logic of facts when this retriever is run - * @param options.timeout - Optional duration to determine how long the fact retriever should be allowed to run, defaults to 5 minutes + * @param cadence - Cron expression to indicate when the fact retriever should be triggered + * @param factRetriever - Implementation of fact retriever consisting of at least id, version, schema and handler + * @param lifecycle - Optional lifecycle definition indicating the cleanup logic of facts when this retriever is run + * @param timeout - Optional duration to determine how long the fact retriever should be allowed to run, defaults to 5 minutes * * * @remarks