update api reports

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-08-11 16:24:24 +02:00
parent 60833f16d7
commit 7d80daf594
2 changed files with 29 additions and 1 deletions
+28
View File
@@ -3,7 +3,16 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { AnyServiceFactory } from '@backstage/backend-plugin-api';
import { Backend } from '@backstage/backend-app-api';
import { BackendRegistrable } from '@backstage/backend-plugin-api';
import { Knex } from 'knex';
import { ServiceRef } from '@backstage/backend-plugin-api';
// @alpha (undocumented)
export function createTestBackend<TServices extends any[]>(
options: TestBackendOptions<TServices>,
): Backend;
// @public (undocumented)
export function isDockerDisabledForTests(): boolean;
@@ -15,6 +24,25 @@ export function setupRequestMockHandlers(worker: {
resetHandlers: () => void;
}): void;
// @alpha (undocumented)
export function startTestBackend<TServices extends any[]>(
options: TestBackendOptions<TServices> & {
registrables?: BackendRegistrable[];
},
): Promise<void>;
// @alpha (undocumented)
export interface TestBackendOptions<TServices extends any[]> {
// (undocumented)
services: readonly [
...{
[index in keyof TServices]:
| AnyServiceFactory
| [ServiceRef<TServices[index]>, Partial<TServices[index]>];
},
];
}
// @public
export type TestDatabaseId =
| 'POSTGRES_13'
+1 -1
View File
@@ -19,7 +19,7 @@ export interface CatalogProcessingExtensionPoint {
}
// @alpha (undocumented)
export const catalogProcessingExtentionPoint: ServiceRef<CatalogProcessingExtensionPoint>;
export const catalogProcessingExtensionPoint: ServiceRef<CatalogProcessingExtensionPoint>;
// @public (undocumented)
export type CatalogProcessor = {