run api report

Signed-off-by: Paul Schultz <pschultz@pobox.com>
This commit is contained in:
Paul Schultz
2025-09-16 12:48:47 -05:00
parent 161999e837
commit 42c8a67fb4
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ export class ConfigReader implements Config {
constructor(
data: JsonObject_2 | undefined,
context?: string,
fallback?: ConfigReader | undefined,
fallback?: ConfigReader,
prefix?: string,
);
static fromConfigs(configs: AppConfig[]): ConfigReader;
+1 -1
View File
@@ -518,7 +518,7 @@ export class WithPagination<
constructor(
createUrl: (options: PaginationOptions) => URL,
fetch: (url: URL) => Promise<TPage>,
pagelen?: number | undefined,
pagelen?: number,
);
// (undocumented)
getPage(options?: PaginationOptions): Promise<TPage>;
+1 -1
View File
@@ -685,7 +685,7 @@ export class EntityUserFilter implements EntityFilter {
// (undocumented)
static owned(ownershipEntityRefs: string[]): EntityUserFilter;
// (undocumented)
readonly refs?: string[] | undefined;
readonly refs?: string[];
// (undocumented)
static starred(starredEntityRefs: string[]): EntityUserFilter;
// (undocumented)
@@ -348,7 +348,7 @@ export class ElasticSearchSearchEngine implements SearchEngine {
indexPrefix: string,
logger: LoggerService,
batchSize: number,
batchKeyField?: string | undefined,
batchKeyField?: string,
highlightOptions?: ElasticSearchHighlightOptions,
queryOptions?: ElasticSearchQueryConfig,
);
+2 -2
View File
@@ -89,9 +89,9 @@ export type HighlightedSearchResultTextProps = {
// @public
export class MockSearchApi implements SearchApi {
constructor(mockedResults?: SearchResultSet | undefined);
constructor(mockedResults?: SearchResultSet);
// (undocumented)
mockedResults?: SearchResultSet | undefined;
mockedResults?: SearchResultSet;
// (undocumented)
query(
_query: SearchQuery,