From d640a8a88d057053ce8ad831866968a6b4e8cf1f Mon Sep 17 00:00:00 2001
From: Ryan Brink <5607577+unredundant@users.noreply.github.com>
Date: Sun, 17 Jul 2022 10:13:59 -0600
Subject: [PATCH] i have no idea what this is
Signed-off-by: Ryan Brink <5607577+unredundant@users.noreply.github.com>
---
plugins/apollo-explorer/api-report.md | 52 +++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
create mode 100644 plugins/apollo-explorer/api-report.md
diff --git a/plugins/apollo-explorer/api-report.md b/plugins/apollo-explorer/api-report.md
new file mode 100644
index 0000000000..19828afe15
--- /dev/null
+++ b/plugins/apollo-explorer/api-report.md
@@ -0,0 +1,52 @@
+## API Report File for "@backstage/plugin-apollo-explorer"
+
+> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
+
+```ts
+///
+
+import { BackstagePlugin } from '@backstage/core-plugin-api';
+import { JSONObject } from '@apollo/explorer/src/helpers/types';
+import { RouteRef } from '@backstage/core-plugin-api';
+
+// Warning: (ae-missing-release-tag) "ApolloExplorerPage" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
+//
+// @public (undocumented)
+export const ApolloExplorerPage: ({
+ title,
+ subtitle,
+ endpoints,
+}: {
+ title?: string | undefined;
+ subtitle?: string | undefined;
+ endpoints: {
+ title: string;
+ graphRef: string;
+ persistExplorerState?: boolean | undefined;
+ initialState?:
+ | {
+ document?: string | undefined;
+ variables?: JSONObject | undefined;
+ headers?: Record | undefined;
+ displayOptions: {
+ docsPanelState?: 'closed' | 'open' | undefined;
+ showHeadersAndEnvVars?: boolean | undefined;
+ theme?: 'dark' | 'light' | undefined;
+ };
+ }
+ | undefined;
+ }[];
+}) => JSX.Element;
+
+// Warning: (ae-missing-release-tag) "apolloExplorerPlugin" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
+//
+// @public (undocumented)
+export const apolloExplorerPlugin: BackstagePlugin<
+ {
+ root: RouteRef;
+ },
+ {}
+>;
+
+// (No @packageDocumentation comment for this package)
+```