graphiql: update API reports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-09-07 18:45:02 +02:00
parent 4c5d0c6a8c
commit f55667b7a0
2 changed files with 34 additions and 1 deletions
+33
View File
@@ -0,0 +1,33 @@
## API Report File for "@backstage/plugin-graphiql"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { BackstagePlugin } from '@backstage/frontend-plugin-api';
import { Extension } from '@backstage/frontend-plugin-api';
import { GraphQLEndpoint } from '@backstage/plugin-graphiql';
import { PortableSchema } from '@backstage/frontend-plugin-api';
// @alpha (undocumented)
export function createEndpointExtension<TConfig extends {}>(options: {
id: string;
configSchema?: PortableSchema<TConfig>;
factory: (options: { config: TConfig }) => {
endpoint: GraphQLEndpoint;
};
}): Extension<TConfig>;
// @alpha (undocumented)
const _default: BackstagePlugin;
export default _default;
// @alpha (undocumented)
export const graphiqlBrowseApi: Extension<{}>;
// @alpha (undocumented)
export const GraphiqlPage: Extension<{
path: string;
}>;
// (No @packageDocumentation comment for this package)
```
+1 -1
View File
@@ -28,7 +28,7 @@ import {
graphQlBrowseApiRef,
GraphQLEndpoints,
GraphQLEndpoint,
} from './lib/api';
} from '@backstage/plugin-graphiql';
import { createApiFactory } from '@backstage/core-plugin-api';
/** @alpha */