zudoku 0.0.0-fcb84d6 → 0.0.0-fd8f8ad
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +121 -0
- package/cli.js +2 -2
- package/dist/app/demo.js +0 -2
- package/dist/app/demo.js.map +1 -1
- package/dist/app/entry.client.js +16 -2
- package/dist/app/entry.client.js.map +1 -1
- package/dist/app/entry.server.js +9 -6
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/main.d.ts +2 -1
- package/dist/app/main.js +11 -28
- package/dist/app/main.js.map +1 -1
- package/dist/app/standalone.js +0 -2
- package/dist/app/standalone.js.map +1 -1
- package/dist/cli/cli.js +1 -2
- package/dist/cli/cli.js.map +1 -1
- package/dist/cli/common/machine-id/lib.js.map +1 -1
- package/dist/cli/common/outdated.js.map +1 -1
- package/dist/cli/common/utils/box.js.map +1 -1
- package/dist/codegen.d.ts +3 -0
- package/dist/codegen.js +45 -0
- package/dist/codegen.js.map +1 -0
- package/dist/config/validators/InputSidebarSchema.d.ts +12 -12
- package/dist/config/validators/SidebarSchema.d.ts +24 -1
- package/dist/config/validators/SidebarSchema.js +76 -39
- package/dist/config/validators/SidebarSchema.js.map +1 -1
- package/dist/config/validators/validate.d.ts +398 -252
- package/dist/config/validators/validate.js +23 -7
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +2 -2
- package/dist/lib/authentication/components/CallbackHandler.js +21 -31
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +1 -1
- package/dist/lib/authentication/hook.js +1 -1
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/auth0.js +10 -9
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/state.d.ts +1 -1
- package/dist/lib/authentication/state.js +5 -3
- package/dist/lib/authentication/state.js.map +1 -1
- package/dist/lib/authentication/use-broadcast/shared.d.ts +48 -0
- package/dist/lib/authentication/use-broadcast/shared.js +243 -0
- package/dist/lib/authentication/use-broadcast/shared.js.map +1 -0
- package/dist/lib/authentication/use-broadcast/useBroadcast.d.ts +24 -0
- package/dist/lib/authentication/use-broadcast/useBroadcast.js +106 -0
- package/dist/lib/authentication/use-broadcast/useBroadcast.js.map +1 -0
- package/dist/lib/components/Bootstrap.d.ts +3 -1
- package/dist/lib/components/Bootstrap.js +11 -3
- package/dist/lib/components/Bootstrap.js.map +1 -1
- package/dist/lib/components/ClientOnly.d.ts +4 -2
- package/dist/lib/components/ClientOnly.js +1 -1
- package/dist/lib/components/ClientOnly.js.map +1 -1
- package/dist/lib/components/DeveloperHint.js +2 -1
- package/dist/lib/components/DeveloperHint.js.map +1 -1
- package/dist/lib/components/Header.js +10 -7
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +1 -1
- package/dist/lib/components/MobileTopNavigation.js +7 -3
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/SlotletProvider.d.ts +2 -1
- package/dist/lib/components/SlotletProvider.js.map +1 -1
- package/dist/lib/components/SyntaxHighlight.js +19 -12
- package/dist/lib/components/SyntaxHighlight.js.map +1 -1
- package/dist/lib/components/ThemeSwitch.d.ts +1 -0
- package/dist/lib/components/ThemeSwitch.js +11 -0
- package/dist/lib/components/ThemeSwitch.js.map +1 -0
- package/dist/lib/components/TopNavigation.d.ts +3 -0
- package/dist/lib/components/TopNavigation.js +38 -5
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/{DevPortal.d.ts → Zudoku.d.ts} +3 -3
- package/dist/lib/components/{DevPortal.js → Zudoku.js} +13 -14
- package/dist/lib/components/Zudoku.js.map +1 -0
- package/dist/lib/components/context/ZudokuContext.d.ts +10 -14
- package/dist/lib/components/context/ZudokuContext.js +27 -26
- package/dist/lib/components/context/ZudokuContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuProvider.d.ts +2 -2
- package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
- package/dist/lib/components/index.d.ts +20 -13
- package/dist/lib/components/index.js +11 -5
- package/dist/lib/components/index.js.map +1 -1
- package/dist/lib/components/navigation/Sidebar.js +3 -3
- package/dist/lib/components/navigation/Sidebar.js.map +1 -1
- package/dist/lib/components/navigation/SidebarCategory.js +12 -7
- package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
- package/dist/lib/components/navigation/SidebarItem.js +3 -5
- package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
- package/dist/lib/components/navigation/utils.js +10 -14
- package/dist/lib/components/navigation/utils.js.map +1 -1
- package/dist/lib/core/{DevPortalContext.d.ts → ZudokuContext.d.ts} +6 -13
- package/dist/lib/core/{DevPortalContext.js → ZudokuContext.js} +2 -7
- package/dist/lib/core/ZudokuContext.js.map +1 -0
- package/dist/lib/core/plugins.d.ts +13 -12
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/errors/ErrorAlert.d.ts +1 -1
- package/dist/lib/errors/ErrorAlert.js +8 -3
- package/dist/lib/errors/ErrorAlert.js.map +1 -1
- package/dist/lib/oas/graphql/index.js +4 -4
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/upgrade/index.js +3 -1
- package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/CreateApiKey.js +1 -1
- package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +9 -9
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/custom-pages/CustomPage.js +2 -2
- package/dist/lib/plugins/custom-pages/index.d.ts +2 -2
- package/dist/lib/plugins/custom-pages/index.js.map +1 -1
- package/dist/lib/plugins/markdown/index.d.ts +6 -7
- package/dist/lib/plugins/markdown/index.js +31 -3
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/markdown/resolver.d.ts +38 -0
- package/dist/lib/plugins/markdown/resolver.js +75 -0
- package/dist/lib/plugins/markdown/resolver.js.map +1 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +5 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js +24 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -0
- package/dist/lib/plugins/openapi/ColorizedParam.js +13 -9
- package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
- package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -1
- package/dist/lib/plugins/openapi/Endpoint.js +5 -9
- package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.d.ts +2 -2
- package/dist/lib/plugins/openapi/OperationList.js +21 -22
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js +6 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +7 -3
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +9 -2
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/Route.d.ts +4 -4
- package/dist/lib/plugins/openapi/Route.js +2 -4
- package/dist/lib/plugins/openapi/Route.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.d.ts +1 -1
- package/dist/lib/plugins/openapi/Sidecar.js +35 -33
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +8 -0
- package/dist/lib/plugins/openapi/client/GraphQLClient.js +102 -0
- package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -0
- package/dist/lib/plugins/openapi/client/GraphQLContext.d.ts +7 -0
- package/dist/lib/plugins/openapi/client/GraphQLContext.js +5 -0
- package/dist/lib/plugins/openapi/client/GraphQLContext.js.map +1 -0
- package/dist/lib/plugins/openapi/client/createServer.d.ts +1 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +5 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.js +13 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -0
- package/dist/lib/plugins/openapi/client/worker.d.ts +4 -1
- package/dist/lib/plugins/openapi/client/worker.js +23 -14
- package/dist/lib/plugins/openapi/client/worker.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/fragment-masking.d.ts +3 -3
- package/dist/lib/plugins/openapi/graphql/fragment-masking.js +3 -4
- package/dist/lib/plugins/openapi/graphql/fragment-masking.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.d.ts +5 -51
- package/dist/lib/plugins/openapi/graphql/gql.js +4 -2
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +32 -8
- package/dist/lib/plugins/openapi/graphql/graphql.js +194 -662
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +2 -2
- package/dist/lib/plugins/openapi/index.js +40 -53
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Playground.js +2 -1
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js +2 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +0 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +25 -36
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
- package/dist/lib/plugins/openapi-worker.d.ts +1 -1
- package/dist/lib/plugins/openapi-worker.js +7 -1
- package/dist/lib/plugins/openapi-worker.js.map +1 -1
- package/dist/lib/plugins/redirect/index.d.ts +4 -7
- package/dist/lib/plugins/redirect/index.js +1 -1
- package/dist/lib/plugins/redirect/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/index.d.ts +2 -2
- package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
- package/dist/lib/ui/Accordion.d.ts +7 -0
- package/dist/lib/ui/Accordion.js +14 -0
- package/dist/lib/ui/Accordion.js.map +1 -0
- package/dist/lib/ui/ActionButton.d.ts +4 -0
- package/dist/lib/ui/ActionButton.js +10 -0
- package/dist/lib/ui/ActionButton.js.map +1 -0
- package/dist/lib/ui/Alert.d.ts +8 -0
- package/dist/lib/ui/Alert.js +23 -0
- package/dist/lib/ui/Alert.js.map +1 -0
- package/dist/lib/ui/AlertDialog.d.ts +20 -0
- package/dist/lib/ui/AlertDialog.js +27 -0
- package/dist/lib/ui/AlertDialog.js.map +1 -0
- package/dist/lib/ui/AspectRatio.d.ts +3 -0
- package/dist/lib/ui/AspectRatio.js +4 -0
- package/dist/lib/ui/AspectRatio.js.map +1 -0
- package/dist/lib/ui/Badge.d.ts +9 -0
- package/dist/lib/ui/Badge.js +21 -0
- package/dist/lib/ui/Badge.js.map +1 -0
- package/dist/lib/ui/Breadcrumb.d.ts +19 -0
- package/dist/lib/ui/Breadcrumb.js +24 -0
- package/dist/lib/ui/Breadcrumb.js.map +1 -0
- package/dist/lib/ui/Button.d.ts +2 -3
- package/dist/lib/ui/Button.js +1 -1
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/Carousel.d.ts +18 -0
- package/dist/lib/ui/Carousel.js +99 -0
- package/dist/lib/ui/Carousel.js.map +1 -0
- package/dist/lib/ui/Checkbox.d.ts +4 -0
- package/dist/lib/ui/Checkbox.js +9 -0
- package/dist/lib/ui/Checkbox.js.map +1 -0
- package/dist/lib/ui/Collapsible.d.ts +5 -0
- package/dist/lib/ui/Collapsible.js +6 -0
- package/dist/lib/ui/Collapsible.js.map +1 -0
- package/dist/lib/ui/Command.d.ts +80 -0
- package/dist/lib/ui/Command.js +31 -0
- package/dist/lib/ui/Command.js.map +1 -0
- package/dist/lib/{components → ui}/Dialog.js +2 -2
- package/dist/lib/ui/Dialog.js.map +1 -0
- package/dist/lib/ui/Form.d.ts +23 -0
- package/dist/lib/ui/Form.js +63 -0
- package/dist/lib/ui/Form.js.map +1 -0
- package/dist/lib/ui/HoverCard.d.ts +6 -0
- package/dist/lib/ui/HoverCard.js +10 -0
- package/dist/lib/ui/HoverCard.js.map +1 -0
- package/dist/lib/ui/Label.d.ts +5 -0
- package/dist/lib/ui/Label.js +10 -0
- package/dist/lib/ui/Label.js.map +1 -0
- package/dist/lib/ui/Pagination.d.ts +28 -0
- package/dist/lib/ui/Pagination.js +24 -0
- package/dist/lib/ui/Pagination.js.map +1 -0
- package/dist/lib/ui/Popover.d.ts +6 -0
- package/dist/lib/ui/Popover.js +10 -0
- package/dist/lib/ui/Popover.js.map +1 -0
- package/dist/lib/ui/Progress.d.ts +4 -0
- package/dist/lib/ui/Progress.js +8 -0
- package/dist/lib/ui/Progress.js.map +1 -0
- package/dist/lib/ui/RadioGroup.d.ts +5 -0
- package/dist/lib/ui/RadioGroup.js +15 -0
- package/dist/lib/ui/RadioGroup.js.map +1 -0
- package/dist/lib/ui/ScrollArea.d.ts +5 -0
- package/dist/lib/ui/ScrollArea.js +12 -0
- package/dist/lib/ui/ScrollArea.js.map +1 -0
- package/dist/lib/ui/Select.js.map +1 -0
- package/dist/lib/ui/Skeleton.d.ts +2 -0
- package/dist/lib/ui/Skeleton.js +7 -0
- package/dist/lib/ui/Skeleton.js.map +1 -0
- package/dist/lib/ui/Slider.d.ts +4 -0
- package/dist/lib/ui/Slider.js +8 -0
- package/dist/lib/ui/Slider.js.map +1 -0
- package/dist/lib/ui/Switch.d.ts +4 -0
- package/dist/lib/ui/Switch.js +8 -0
- package/dist/lib/ui/Switch.js.map +1 -0
- package/dist/lib/ui/Textarea.d.ts +4 -0
- package/dist/lib/ui/Textarea.js +9 -0
- package/dist/lib/ui/Textarea.js.map +1 -0
- package/dist/lib/ui/Toggle.d.ts +12 -0
- package/dist/lib/ui/Toggle.js +26 -0
- package/dist/lib/ui/Toggle.js.map +1 -0
- package/dist/lib/ui/ToggleGroup.d.ts +12 -0
- package/dist/lib/ui/ToggleGroup.js +21 -0
- package/dist/lib/ui/ToggleGroup.js.map +1 -0
- package/dist/lib/ui/Tooltip.d.ts +7 -0
- package/dist/lib/ui/Tooltip.js +11 -0
- package/dist/lib/ui/Tooltip.js.map +1 -0
- package/dist/lib/util/MdxComponents.d.ts +1 -1
- package/dist/lib/util/MdxComponents.js.map +1 -1
- package/dist/lib/util/invariant.d.ts +9 -0
- package/dist/lib/util/invariant.js +7 -3
- package/dist/lib/util/invariant.js.map +1 -1
- package/dist/lib/util/useExposedProps.js +3 -2
- package/dist/lib/util/useExposedProps.js.map +1 -1
- package/dist/lib/util/useIsomorphicLayoutEffect.d.ts +3 -0
- package/dist/lib/util/useIsomorphicLayoutEffect.js +4 -0
- package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -0
- package/dist/lib/util/useOnScreen.d.ts +4 -0
- package/dist/lib/util/useOnScreen.js +19 -0
- package/dist/lib/util/useOnScreen.js.map +1 -0
- package/dist/lib/util/useScrollToAnchor.js.map +1 -1
- package/dist/vite/build.js +12 -3
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.d.ts +2 -8
- package/dist/vite/config.js +24 -60
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/debug.d.ts +1 -0
- package/dist/vite/debug.js +10 -0
- package/dist/vite/debug.js.map +1 -0
- package/dist/vite/dev-server.js +1 -1
- package/dist/vite/dev-server.js.map +1 -1
- package/dist/vite/html.js +0 -2
- package/dist/vite/html.js.map +1 -1
- package/dist/vite/output.d.ts +101 -0
- package/dist/vite/output.js +33 -0
- package/dist/vite/output.js.map +1 -0
- package/dist/vite/plugin-component.js +17 -7
- package/dist/vite/plugin-component.js.map +1 -1
- package/dist/vite/plugin-config-reload.js +0 -2
- package/dist/vite/plugin-config-reload.js.map +1 -1
- package/dist/vite/plugin-config.d.ts +2 -3
- package/dist/vite/plugin-config.js +2 -3
- package/dist/vite/plugin-config.js.map +1 -1
- package/dist/vite/plugin-docs.js +37 -26
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-frontmatter.d.ts +2 -1
- package/dist/vite/plugin-frontmatter.js +27 -24
- package/dist/vite/plugin-frontmatter.js.map +1 -1
- package/dist/vite/plugin-mdx.d.ts +0 -6
- package/dist/vite/plugin-mdx.js +3 -2
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-search.d.ts +3 -0
- package/dist/vite/plugin-search.js +26 -0
- package/dist/vite/plugin-search.js.map +1 -0
- package/dist/vite/plugin-sidebar.js +7 -6
- package/dist/vite/plugin-sidebar.js.map +1 -1
- package/dist/vite/plugin.js +4 -4
- package/dist/vite/plugin.js.map +1 -1
- package/dist/vite/prerender.d.ts +5 -1
- package/dist/vite/prerender.js +7 -5
- package/dist/vite/prerender.js.map +1 -1
- package/dist/vite/remarkStaticGeneration.d.ts +3 -0
- package/dist/vite/remarkStaticGeneration.js +125 -0
- package/dist/vite/remarkStaticGeneration.js.map +1 -0
- package/lib/{utils-C8S3st2k.js → AnchorLink-CDlhr8gL.js} +232 -275
- package/lib/AnchorLink-CDlhr8gL.js.map +1 -0
- package/lib/{AuthenticationPlugin-D1nhROkO.js → AuthenticationPlugin-DeGDVa1r.js} +6 -5
- package/lib/{AuthenticationPlugin-D1nhROkO.js.map → AuthenticationPlugin-DeGDVa1r.js.map} +1 -1
- package/lib/Button-jK0EsymC.js +48 -0
- package/lib/Button-jK0EsymC.js.map +1 -0
- package/lib/{CategoryHeading-B7TlPvuN.js → CategoryHeading-Bb9dqxD3.js} +4 -4
- package/lib/{CategoryHeading-B7TlPvuN.js.map → CategoryHeading-Bb9dqxD3.js.map} +1 -1
- package/lib/ClientOnly-E7hGysn1.js +11 -0
- package/lib/ClientOnly-E7hGysn1.js.map +1 -0
- package/lib/Dialog-k70Qfukb.js +67 -0
- package/lib/Dialog-k70Qfukb.js.map +1 -0
- package/lib/Markdown-BorQdbxW.js +15192 -0
- package/lib/Markdown-BorQdbxW.js.map +1 -0
- package/lib/{MdxPage-B4FcPIi5.js → MdxPage-DFlbtJWi.js} +33 -31
- package/lib/{MdxPage-B4FcPIi5.js.map → MdxPage-DFlbtJWi.js.map} +1 -1
- package/lib/OperationList-KshJrrLL.js +4691 -0
- package/lib/OperationList-KshJrrLL.js.map +1 -0
- package/lib/Route-DlG_HTMu.js +11 -0
- package/lib/Route-DlG_HTMu.js.map +1 -0
- package/lib/Select-DP74t8Yy.js +223 -0
- package/lib/Select-DP74t8Yy.js.map +1 -0
- package/lib/SidebarBadge-DxFJcJ6V.js +51 -0
- package/lib/SidebarBadge-DxFJcJ6V.js.map +1 -0
- package/lib/SlotletProvider-D2v6rJy1.js +252 -0
- package/lib/SlotletProvider-D2v6rJy1.js.map +1 -0
- package/lib/SyntaxHighlight-CBmwwKoM.js +2983 -0
- package/lib/SyntaxHighlight-CBmwwKoM.js.map +1 -0
- package/lib/__vite-browser-external-BYRIRx8p.js +9 -0
- package/lib/__vite-browser-external-BYRIRx8p.js.map +1 -0
- package/lib/_commonjsHelpers-BkfeUUK-.js +29 -0
- package/lib/_commonjsHelpers-BkfeUUK-.js.map +1 -0
- package/lib/assets/{worker-Bf8vjASY.js → worker-CPsGZsve.js} +565 -561
- package/lib/assets/{worker-Bf8vjASY.js.map → worker-CPsGZsve.js.map} +1 -1
- package/lib/cn-BmFQLtkS.js +2279 -0
- package/lib/cn-BmFQLtkS.js.map +1 -0
- package/lib/context-D1nXWxm7.js +22 -0
- package/lib/context-D1nXWxm7.js.map +1 -0
- package/lib/createServer-DK-g7kbB.js +16089 -0
- package/lib/createServer-DK-g7kbB.js.map +1 -0
- package/lib/hook-Diu0rqp-.js +229 -0
- package/lib/hook-Diu0rqp-.js.map +1 -0
- package/lib/index-BcesIHH4.js +1273 -0
- package/lib/index-BcesIHH4.js.map +1 -0
- package/lib/index-Bn6Lc9tq.js +9 -0
- package/lib/{index-DJqnphbT.js.map → index-Bn6Lc9tq.js.map} +1 -1
- package/lib/index-BuAyrJe3.js +46 -0
- package/lib/index-BuAyrJe3.js.map +1 -0
- package/lib/index-Czzd9rjU.js +899 -0
- package/lib/index-Czzd9rjU.js.map +1 -0
- package/lib/{index-D06ATMgg.js → index-LNp6rxyU.js} +2 -2
- package/lib/{index-D06ATMgg.js.map → index-LNp6rxyU.js.map} +1 -1
- package/lib/index-Yn8c3UWE.js +921 -0
- package/lib/index-Yn8c3UWE.js.map +1 -0
- package/lib/index.esm-C5mr_sKO.js +1193 -0
- package/lib/index.esm-C5mr_sKO.js.map +1 -0
- package/lib/invariant-Caa8-XvF.js +26 -0
- package/lib/invariant-Caa8-XvF.js.map +1 -0
- package/lib/{router-BsfSoK2j.js → router-lfyopgBI.js} +23 -23
- package/lib/{router-BsfSoK2j.js.map → router-lfyopgBI.js.map} +1 -1
- package/lib/state-BsPrOUAh.js +252 -0
- package/lib/state-BsPrOUAh.js.map +1 -0
- package/lib/ui/Accordion.js +47 -0
- package/lib/ui/Accordion.js.map +1 -0
- package/lib/ui/ActionButton.js +25 -0
- package/lib/ui/ActionButton.js.map +1 -0
- package/lib/ui/Alert.js +51 -0
- package/lib/ui/Alert.js.map +1 -0
- package/lib/ui/AlertDialog.js +114 -0
- package/lib/ui/AlertDialog.js.map +1 -0
- package/lib/ui/AspectRatio.js +6 -0
- package/lib/ui/AspectRatio.js.map +1 -0
- package/lib/ui/Badge.js +27 -0
- package/lib/ui/Badge.js.map +1 -0
- package/lib/ui/Breadcrumb.js +94 -0
- package/lib/ui/Breadcrumb.js.map +1 -0
- package/lib/ui/Button.js +49 -0
- package/lib/ui/Button.js.map +1 -0
- package/lib/ui/Callout.js +77 -0
- package/lib/ui/Callout.js.map +1 -0
- package/lib/ui/Card.js +62 -0
- package/lib/ui/Card.js.map +1 -0
- package/lib/ui/Carousel.js +1410 -0
- package/lib/ui/Carousel.js.map +1 -0
- package/lib/ui/Checkbox.js +28 -0
- package/lib/ui/Checkbox.js.map +1 -0
- package/lib/ui/Collapsible.js +8 -0
- package/lib/ui/Collapsible.js.map +1 -0
- package/lib/ui/Command.js +550 -0
- package/lib/ui/Command.js.map +1 -0
- package/lib/ui/Dialog.js +101 -0
- package/lib/ui/Dialog.js.map +1 -0
- package/lib/ui/Drawer.js +1153 -0
- package/lib/ui/Drawer.js.map +1 -0
- package/lib/ui/DropdownMenu.js +145 -0
- package/lib/ui/DropdownMenu.js.map +1 -0
- package/lib/ui/Form.js +95 -0
- package/lib/ui/Form.js.map +1 -0
- package/lib/ui/HoverCard.js +24 -0
- package/lib/ui/HoverCard.js.map +1 -0
- package/lib/ui/Input.js +22 -0
- package/lib/ui/Input.js.map +1 -0
- package/lib/ui/Label.js +20 -0
- package/lib/ui/Label.js.map +1 -0
- package/lib/ui/Pagination.js +106 -0
- package/lib/ui/Pagination.js.map +1 -0
- package/lib/ui/Popover.js +24 -0
- package/lib/ui/Popover.js.map +1 -0
- package/lib/ui/Progress.js +27 -0
- package/lib/ui/Progress.js.map +1 -0
- package/lib/ui/RadioGroup.js +32 -0
- package/lib/ui/RadioGroup.js.map +1 -0
- package/lib/ui/ScrollArea.js +39 -0
- package/lib/ui/ScrollArea.js.map +1 -0
- package/lib/ui/Select.js +122 -0
- package/lib/ui/Select.js.map +1 -0
- package/lib/ui/Skeleton.js +18 -0
- package/lib/ui/Skeleton.js.map +1 -0
- package/lib/ui/Slider.js +24 -0
- package/lib/ui/Slider.js.map +1 -0
- package/lib/ui/Switch.js +28 -0
- package/lib/ui/Switch.js.map +1 -0
- package/lib/ui/Tabs.js +47 -0
- package/lib/ui/Tabs.js.map +1 -0
- package/lib/ui/Textarea.js +21 -0
- package/lib/ui/Textarea.js.map +1 -0
- package/lib/ui/Toggle.js +38 -0
- package/lib/ui/Toggle.js.map +1 -0
- package/lib/ui/ToggleGroup.js +42 -0
- package/lib/ui/ToggleGroup.js.map +1 -0
- package/lib/ui/Tooltip.js +24 -0
- package/lib/ui/Tooltip.js.map +1 -0
- package/lib/useExposedProps-CTPtylCV.js +10 -0
- package/lib/useExposedProps-CTPtylCV.js.map +1 -0
- package/lib/{ZudokuContext-MRoel6bS.js → utils-DcpDOncX.js} +455 -410
- package/lib/utils-DcpDOncX.js.map +1 -0
- package/lib/zudoku.auth-auth0.js +24 -19
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +2 -2
- package/lib/zudoku.auth-openid.js +482 -488
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.components.js +1109 -2963
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.openapi-worker.js +10 -16336
- package/lib/zudoku.openapi-worker.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +68 -75
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +9 -8
- package/lib/zudoku.plugin-custom-pages.js.map +1 -1
- package/lib/zudoku.plugin-markdown.js +93 -27
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +6 -11
- package/lib/zudoku.plugin-openapi.js.map +1 -1
- package/lib/zudoku.plugin-redirect.js +2 -2
- package/lib/zudoku.plugin-redirect.js.map +1 -1
- package/lib/zudoku.plugin-search-inkeep.js +9 -13
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/package.json +42 -10
- package/src/app/demo.tsx +0 -3
- package/src/app/entry.client.tsx +18 -2
- package/src/app/entry.server.tsx +60 -50
- package/src/app/main.css +5 -2
- package/src/app/main.tsx +16 -34
- package/src/app/standalone.tsx +1 -4
- package/src/lib/authentication/authentication.ts +2 -2
- package/src/lib/authentication/components/CallbackHandler.tsx +20 -51
- package/src/lib/authentication/hook.ts +1 -1
- package/src/lib/authentication/providers/auth0.tsx +15 -10
- package/src/lib/authentication/state.ts +12 -5
- package/{LICENSE.md → src/lib/authentication/use-broadcast/LICENSE.md} +2 -2
- package/src/lib/authentication/use-broadcast/shared.ts +372 -0
- package/src/lib/authentication/use-broadcast/useBroadcast.ts +146 -0
- package/src/lib/components/Bootstrap.tsx +36 -9
- package/src/lib/components/ClientOnly.tsx +6 -3
- package/src/lib/components/DeveloperHint.tsx +6 -1
- package/src/lib/components/Header.tsx +50 -40
- package/src/lib/components/MobileTopNavigation.tsx +9 -1
- package/src/lib/components/SlotletProvider.tsx +2 -0
- package/src/lib/components/SyntaxHighlight.tsx +84 -46
- package/src/lib/components/ThemeSwitch.tsx +24 -0
- package/src/lib/components/TopNavigation.tsx +70 -23
- package/src/lib/components/Zudoku.tsx +108 -0
- package/src/lib/components/context/ZudokuContext.ts +33 -30
- package/src/lib/components/context/ZudokuProvider.tsx +2 -2
- package/src/lib/components/index.ts +14 -6
- package/src/lib/components/navigation/Sidebar.tsx +5 -5
- package/src/lib/components/navigation/SidebarCategory.tsx +13 -13
- package/src/lib/components/navigation/SidebarItem.tsx +3 -5
- package/src/lib/components/navigation/utils.ts +11 -16
- package/src/lib/core/{DevPortalContext.ts → ZudokuContext.ts} +6 -13
- package/src/lib/core/plugins.ts +14 -16
- package/src/lib/errors/ErrorAlert.tsx +20 -6
- package/src/lib/oas/graphql/index.ts +4 -4
- package/src/lib/oas/parser/upgrade/index.ts +3 -1
- package/src/lib/plugins/api-keys/CreateApiKey.tsx +2 -2
- package/src/lib/plugins/api-keys/index.tsx +9 -9
- package/src/lib/plugins/custom-pages/CustomPage.tsx +2 -2
- package/src/lib/plugins/custom-pages/index.tsx +2 -2
- package/src/lib/plugins/markdown/index.tsx +50 -13
- package/src/lib/plugins/markdown/resolver.ts +92 -0
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +80 -0
- package/src/lib/plugins/openapi/ColorizedParam.tsx +23 -14
- package/src/lib/plugins/openapi/Endpoint.tsx +7 -12
- package/src/lib/plugins/openapi/OperationList.tsx +20 -40
- package/src/lib/plugins/openapi/ParameterListItem.tsx +37 -31
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +18 -13
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +17 -12
- package/src/lib/plugins/openapi/Route.tsx +11 -12
- package/src/lib/plugins/openapi/Sidecar.tsx +73 -59
- package/src/lib/plugins/openapi/client/GraphQLClient.tsx +140 -0
- package/src/lib/plugins/openapi/client/GraphQLContext.tsx +16 -0
- package/src/lib/plugins/openapi/client/createServer.ts +2 -0
- package/src/lib/plugins/openapi/client/useCreateQuery.ts +18 -0
- package/src/lib/plugins/openapi/client/worker.ts +38 -24
- package/src/lib/plugins/openapi/graphql/fragment-masking.ts +11 -18
- package/src/lib/plugins/openapi/graphql/gql.ts +10 -27
- package/src/lib/plugins/openapi/graphql/graphql.ts +233 -665
- package/src/lib/plugins/openapi/index.tsx +42 -67
- package/src/lib/plugins/openapi/playground/Playground.tsx +4 -3
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +1 -1
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +4 -1
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +28 -42
- package/src/lib/plugins/openapi-worker.ts +11 -1
- package/src/lib/plugins/redirect/index.tsx +5 -9
- package/src/lib/plugins/search-inkeep/index.tsx +2 -2
- package/src/lib/ui/Accordion.tsx +56 -0
- package/src/lib/ui/ActionButton.tsx +28 -0
- package/src/lib/ui/{Note.tsx → Alert.tsx} +11 -10
- package/src/lib/ui/AlertDialog.tsx +139 -0
- package/src/lib/ui/AspectRatio.tsx +5 -0
- package/src/lib/ui/Badge.tsx +36 -0
- package/src/lib/ui/Breadcrumb.tsx +115 -0
- package/src/lib/ui/Button.tsx +1 -1
- package/src/lib/ui/Carousel.tsx +260 -0
- package/src/lib/ui/Checkbox.tsx +28 -0
- package/src/lib/ui/Collapsible.tsx +9 -0
- package/src/lib/ui/Command.tsx +151 -0
- package/src/lib/{components → ui}/Dialog.tsx +4 -3
- package/src/lib/ui/Form.tsx +177 -0
- package/src/lib/ui/HoverCard.tsx +27 -0
- package/src/lib/ui/Label.tsx +24 -0
- package/src/lib/ui/Pagination.tsx +117 -0
- package/src/lib/ui/Popover.tsx +29 -0
- package/src/lib/ui/Progress.tsx +26 -0
- package/src/lib/ui/RadioGroup.tsx +42 -0
- package/src/lib/ui/ScrollArea.tsx +46 -0
- package/src/lib/ui/Skeleton.tsx +15 -0
- package/src/lib/ui/Slider.tsx +26 -0
- package/src/lib/ui/Switch.tsx +27 -0
- package/src/lib/ui/Textarea.tsx +23 -0
- package/src/lib/ui/Toggle.tsx +43 -0
- package/src/lib/ui/ToggleGroup.tsx +59 -0
- package/src/lib/ui/Tooltip.tsx +28 -0
- package/src/lib/util/MdxComponents.tsx +0 -1
- package/src/lib/util/invariant.ts +15 -3
- package/src/lib/util/useExposedProps.tsx +8 -2
- package/src/lib/util/useIsomorphicLayoutEffect.ts +5 -0
- package/src/lib/util/useOnScreen.ts +32 -0
- package/src/lib/util/useScrollToAnchor.ts +1 -1
- package/dist/internal.d.ts +0 -1
- package/dist/internal.js +0 -2
- package/dist/internal.js.map +0 -1
- package/dist/lib/components/DevPortal.js.map +0 -1
- package/dist/lib/components/Dialog.js.map +0 -1
- package/dist/lib/components/Select.js.map +0 -1
- package/dist/lib/components/context/ThemeContext.d.ts +0 -2
- package/dist/lib/components/context/ThemeContext.js +0 -7
- package/dist/lib/components/context/ThemeContext.js.map +0 -1
- package/dist/lib/components/context/ThemeProvider.d.ts +0 -4
- package/dist/lib/components/context/ThemeProvider.js +0 -23
- package/dist/lib/components/context/ThemeProvider.js.map +0 -1
- package/dist/lib/core/DevPortalContext.js.map +0 -1
- package/dist/lib/plugins/markdown/generateRoutes.d.ts +0 -3
- package/dist/lib/plugins/markdown/generateRoutes.js +0 -21
- package/dist/lib/plugins/markdown/generateRoutes.js.map +0 -1
- package/dist/lib/plugins/openapi/client/createMemoryClient.d.ts +0 -12
- package/dist/lib/plugins/openapi/client/createMemoryClient.js +0 -46
- package/dist/lib/plugins/openapi/client/createMemoryClient.js.map +0 -1
- package/dist/lib/plugins/openapi/client/createWorkerClient.d.ts +0 -10
- package/dist/lib/plugins/openapi/client/createWorkerClient.js +0 -61
- package/dist/lib/plugins/openapi/client/createWorkerClient.js.map +0 -1
- package/dist/lib/plugins/openapi/client/interfaces.d.ts +0 -4
- package/dist/lib/plugins/openapi/client/interfaces.js +0 -2
- package/dist/lib/plugins/openapi/client/interfaces.js.map +0 -1
- package/dist/lib/themeToggle.d.ts +0 -1
- package/dist/lib/themeToggle.js +0 -7
- package/dist/lib/themeToggle.js.map +0 -1
- package/dist/lib/ui/Note.d.ts +0 -8
- package/dist/lib/ui/Note.js +0 -23
- package/dist/lib/ui/Note.js.map +0 -1
- package/dist/lib/util/createWaitForNotify.d.ts +0 -1
- package/dist/lib/util/createWaitForNotify.js +0 -15
- package/dist/lib/util/createWaitForNotify.js.map +0 -1
- package/dist/vite/plugin-html-transform.d.ts +0 -2
- package/dist/vite/plugin-html-transform.js +0 -15
- package/dist/vite/plugin-html-transform.js.map +0 -1
- package/lib/DeveloperHint-B_QCCafl.js +0 -16
- package/lib/DeveloperHint-B_QCCafl.js.map +0 -1
- package/lib/ErrorPage-DqqAV1dr.js +0 -16
- package/lib/ErrorPage-DqqAV1dr.js.map +0 -1
- package/lib/Input-a9rLgbP_.js +0 -2229
- package/lib/Input-a9rLgbP_.js.map +0 -1
- package/lib/Markdown-Y__eLG0x.js +0 -20441
- package/lib/Markdown-Y__eLG0x.js.map +0 -1
- package/lib/OperationList-DuPG2FA2.js +0 -601
- package/lib/OperationList-DuPG2FA2.js.map +0 -1
- package/lib/Route-Bb3QClHu.js +0 -13
- package/lib/Route-Bb3QClHu.js.map +0 -1
- package/lib/SidebarBadge-BdzN0ZBK.js +0 -503
- package/lib/SidebarBadge-BdzN0ZBK.js.map +0 -1
- package/lib/SlotletProvider-DmqWiVFt.js +0 -239
- package/lib/SlotletProvider-DmqWiVFt.js.map +0 -1
- package/lib/ZudokuContext-MRoel6bS.js.map +0 -1
- package/lib/index-BijFM__9.js +0 -124
- package/lib/index-BijFM__9.js.map +0 -1
- package/lib/index-CCa8ojDW.js +0 -5964
- package/lib/index-CCa8ojDW.js.map +0 -1
- package/lib/index-DFN92YJN.js +0 -1782
- package/lib/index-DFN92YJN.js.map +0 -1
- package/lib/index-DJqnphbT.js +0 -35
- package/lib/index-_GxJ8hpM.js +0 -2867
- package/lib/index-_GxJ8hpM.js.map +0 -1
- package/lib/joinPath-B7kNnUX4.js +0 -8
- package/lib/joinPath-B7kNnUX4.js.map +0 -1
- package/lib/state-CsuHT8ZO.js +0 -183
- package/lib/state-CsuHT8ZO.js.map +0 -1
- package/lib/urql-core-KJnLL26g.js +0 -1455
- package/lib/urql-core-KJnLL26g.js.map +0 -1
- package/lib/useExposedProps-BWwxa-Hg.js +0 -9
- package/lib/useExposedProps-BWwxa-Hg.js.map +0 -1
- package/lib/utils-C8S3st2k.js.map +0 -1
- package/src/lib/components/DevPortal.tsx +0 -111
- package/src/lib/components/context/ThemeContext.tsx +0 -8
- package/src/lib/components/context/ThemeProvider.tsx +0 -27
- package/src/lib/plugins/markdown/generateRoutes.tsx +0 -38
- package/src/lib/plugins/openapi/client/createMemoryClient.ts +0 -51
- package/src/lib/plugins/openapi/client/createWorkerClient.ts +0 -75
- package/src/lib/plugins/openapi/client/interfaces.ts +0 -5
- package/src/lib/themeToggle.ts +0 -7
- package/src/lib/util/createWaitForNotify.ts +0 -18
- /package/dist/lib/{components → ui}/Dialog.d.ts +0 -0
- /package/dist/lib/{components → ui}/Select.d.ts +0 -0
- /package/dist/lib/{components → ui}/Select.js +0 -0
- /package/src/lib/{components → ui}/Select.tsx +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
import type {
|
|
2
|
+
import type { DocumentTypeDecoration } from "@graphql-typed-document-node/core";
|
|
3
3
|
export type Maybe<T> = T | null;
|
|
4
4
|
export type InputMaybe<T> = Maybe<T>;
|
|
5
5
|
export type Exact<T extends { [key: string]: unknown }> = {
|
|
@@ -49,7 +49,7 @@ export type ExampleItem = {
|
|
|
49
49
|
externalValue?: Maybe<Scalars["String"]["output"]>;
|
|
50
50
|
name: Scalars["String"]["output"];
|
|
51
51
|
summary?: Maybe<Scalars["String"]["output"]>;
|
|
52
|
-
value?: Maybe<Scalars["
|
|
52
|
+
value?: Maybe<Scalars["JSON"]["output"]>;
|
|
53
53
|
};
|
|
54
54
|
|
|
55
55
|
export type MediaTypeObject = {
|
|
@@ -206,7 +206,7 @@ export type OperationsFragmentFragment = {
|
|
|
206
206
|
name: string;
|
|
207
207
|
description?: string | null;
|
|
208
208
|
externalValue?: string | null;
|
|
209
|
-
value?:
|
|
209
|
+
value?: any | null;
|
|
210
210
|
summary?: string | null;
|
|
211
211
|
}> | null;
|
|
212
212
|
}> | null;
|
|
@@ -219,6 +219,14 @@ export type OperationsFragmentFragment = {
|
|
|
219
219
|
mediaType: string;
|
|
220
220
|
schema?: any | null;
|
|
221
221
|
encoding?: Array<{ __typename?: "EncodingItem"; name: string }> | null;
|
|
222
|
+
examples?: Array<{
|
|
223
|
+
__typename?: "ExampleItem";
|
|
224
|
+
name: string;
|
|
225
|
+
description?: string | null;
|
|
226
|
+
externalValue?: string | null;
|
|
227
|
+
value?: any | null;
|
|
228
|
+
summary?: string | null;
|
|
229
|
+
}> | null;
|
|
222
230
|
}> | null;
|
|
223
231
|
} | null;
|
|
224
232
|
responses: Array<{
|
|
@@ -230,6 +238,14 @@ export type OperationsFragmentFragment = {
|
|
|
230
238
|
__typename?: "MediaTypeObject";
|
|
231
239
|
mediaType: string;
|
|
232
240
|
schema?: any | null;
|
|
241
|
+
examples?: Array<{
|
|
242
|
+
__typename?: "ExampleItem";
|
|
243
|
+
name: string;
|
|
244
|
+
description?: string | null;
|
|
245
|
+
externalValue?: string | null;
|
|
246
|
+
value?: any | null;
|
|
247
|
+
summary?: string | null;
|
|
248
|
+
}> | null;
|
|
233
249
|
encoding?: Array<{ __typename?: "EncodingItem"; name: string }> | null;
|
|
234
250
|
}> | null;
|
|
235
251
|
}>;
|
|
@@ -286,6 +302,7 @@ export type GetCategoriesQuery = {
|
|
|
286
302
|
__typename?: "Query";
|
|
287
303
|
schema: {
|
|
288
304
|
__typename?: "Schema";
|
|
305
|
+
url: string;
|
|
289
306
|
tags: Array<{
|
|
290
307
|
__typename: "SchemaTag";
|
|
291
308
|
name?: string | null;
|
|
@@ -302,665 +319,216 @@ export type GetCategoriesQuery = {
|
|
|
302
319
|
};
|
|
303
320
|
};
|
|
304
321
|
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
},
|
|
519
|
-
},
|
|
520
|
-
],
|
|
521
|
-
},
|
|
522
|
-
},
|
|
523
|
-
],
|
|
524
|
-
},
|
|
525
|
-
},
|
|
526
|
-
],
|
|
527
|
-
} as unknown as DocumentNode<ServersQueryQuery, ServersQueryQueryVariables>;
|
|
528
|
-
export const AllOperationsDocument = {
|
|
529
|
-
kind: "Document",
|
|
530
|
-
definitions: [
|
|
531
|
-
{
|
|
532
|
-
kind: "OperationDefinition",
|
|
533
|
-
operation: "query",
|
|
534
|
-
name: { kind: "Name", value: "AllOperations" },
|
|
535
|
-
variableDefinitions: [
|
|
536
|
-
{
|
|
537
|
-
kind: "VariableDefinition",
|
|
538
|
-
variable: {
|
|
539
|
-
kind: "Variable",
|
|
540
|
-
name: { kind: "Name", value: "input" },
|
|
541
|
-
},
|
|
542
|
-
type: {
|
|
543
|
-
kind: "NonNullType",
|
|
544
|
-
type: { kind: "NamedType", name: { kind: "Name", value: "JSON" } },
|
|
545
|
-
},
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
kind: "VariableDefinition",
|
|
549
|
-
variable: { kind: "Variable", name: { kind: "Name", value: "type" } },
|
|
550
|
-
type: {
|
|
551
|
-
kind: "NonNullType",
|
|
552
|
-
type: {
|
|
553
|
-
kind: "NamedType",
|
|
554
|
-
name: { kind: "Name", value: "SchemaType" },
|
|
555
|
-
},
|
|
556
|
-
},
|
|
557
|
-
},
|
|
558
|
-
],
|
|
559
|
-
selectionSet: {
|
|
560
|
-
kind: "SelectionSet",
|
|
561
|
-
selections: [
|
|
562
|
-
{
|
|
563
|
-
kind: "Field",
|
|
564
|
-
name: { kind: "Name", value: "schema" },
|
|
565
|
-
arguments: [
|
|
566
|
-
{
|
|
567
|
-
kind: "Argument",
|
|
568
|
-
name: { kind: "Name", value: "input" },
|
|
569
|
-
value: {
|
|
570
|
-
kind: "Variable",
|
|
571
|
-
name: { kind: "Name", value: "input" },
|
|
572
|
-
},
|
|
573
|
-
},
|
|
574
|
-
{
|
|
575
|
-
kind: "Argument",
|
|
576
|
-
name: { kind: "Name", value: "type" },
|
|
577
|
-
value: {
|
|
578
|
-
kind: "Variable",
|
|
579
|
-
name: { kind: "Name", value: "type" },
|
|
580
|
-
},
|
|
581
|
-
},
|
|
582
|
-
],
|
|
583
|
-
selectionSet: {
|
|
584
|
-
kind: "SelectionSet",
|
|
585
|
-
selections: [
|
|
586
|
-
{ kind: "Field", name: { kind: "Name", value: "description" } },
|
|
587
|
-
{ kind: "Field", name: { kind: "Name", value: "title" } },
|
|
588
|
-
{ kind: "Field", name: { kind: "Name", value: "url" } },
|
|
589
|
-
{ kind: "Field", name: { kind: "Name", value: "version" } },
|
|
590
|
-
{
|
|
591
|
-
kind: "Field",
|
|
592
|
-
name: { kind: "Name", value: "tags" },
|
|
593
|
-
selectionSet: {
|
|
594
|
-
kind: "SelectionSet",
|
|
595
|
-
selections: [
|
|
596
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
|
597
|
-
{
|
|
598
|
-
kind: "Field",
|
|
599
|
-
name: { kind: "Name", value: "description" },
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
kind: "Field",
|
|
603
|
-
name: { kind: "Name", value: "operations" },
|
|
604
|
-
selectionSet: {
|
|
605
|
-
kind: "SelectionSet",
|
|
606
|
-
selections: [
|
|
607
|
-
{
|
|
608
|
-
kind: "Field",
|
|
609
|
-
name: { kind: "Name", value: "slug" },
|
|
610
|
-
},
|
|
611
|
-
{
|
|
612
|
-
kind: "FragmentSpread",
|
|
613
|
-
name: {
|
|
614
|
-
kind: "Name",
|
|
615
|
-
value: "OperationsFragment",
|
|
616
|
-
},
|
|
617
|
-
},
|
|
618
|
-
],
|
|
619
|
-
},
|
|
620
|
-
},
|
|
621
|
-
],
|
|
622
|
-
},
|
|
623
|
-
},
|
|
624
|
-
],
|
|
625
|
-
},
|
|
626
|
-
},
|
|
627
|
-
],
|
|
628
|
-
},
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
kind: "FragmentDefinition",
|
|
632
|
-
name: { kind: "Name", value: "OperationsFragment" },
|
|
633
|
-
typeCondition: {
|
|
634
|
-
kind: "NamedType",
|
|
635
|
-
name: { kind: "Name", value: "OperationItem" },
|
|
636
|
-
},
|
|
637
|
-
selectionSet: {
|
|
638
|
-
kind: "SelectionSet",
|
|
639
|
-
selections: [
|
|
640
|
-
{ kind: "Field", name: { kind: "Name", value: "slug" } },
|
|
641
|
-
{ kind: "Field", name: { kind: "Name", value: "summary" } },
|
|
642
|
-
{ kind: "Field", name: { kind: "Name", value: "method" } },
|
|
643
|
-
{ kind: "Field", name: { kind: "Name", value: "description" } },
|
|
644
|
-
{ kind: "Field", name: { kind: "Name", value: "operationId" } },
|
|
645
|
-
{ kind: "Field", name: { kind: "Name", value: "contentTypes" } },
|
|
646
|
-
{ kind: "Field", name: { kind: "Name", value: "path" } },
|
|
647
|
-
{
|
|
648
|
-
kind: "Field",
|
|
649
|
-
name: { kind: "Name", value: "parameters" },
|
|
650
|
-
selectionSet: {
|
|
651
|
-
kind: "SelectionSet",
|
|
652
|
-
selections: [
|
|
653
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
|
654
|
-
{ kind: "Field", name: { kind: "Name", value: "in" } },
|
|
655
|
-
{ kind: "Field", name: { kind: "Name", value: "description" } },
|
|
656
|
-
{ kind: "Field", name: { kind: "Name", value: "required" } },
|
|
657
|
-
{ kind: "Field", name: { kind: "Name", value: "schema" } },
|
|
658
|
-
{ kind: "Field", name: { kind: "Name", value: "style" } },
|
|
659
|
-
{
|
|
660
|
-
kind: "Field",
|
|
661
|
-
name: { kind: "Name", value: "examples" },
|
|
662
|
-
selectionSet: {
|
|
663
|
-
kind: "SelectionSet",
|
|
664
|
-
selections: [
|
|
665
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
|
666
|
-
{
|
|
667
|
-
kind: "Field",
|
|
668
|
-
name: { kind: "Name", value: "description" },
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
kind: "Field",
|
|
672
|
-
name: { kind: "Name", value: "externalValue" },
|
|
673
|
-
},
|
|
674
|
-
{ kind: "Field", name: { kind: "Name", value: "value" } },
|
|
675
|
-
{
|
|
676
|
-
kind: "Field",
|
|
677
|
-
name: { kind: "Name", value: "summary" },
|
|
678
|
-
},
|
|
679
|
-
],
|
|
680
|
-
},
|
|
681
|
-
},
|
|
682
|
-
],
|
|
683
|
-
},
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
kind: "Field",
|
|
687
|
-
name: { kind: "Name", value: "requestBody" },
|
|
688
|
-
selectionSet: {
|
|
689
|
-
kind: "SelectionSet",
|
|
690
|
-
selections: [
|
|
691
|
-
{
|
|
692
|
-
kind: "Field",
|
|
693
|
-
name: { kind: "Name", value: "content" },
|
|
694
|
-
selectionSet: {
|
|
695
|
-
kind: "SelectionSet",
|
|
696
|
-
selections: [
|
|
697
|
-
{
|
|
698
|
-
kind: "Field",
|
|
699
|
-
name: { kind: "Name", value: "mediaType" },
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
kind: "Field",
|
|
703
|
-
name: { kind: "Name", value: "encoding" },
|
|
704
|
-
selectionSet: {
|
|
705
|
-
kind: "SelectionSet",
|
|
706
|
-
selections: [
|
|
707
|
-
{
|
|
708
|
-
kind: "Field",
|
|
709
|
-
name: { kind: "Name", value: "name" },
|
|
710
|
-
},
|
|
711
|
-
],
|
|
712
|
-
},
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
kind: "Field",
|
|
716
|
-
name: { kind: "Name", value: "schema" },
|
|
717
|
-
},
|
|
718
|
-
],
|
|
719
|
-
},
|
|
720
|
-
},
|
|
721
|
-
{ kind: "Field", name: { kind: "Name", value: "description" } },
|
|
722
|
-
{ kind: "Field", name: { kind: "Name", value: "required" } },
|
|
723
|
-
],
|
|
724
|
-
},
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
kind: "Field",
|
|
728
|
-
name: { kind: "Name", value: "responses" },
|
|
729
|
-
selectionSet: {
|
|
730
|
-
kind: "SelectionSet",
|
|
731
|
-
selections: [
|
|
732
|
-
{ kind: "Field", name: { kind: "Name", value: "statusCode" } },
|
|
733
|
-
{ kind: "Field", name: { kind: "Name", value: "links" } },
|
|
734
|
-
{ kind: "Field", name: { kind: "Name", value: "description" } },
|
|
735
|
-
{
|
|
736
|
-
kind: "Field",
|
|
737
|
-
name: { kind: "Name", value: "content" },
|
|
738
|
-
selectionSet: {
|
|
739
|
-
kind: "SelectionSet",
|
|
740
|
-
selections: [
|
|
741
|
-
{
|
|
742
|
-
kind: "Field",
|
|
743
|
-
name: { kind: "Name", value: "mediaType" },
|
|
744
|
-
},
|
|
745
|
-
{
|
|
746
|
-
kind: "Field",
|
|
747
|
-
name: { kind: "Name", value: "encoding" },
|
|
748
|
-
selectionSet: {
|
|
749
|
-
kind: "SelectionSet",
|
|
750
|
-
selections: [
|
|
751
|
-
{
|
|
752
|
-
kind: "Field",
|
|
753
|
-
name: { kind: "Name", value: "name" },
|
|
754
|
-
},
|
|
755
|
-
],
|
|
756
|
-
},
|
|
757
|
-
},
|
|
758
|
-
{
|
|
759
|
-
kind: "Field",
|
|
760
|
-
name: { kind: "Name", value: "schema" },
|
|
761
|
-
},
|
|
762
|
-
],
|
|
763
|
-
},
|
|
764
|
-
},
|
|
765
|
-
],
|
|
766
|
-
},
|
|
767
|
-
},
|
|
768
|
-
],
|
|
769
|
-
},
|
|
770
|
-
},
|
|
771
|
-
],
|
|
772
|
-
} as unknown as DocumentNode<AllOperationsQuery, AllOperationsQueryVariables>;
|
|
773
|
-
export const GetServerQueryDocument = {
|
|
774
|
-
kind: "Document",
|
|
775
|
-
definitions: [
|
|
776
|
-
{
|
|
777
|
-
kind: "OperationDefinition",
|
|
778
|
-
operation: "query",
|
|
779
|
-
name: { kind: "Name", value: "getServerQuery" },
|
|
780
|
-
variableDefinitions: [
|
|
781
|
-
{
|
|
782
|
-
kind: "VariableDefinition",
|
|
783
|
-
variable: {
|
|
784
|
-
kind: "Variable",
|
|
785
|
-
name: { kind: "Name", value: "input" },
|
|
786
|
-
},
|
|
787
|
-
type: {
|
|
788
|
-
kind: "NonNullType",
|
|
789
|
-
type: { kind: "NamedType", name: { kind: "Name", value: "JSON" } },
|
|
790
|
-
},
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
kind: "VariableDefinition",
|
|
794
|
-
variable: { kind: "Variable", name: { kind: "Name", value: "type" } },
|
|
795
|
-
type: {
|
|
796
|
-
kind: "NonNullType",
|
|
797
|
-
type: {
|
|
798
|
-
kind: "NamedType",
|
|
799
|
-
name: { kind: "Name", value: "SchemaType" },
|
|
800
|
-
},
|
|
801
|
-
},
|
|
802
|
-
},
|
|
803
|
-
],
|
|
804
|
-
selectionSet: {
|
|
805
|
-
kind: "SelectionSet",
|
|
806
|
-
selections: [
|
|
807
|
-
{
|
|
808
|
-
kind: "Field",
|
|
809
|
-
name: { kind: "Name", value: "schema" },
|
|
810
|
-
arguments: [
|
|
811
|
-
{
|
|
812
|
-
kind: "Argument",
|
|
813
|
-
name: { kind: "Name", value: "input" },
|
|
814
|
-
value: {
|
|
815
|
-
kind: "Variable",
|
|
816
|
-
name: { kind: "Name", value: "input" },
|
|
817
|
-
},
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
kind: "Argument",
|
|
821
|
-
name: { kind: "Name", value: "type" },
|
|
822
|
-
value: {
|
|
823
|
-
kind: "Variable",
|
|
824
|
-
name: { kind: "Name", value: "type" },
|
|
825
|
-
},
|
|
826
|
-
},
|
|
827
|
-
],
|
|
828
|
-
selectionSet: {
|
|
829
|
-
kind: "SelectionSet",
|
|
830
|
-
selections: [
|
|
831
|
-
{ kind: "Field", name: { kind: "Name", value: "url" } },
|
|
832
|
-
{
|
|
833
|
-
kind: "Field",
|
|
834
|
-
name: { kind: "Name", value: "servers" },
|
|
835
|
-
selectionSet: {
|
|
836
|
-
kind: "SelectionSet",
|
|
837
|
-
selections: [
|
|
838
|
-
{ kind: "Field", name: { kind: "Name", value: "url" } },
|
|
839
|
-
],
|
|
840
|
-
},
|
|
841
|
-
},
|
|
842
|
-
],
|
|
843
|
-
},
|
|
844
|
-
},
|
|
845
|
-
],
|
|
846
|
-
},
|
|
847
|
-
},
|
|
848
|
-
],
|
|
849
|
-
} as unknown as DocumentNode<GetServerQueryQuery, GetServerQueryQueryVariables>;
|
|
850
|
-
export const GetCategoriesDocument = {
|
|
851
|
-
kind: "Document",
|
|
852
|
-
definitions: [
|
|
853
|
-
{
|
|
854
|
-
kind: "OperationDefinition",
|
|
855
|
-
operation: "query",
|
|
856
|
-
name: { kind: "Name", value: "GetCategories" },
|
|
857
|
-
variableDefinitions: [
|
|
858
|
-
{
|
|
859
|
-
kind: "VariableDefinition",
|
|
860
|
-
variable: {
|
|
861
|
-
kind: "Variable",
|
|
862
|
-
name: { kind: "Name", value: "input" },
|
|
863
|
-
},
|
|
864
|
-
type: {
|
|
865
|
-
kind: "NonNullType",
|
|
866
|
-
type: { kind: "NamedType", name: { kind: "Name", value: "JSON" } },
|
|
867
|
-
},
|
|
868
|
-
},
|
|
869
|
-
{
|
|
870
|
-
kind: "VariableDefinition",
|
|
871
|
-
variable: { kind: "Variable", name: { kind: "Name", value: "type" } },
|
|
872
|
-
type: {
|
|
873
|
-
kind: "NonNullType",
|
|
874
|
-
type: {
|
|
875
|
-
kind: "NamedType",
|
|
876
|
-
name: { kind: "Name", value: "SchemaType" },
|
|
877
|
-
},
|
|
878
|
-
},
|
|
879
|
-
},
|
|
880
|
-
],
|
|
881
|
-
selectionSet: {
|
|
882
|
-
kind: "SelectionSet",
|
|
883
|
-
selections: [
|
|
884
|
-
{
|
|
885
|
-
kind: "Field",
|
|
886
|
-
name: { kind: "Name", value: "schema" },
|
|
887
|
-
arguments: [
|
|
888
|
-
{
|
|
889
|
-
kind: "Argument",
|
|
890
|
-
name: { kind: "Name", value: "input" },
|
|
891
|
-
value: {
|
|
892
|
-
kind: "Variable",
|
|
893
|
-
name: { kind: "Name", value: "input" },
|
|
894
|
-
},
|
|
895
|
-
},
|
|
896
|
-
{
|
|
897
|
-
kind: "Argument",
|
|
898
|
-
name: { kind: "Name", value: "type" },
|
|
899
|
-
value: {
|
|
900
|
-
kind: "Variable",
|
|
901
|
-
name: { kind: "Name", value: "type" },
|
|
902
|
-
},
|
|
903
|
-
},
|
|
904
|
-
],
|
|
905
|
-
selectionSet: {
|
|
906
|
-
kind: "SelectionSet",
|
|
907
|
-
selections: [
|
|
908
|
-
{
|
|
909
|
-
kind: "Field",
|
|
910
|
-
name: { kind: "Name", value: "tags" },
|
|
911
|
-
selectionSet: {
|
|
912
|
-
kind: "SelectionSet",
|
|
913
|
-
selections: [
|
|
914
|
-
{
|
|
915
|
-
kind: "Field",
|
|
916
|
-
name: { kind: "Name", value: "__typename" },
|
|
917
|
-
},
|
|
918
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
|
919
|
-
{
|
|
920
|
-
kind: "Field",
|
|
921
|
-
name: { kind: "Name", value: "operations" },
|
|
922
|
-
selectionSet: {
|
|
923
|
-
kind: "SelectionSet",
|
|
924
|
-
selections: [
|
|
925
|
-
{
|
|
926
|
-
kind: "Field",
|
|
927
|
-
name: { kind: "Name", value: "__typename" },
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
kind: "Field",
|
|
931
|
-
name: { kind: "Name", value: "slug" },
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
kind: "Field",
|
|
935
|
-
name: { kind: "Name", value: "deprecated" },
|
|
936
|
-
},
|
|
937
|
-
{
|
|
938
|
-
kind: "Field",
|
|
939
|
-
name: { kind: "Name", value: "method" },
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
kind: "Field",
|
|
943
|
-
name: { kind: "Name", value: "summary" },
|
|
944
|
-
},
|
|
945
|
-
{
|
|
946
|
-
kind: "Field",
|
|
947
|
-
name: { kind: "Name", value: "operationId" },
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
kind: "Field",
|
|
951
|
-
name: { kind: "Name", value: "path" },
|
|
952
|
-
},
|
|
953
|
-
],
|
|
954
|
-
},
|
|
955
|
-
},
|
|
956
|
-
],
|
|
957
|
-
},
|
|
958
|
-
},
|
|
959
|
-
],
|
|
960
|
-
},
|
|
961
|
-
},
|
|
962
|
-
],
|
|
963
|
-
},
|
|
964
|
-
},
|
|
965
|
-
],
|
|
966
|
-
} as unknown as DocumentNode<GetCategoriesQuery, GetCategoriesQueryVariables>;
|
|
322
|
+
export class TypedDocumentString<TResult, TVariables>
|
|
323
|
+
extends String
|
|
324
|
+
implements DocumentTypeDecoration<TResult, TVariables>
|
|
325
|
+
{
|
|
326
|
+
__apiType?: DocumentTypeDecoration<TResult, TVariables>["__apiType"];
|
|
327
|
+
|
|
328
|
+
constructor(
|
|
329
|
+
private value: string,
|
|
330
|
+
public __meta__?: Record<string, any> | undefined,
|
|
331
|
+
) {
|
|
332
|
+
super(value);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
|
|
336
|
+
return this.value;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
export const OperationsFragmentFragmentDoc = new TypedDocumentString(
|
|
340
|
+
`
|
|
341
|
+
fragment OperationsFragment on OperationItem {
|
|
342
|
+
slug
|
|
343
|
+
summary
|
|
344
|
+
method
|
|
345
|
+
description
|
|
346
|
+
operationId
|
|
347
|
+
contentTypes
|
|
348
|
+
path
|
|
349
|
+
parameters {
|
|
350
|
+
name
|
|
351
|
+
in
|
|
352
|
+
description
|
|
353
|
+
required
|
|
354
|
+
schema
|
|
355
|
+
style
|
|
356
|
+
examples {
|
|
357
|
+
name
|
|
358
|
+
description
|
|
359
|
+
externalValue
|
|
360
|
+
value
|
|
361
|
+
summary
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
requestBody {
|
|
365
|
+
content {
|
|
366
|
+
mediaType
|
|
367
|
+
encoding {
|
|
368
|
+
name
|
|
369
|
+
}
|
|
370
|
+
examples {
|
|
371
|
+
name
|
|
372
|
+
description
|
|
373
|
+
externalValue
|
|
374
|
+
value
|
|
375
|
+
summary
|
|
376
|
+
}
|
|
377
|
+
schema
|
|
378
|
+
}
|
|
379
|
+
description
|
|
380
|
+
required
|
|
381
|
+
}
|
|
382
|
+
responses {
|
|
383
|
+
statusCode
|
|
384
|
+
links
|
|
385
|
+
description
|
|
386
|
+
content {
|
|
387
|
+
examples {
|
|
388
|
+
name
|
|
389
|
+
description
|
|
390
|
+
externalValue
|
|
391
|
+
value
|
|
392
|
+
summary
|
|
393
|
+
}
|
|
394
|
+
mediaType
|
|
395
|
+
encoding {
|
|
396
|
+
name
|
|
397
|
+
}
|
|
398
|
+
schema
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
`,
|
|
403
|
+
{ fragmentName: "OperationsFragment" },
|
|
404
|
+
) as unknown as TypedDocumentString<OperationsFragmentFragment, unknown>;
|
|
405
|
+
export const ServersQueryDocument = new TypedDocumentString(`
|
|
406
|
+
query ServersQuery($input: JSON!, $type: SchemaType!) {
|
|
407
|
+
schema(input: $input, type: $type) {
|
|
408
|
+
url
|
|
409
|
+
servers {
|
|
410
|
+
url
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
`) as unknown as TypedDocumentString<
|
|
415
|
+
ServersQueryQuery,
|
|
416
|
+
ServersQueryQueryVariables
|
|
417
|
+
>;
|
|
418
|
+
export const AllOperationsDocument = new TypedDocumentString(`
|
|
419
|
+
query AllOperations($input: JSON!, $type: SchemaType!) {
|
|
420
|
+
schema(input: $input, type: $type) {
|
|
421
|
+
description
|
|
422
|
+
title
|
|
423
|
+
url
|
|
424
|
+
version
|
|
425
|
+
tags {
|
|
426
|
+
name
|
|
427
|
+
description
|
|
428
|
+
operations {
|
|
429
|
+
slug
|
|
430
|
+
...OperationsFragment
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
fragment OperationsFragment on OperationItem {
|
|
436
|
+
slug
|
|
437
|
+
summary
|
|
438
|
+
method
|
|
439
|
+
description
|
|
440
|
+
operationId
|
|
441
|
+
contentTypes
|
|
442
|
+
path
|
|
443
|
+
parameters {
|
|
444
|
+
name
|
|
445
|
+
in
|
|
446
|
+
description
|
|
447
|
+
required
|
|
448
|
+
schema
|
|
449
|
+
style
|
|
450
|
+
examples {
|
|
451
|
+
name
|
|
452
|
+
description
|
|
453
|
+
externalValue
|
|
454
|
+
value
|
|
455
|
+
summary
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
requestBody {
|
|
459
|
+
content {
|
|
460
|
+
mediaType
|
|
461
|
+
encoding {
|
|
462
|
+
name
|
|
463
|
+
}
|
|
464
|
+
examples {
|
|
465
|
+
name
|
|
466
|
+
description
|
|
467
|
+
externalValue
|
|
468
|
+
value
|
|
469
|
+
summary
|
|
470
|
+
}
|
|
471
|
+
schema
|
|
472
|
+
}
|
|
473
|
+
description
|
|
474
|
+
required
|
|
475
|
+
}
|
|
476
|
+
responses {
|
|
477
|
+
statusCode
|
|
478
|
+
links
|
|
479
|
+
description
|
|
480
|
+
content {
|
|
481
|
+
examples {
|
|
482
|
+
name
|
|
483
|
+
description
|
|
484
|
+
externalValue
|
|
485
|
+
value
|
|
486
|
+
summary
|
|
487
|
+
}
|
|
488
|
+
mediaType
|
|
489
|
+
encoding {
|
|
490
|
+
name
|
|
491
|
+
}
|
|
492
|
+
schema
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
}`) as unknown as TypedDocumentString<
|
|
496
|
+
AllOperationsQuery,
|
|
497
|
+
AllOperationsQueryVariables
|
|
498
|
+
>;
|
|
499
|
+
export const GetServerQueryDocument = new TypedDocumentString(`
|
|
500
|
+
query getServerQuery($input: JSON!, $type: SchemaType!) {
|
|
501
|
+
schema(input: $input, type: $type) {
|
|
502
|
+
url
|
|
503
|
+
servers {
|
|
504
|
+
url
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
`) as unknown as TypedDocumentString<
|
|
509
|
+
GetServerQueryQuery,
|
|
510
|
+
GetServerQueryQueryVariables
|
|
511
|
+
>;
|
|
512
|
+
export const GetCategoriesDocument = new TypedDocumentString(`
|
|
513
|
+
query GetCategories($input: JSON!, $type: SchemaType!) {
|
|
514
|
+
schema(input: $input, type: $type) {
|
|
515
|
+
url
|
|
516
|
+
tags {
|
|
517
|
+
__typename
|
|
518
|
+
name
|
|
519
|
+
operations {
|
|
520
|
+
__typename
|
|
521
|
+
slug
|
|
522
|
+
deprecated
|
|
523
|
+
method
|
|
524
|
+
summary
|
|
525
|
+
operationId
|
|
526
|
+
path
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
`) as unknown as TypedDocumentString<
|
|
532
|
+
GetCategoriesQuery,
|
|
533
|
+
GetCategoriesQueryVariables
|
|
534
|
+
>;
|