Export RefreshService, add api-report

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2021-09-16 10:29:24 +02:00
parent 6a208c5e23
commit 70a58c7328
2 changed files with 13 additions and 9 deletions
+12 -9
View File
@@ -270,19 +270,12 @@ export type CatalogEnvironment = {
//
// @public (undocumented)
export interface CatalogProcessingEngine {
// (undocumented)
refresh(options: CatalogProcessingEngineRefreshOptions): Promise<void>;
// (undocumented)
start(): Promise<void>;
// (undocumented)
stop(): Promise<void>;
}
// @public (undocumented)
export type CatalogProcessingEngineRefreshOptions = {
entityRef: string;
};
// Warning: (ae-missing-release-tag) "CatalogProcessingOrchestrator" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -1239,7 +1232,7 @@ export interface NextRouterOptions {
// (undocumented)
logger: Logger_2;
// (undocumented)
processingEngine?: CatalogProcessingEngine;
refreshService?: RefreshService;
}
// Warning: (ae-missing-release-tag) "notFoundError" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
@@ -1360,6 +1353,16 @@ export type RecursivePartial<T> = {
// @public
export type RefreshIntervalFunction = () => number;
// @public
export type RefreshOptions = {
entityRef: string;
};
// @public
export interface RefreshService {
refresh(options: RefreshOptions): Promise<void>;
}
// Warning: (ae-missing-release-tag) "relation" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -1396,7 +1399,7 @@ export interface RouterOptions {
// (undocumented)
logger: Logger_2;
// (undocumented)
processingEngine?: CatalogProcessingEngine;
refreshService?: RefreshService;
}
// Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
@@ -29,4 +29,5 @@ export type {
LocationService,
LocationStore,
RefreshOptions,
RefreshService,
} from './types';