openapi-utils: api-reports for tests subpath

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>
This commit is contained in:
Vincenzo Scamporlino
2025-01-21 22:22:40 +01:00
parent 4b196c4d4d
commit df43519ede
2 changed files with 18 additions and 10 deletions
@@ -0,0 +1,18 @@
## API Report File for "@backstage/backend-openapi-utils"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
/// <reference types="node" />
import { Express as Express_2 } from 'express';
import { Server } from 'http';
// @public
export const wrapInOpenApiTestServer: (app: Express_2) => Server | Express_2;
// @public
export function wrapServer(app: Express_2): Promise<Server>;
// (No @packageDocumentation comment for this package)
```
@@ -3,11 +3,8 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
/// <reference types="node" />
import type { ContentObject } from 'openapi3-ts';
import type core from 'express-serve-static-core';
import { Express as Express_2 } from 'express';
import { FromSchema } from 'json-schema-to-ts';
import { JSONSchema } from 'json-schema-to-ts';
import { middleware } from 'express-openapi-validator';
@@ -19,7 +16,6 @@ import { RequestHandler } from 'express';
import type { ResponseObject } from 'openapi3-ts';
import { Router } from 'express';
import type { SchemaObject } from 'openapi3-ts';
import { Server } from 'http';
// @public
export interface ApiRouter<Doc extends RequiredDoc> extends Router {
@@ -925,10 +921,4 @@ type UnknownIfNever<P> = [P] extends [never] ? unknown : P;
// @public
type ValueOf<T> = T[keyof T];
// @public
export const wrapInOpenApiTestServer: (app: Express_2) => Server | Express_2;
// @public
export function wrapServer(app: Express_2): Promise<Server>;
```