zudoku 0.0.0-fed343e → 0.0.0-feda542
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 +5 -2
- package/client.d.ts +7 -0
- package/dist/app/demo.js +1 -4
- package/dist/app/demo.js.map +1 -1
- package/dist/app/entry.client.d.ts +6 -0
- package/dist/app/entry.client.js +17 -3
- package/dist/app/entry.client.js.map +1 -1
- package/dist/app/entry.server.d.ts +9 -6
- package/dist/app/entry.server.js +21 -14
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/main.d.ts +3 -2
- package/dist/app/main.js +34 -38
- package/dist/app/main.js.map +1 -1
- package/dist/app/sentry.d.ts +3 -0
- package/dist/app/sentry.js +19 -0
- package/dist/app/sentry.js.map +1 -0
- package/dist/app/standalone.js +1 -4
- package/dist/app/standalone.js.map +1 -1
- package/dist/app/tailwind.d.ts +2 -1
- package/dist/app/tailwind.js +80 -48
- package/dist/app/tailwind.js.map +1 -1
- package/dist/cli/build/handler.d.ts +1 -3
- package/dist/cli/build/handler.js +9 -1
- package/dist/cli/build/handler.js.map +1 -1
- package/dist/cli/cli.js +6 -4
- package/dist/cli/cli.js.map +1 -1
- package/dist/cli/cmds/build.d.ts +11 -3
- package/dist/cli/cmds/build.js +21 -13
- package/dist/cli/cmds/build.js.map +1 -1
- package/dist/cli/cmds/dev.d.ts +1 -1
- package/dist/cli/cmds/dev.js +5 -0
- package/dist/cli/cmds/dev.js.map +1 -1
- package/dist/cli/cmds/preview.d.ts +16 -0
- package/dist/cli/cmds/preview.js +25 -0
- package/dist/cli/cmds/preview.js.map +1 -0
- package/dist/cli/common/logger.js +9 -0
- package/dist/cli/common/logger.js.map +1 -1
- package/dist/cli/common/machine-id/lib.js.map +1 -1
- package/dist/cli/common/outdated.js +2 -1
- package/dist/cli/common/outdated.js.map +1 -1
- package/dist/cli/common/output.js.map +1 -1
- package/dist/cli/common/utils/box.js.map +1 -1
- package/dist/cli/common/utils/ports.d.ts +1 -1
- package/dist/cli/common/utils/ports.js +16 -15
- package/dist/cli/common/utils/ports.js.map +1 -1
- package/dist/cli/dev/handler.d.ts +1 -0
- package/dist/cli/dev/handler.js +16 -13
- package/dist/cli/dev/handler.js.map +1 -1
- package/dist/cli/preview/handler.d.ts +3 -0
- package/dist/cli/preview/handler.js +35 -0
- package/dist/cli/preview/handler.js.map +1 -0
- package/dist/codegen.d.ts +3 -0
- package/dist/codegen.js +45 -0
- package/dist/codegen.js.map +1 -0
- package/dist/config/common.d.ts +10 -0
- package/dist/config/common.js +2 -0
- package/dist/config/common.js.map +1 -0
- package/dist/config/config.d.ts +20 -20
- package/dist/config/loader.d.ts +21 -0
- package/dist/config/loader.js +149 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/config/validators/BuildSchema.d.ts +59 -0
- package/dist/config/validators/BuildSchema.js +31 -0
- package/dist/config/validators/BuildSchema.js.map +1 -0
- package/dist/config/validators/InputSidebarSchema.d.ts +63 -31
- package/dist/config/validators/InputSidebarSchema.js +17 -28
- package/dist/config/validators/InputSidebarSchema.js.map +1 -1
- package/dist/config/validators/SidebarSchema.d.ts +24 -1
- package/dist/config/validators/SidebarSchema.js +80 -44
- package/dist/config/validators/SidebarSchema.js.map +1 -1
- package/dist/config/validators/common.d.ts +7670 -0
- package/dist/config/validators/common.js +402 -0
- package/dist/config/validators/common.js.map +1 -0
- package/dist/config/validators/icon-types.d.ts +1 -0
- package/dist/config/validators/icon-types.js +2 -0
- package/dist/config/validators/icon-types.js.map +1 -0
- package/dist/config/validators/validate.d.ts +1965 -443
- package/dist/config/validators/validate.js +14 -210
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/MissingIcon.d.ts +2 -0
- package/dist/lib/MissingIcon.js +7 -0
- package/dist/lib/MissingIcon.js.map +1 -0
- package/dist/lib/authentication/AuthenticationPlugin.d.ts +4 -2
- package/dist/lib/authentication/AuthenticationPlugin.js +3 -0
- package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +4 -3
- package/dist/lib/authentication/components/CallbackHandler.js +21 -31
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.js +1 -1
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/components/SignOut.js +2 -2
- package/dist/lib/authentication/components/SignOut.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +6 -4
- package/dist/lib/authentication/hook.js +12 -4
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/auth0.d.ts +2 -2
- package/dist/lib/authentication/providers/auth0.js +14 -12
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/providers/clerk.d.ts +2 -2
- package/dist/lib/authentication/providers/clerk.js +54 -12
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/openid.d.ts +12 -4
- package/dist/lib/authentication/providers/openid.js +54 -44
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/authentication/providers/supabase.d.ts +4 -0
- package/dist/lib/authentication/providers/supabase.js +117 -0
- package/dist/lib/authentication/providers/supabase.js.map +1 -0
- package/dist/lib/authentication/state.d.ts +23 -3
- package/dist/lib/authentication/state.js +34 -2
- 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/AnchorLink.d.ts +2 -2
- package/dist/lib/components/AnchorLink.js +9 -5
- package/dist/lib/components/AnchorLink.js.map +1 -1
- package/dist/lib/components/Autocomplete.d.ts +13 -0
- package/dist/lib/components/Autocomplete.js +47 -0
- package/dist/lib/components/Autocomplete.js.map +1 -0
- package/dist/lib/components/Banner.js +7 -1
- package/dist/lib/components/Banner.js.map +1 -1
- package/dist/lib/components/Bootstrap.d.ts +5 -3
- package/dist/lib/components/Bootstrap.js +13 -6
- 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/ErrorPage.js +1 -2
- package/dist/lib/components/ErrorPage.js.map +1 -1
- package/dist/lib/components/Footer.d.ts +1 -0
- package/dist/lib/components/Footer.js +32 -0
- package/dist/lib/components/Footer.js.map +1 -0
- package/dist/lib/components/Header.js +22 -11
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +4 -4
- package/dist/lib/components/Heading.js +1 -1
- package/dist/lib/components/Heading.js.map +1 -1
- package/dist/lib/components/InlineCode.d.ts +3 -1
- package/dist/lib/components/InlineCode.js +2 -1
- package/dist/lib/components/InlineCode.js.map +1 -1
- package/dist/lib/components/Layout.js +9 -20
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/Main.d.ts +2 -0
- package/dist/lib/components/Main.js +17 -0
- package/dist/lib/components/Main.js.map +1 -0
- package/dist/lib/components/Markdown.d.ts +2 -2
- package/dist/lib/components/Markdown.js +4 -2
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +13 -7
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/NotFoundPage.js +1 -1
- package/dist/lib/components/NotFoundPage.js.map +1 -1
- package/dist/lib/components/Pagination.d.ts +11 -0
- package/dist/lib/components/Pagination.js +10 -0
- package/dist/lib/components/Pagination.js.map +1 -0
- package/dist/lib/components/PathRenderer.d.ts +11 -0
- package/dist/lib/components/PathRenderer.js +28 -0
- package/dist/lib/components/PathRenderer.js.map +1 -0
- package/dist/lib/components/ReactMarkdown.d.ts +29 -0
- package/dist/lib/components/ReactMarkdown.js +182 -0
- package/dist/lib/components/ReactMarkdown.js.map +1 -0
- package/dist/lib/components/Search.d.ts +3 -1
- package/dist/lib/components/Search.js +9 -3
- package/dist/lib/components/Search.js.map +1 -1
- package/dist/lib/components/SlotletProvider.d.ts +11 -3
- package/dist/lib/components/SlotletProvider.js +4 -2
- package/dist/lib/components/SlotletProvider.js.map +1 -1
- package/dist/lib/components/StatusPage.d.ts +7 -0
- package/dist/lib/components/StatusPage.js +71 -0
- package/dist/lib/components/StatusPage.js.map +1 -0
- package/dist/lib/components/ThemeSwitch.d.ts +1 -0
- package/dist/lib/components/ThemeSwitch.js +16 -0
- package/dist/lib/components/ThemeSwitch.js.map +1 -0
- package/dist/lib/components/TopNavigation.d.ts +6 -0
- package/dist/lib/components/TopNavigation.js +61 -8
- 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} +24 -18
- package/dist/lib/components/Zudoku.js.map +1 -0
- package/dist/lib/components/cache.d.ts +13 -0
- package/dist/lib/components/cache.js +20 -0
- package/dist/lib/components/cache.js.map +1 -0
- package/dist/lib/components/context/BypassProtectedRoutesContext.d.ts +1 -0
- package/dist/lib/components/context/BypassProtectedRoutesContext.js +3 -0
- package/dist/lib/components/context/BypassProtectedRoutesContext.js.map +1 -0
- package/dist/lib/components/context/RouterEventsEmitter.d.ts +1 -0
- package/dist/lib/components/context/RouterEventsEmitter.js +17 -0
- package/dist/lib/components/context/RouterEventsEmitter.js.map +1 -0
- package/dist/lib/components/context/ViewportAnchorContext.d.ts +2 -4
- package/dist/lib/components/context/ViewportAnchorContext.js +21 -14
- package/dist/lib/components/context/ViewportAnchorContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuContext.d.ts +10 -14
- package/dist/lib/components/context/ZudokuContext.js +41 -27
- 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 +54 -16
- package/dist/lib/components/index.js +25 -6
- package/dist/lib/components/index.js.map +1 -1
- package/dist/lib/components/navigation/PoweredByZudoku.d.ts +3 -0
- package/dist/lib/components/navigation/PoweredByZudoku.js +6 -0
- package/dist/lib/components/navigation/PoweredByZudoku.js.map +1 -0
- package/dist/lib/components/navigation/Sidebar.d.ts +5 -1
- package/dist/lib/components/navigation/Sidebar.js +3 -7
- package/dist/lib/components/navigation/Sidebar.js.map +1 -1
- package/dist/lib/components/navigation/SidebarBadge.d.ts +6 -3
- package/dist/lib/components/navigation/SidebarBadge.js +13 -11
- package/dist/lib/components/navigation/SidebarBadge.js.map +1 -1
- package/dist/lib/components/navigation/SidebarCategory.d.ts +3 -3
- package/dist/lib/components/navigation/SidebarCategory.js +27 -13
- package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
- package/dist/lib/components/navigation/SidebarItem.d.ts +3 -4
- package/dist/lib/components/navigation/SidebarItem.js +23 -16
- package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
- package/dist/lib/components/navigation/SidebarWrapper.d.ts +7 -6
- package/dist/lib/components/navigation/SidebarWrapper.js +18 -3
- package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
- package/dist/lib/{plugins/markdown → components/navigation}/Toc.js +5 -7
- package/dist/lib/components/navigation/Toc.js.map +1 -0
- package/dist/lib/components/navigation/ZudokuLogo.d.ts +6 -0
- package/dist/lib/components/navigation/ZudokuLogo.js +5 -0
- package/dist/lib/components/navigation/ZudokuLogo.js.map +1 -0
- package/dist/lib/components/navigation/utils.js +11 -15
- package/dist/lib/components/navigation/utils.js.map +1 -1
- package/dist/lib/core/RouteGuard.d.ts +2 -0
- package/dist/lib/core/RouteGuard.js +52 -0
- package/dist/lib/core/RouteGuard.js.map +1 -0
- package/dist/lib/core/ZudokuContext.d.ts +99 -0
- package/dist/lib/core/ZudokuContext.js +69 -0
- package/dist/lib/core/ZudokuContext.js.map +1 -0
- package/dist/lib/core/plugins.d.ts +32 -17
- package/dist/lib/core/plugins.js +3 -0
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/errors/ErrorAlert.d.ts +1 -1
- package/dist/lib/errors/ErrorAlert.js +13 -3
- package/dist/lib/errors/ErrorAlert.js.map +1 -1
- package/dist/lib/errors/RouterError.js +1 -1
- package/dist/lib/errors/RouterError.js.map +1 -1
- package/dist/lib/hooks/index.d.ts +3 -0
- package/dist/lib/hooks/index.js +5 -0
- package/dist/lib/hooks/index.js.map +1 -0
- package/dist/lib/hooks/useEvent.d.ts +11 -0
- package/dist/lib/hooks/useEvent.js +19 -0
- package/dist/lib/hooks/useEvent.js.map +1 -0
- package/dist/lib/hooks/useEvent.test.js +100 -0
- package/dist/lib/hooks/useEvent.test.js.map +1 -0
- package/dist/lib/icons.d.ts +1 -0
- package/dist/lib/icons.js +1 -0
- package/dist/lib/icons.js.map +1 -1
- package/dist/lib/oas/graphql/circular.d.ts +3 -0
- package/dist/lib/oas/graphql/circular.js +38 -0
- package/dist/lib/oas/graphql/circular.js.map +1 -0
- package/dist/lib/oas/graphql/index.d.ts +26 -1
- package/dist/lib/oas/graphql/index.js +229 -74
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/dereference/index.js +8 -3
- package/dist/lib/oas/parser/dereference/index.js.map +1 -1
- package/dist/lib/oas/parser/index.d.ts +6 -3
- package/dist/lib/oas/parser/index.js +0 -22
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/oas/parser/upgrade/index.d.ts +2 -2
- package/dist/lib/oas/parser/upgrade/index.js +21 -21
- package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
- package/dist/lib/plugins/api-catalog/Catalog.d.ts +4 -0
- package/dist/lib/plugins/api-catalog/Catalog.js +26 -0
- package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -0
- package/dist/lib/plugins/api-catalog/index.d.ts +31 -0
- package/dist/lib/plugins/api-catalog/index.js +46 -0
- package/dist/lib/plugins/api-catalog/index.js.map +1 -0
- package/dist/lib/plugins/api-keys/CreateApiKey.js +9 -5
- package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js +1 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +10 -9
- package/dist/lib/plugins/api-keys/index.js +4 -0
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/custom-pages/CustomPage.d.ts +2 -0
- package/dist/lib/plugins/custom-pages/CustomPage.js +11 -0
- package/dist/lib/plugins/custom-pages/CustomPage.js.map +1 -0
- package/dist/lib/plugins/custom-pages/index.d.ts +10 -0
- package/dist/lib/plugins/custom-pages/index.js +11 -0
- package/dist/lib/plugins/custom-pages/index.js.map +1 -0
- package/dist/lib/plugins/markdown/MdxPage.d.ts +10 -2
- package/dist/lib/plugins/markdown/MdxPage.js +18 -5
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/index.d.ts +8 -6
- 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 +32 -0
- package/dist/lib/plugins/markdown/resolver.js +46 -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 +25 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -0
- package/dist/lib/plugins/openapi/ColorizedParam.d.ts +10 -2
- package/dist/lib/plugins/openapi/ColorizedParam.js +29 -14
- package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
- package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -3
- package/dist/lib/plugins/openapi/Endpoint.js +43 -8
- package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
- package/dist/lib/plugins/openapi/OasProvider.d.ts +8 -0
- package/dist/lib/plugins/openapi/OasProvider.js +29 -0
- package/dist/lib/plugins/openapi/OasProvider.js.map +1 -0
- package/dist/lib/plugins/openapi/OperationList.d.ts +6 -3
- package/dist/lib/plugins/openapi/OperationList.js +105 -27
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationListItem.d.ts +5 -3
- package/dist/lib/plugins/openapi/OperationListItem.js +10 -5
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/ParamInfos.d.ts +6 -0
- package/dist/lib/plugins/openapi/ParamInfos.js +42 -0
- package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -0
- package/dist/lib/plugins/openapi/ParameterList.d.ts +2 -1
- package/dist/lib/plugins/openapi/ParameterList.js +3 -2
- package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js +12 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +5 -2
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +12 -3
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +3 -4
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +5 -9
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +7 -6
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SchemaList.d.ts +1 -0
- package/dist/lib/plugins/openapi/SchemaList.js +52 -0
- package/dist/lib/plugins/openapi/SchemaList.js.map +1 -0
- package/dist/lib/plugins/openapi/Sidecar.d.ts +1 -1
- package/dist/lib/plugins/openapi/Sidecar.js +90 -60
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarBox.js +4 -4
- package/dist/lib/plugins/openapi/SidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.d.ts +9 -0
- package/dist/lib/plugins/openapi/SidecarExamples.js +68 -0
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -0
- package/dist/lib/plugins/openapi/SimpleSelect.d.ts +2 -1
- package/dist/lib/plugins/openapi/SimpleSelect.js +1 -1
- package/dist/lib/plugins/openapi/SimpleSelect.js.map +1 -1
- package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +8 -0
- package/dist/lib/plugins/openapi/client/GraphQLClient.js +43 -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 +3 -1
- package/dist/lib/plugins/openapi/client/createServer.js +5 -2
- package/dist/lib/plugins/openapi/client/createServer.js.map +1 -1
- package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +9 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.js +14 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -0
- package/dist/lib/plugins/openapi/components/EnumValues.d.ts +5 -0
- package/dist/lib/plugins/openapi/components/EnumValues.js +15 -0
- package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -0
- package/dist/lib/plugins/openapi/components/SelectOnClick.d.ts +5 -0
- package/dist/lib/plugins/openapi/components/SelectOnClick.js +16 -0
- package/dist/lib/plugins/openapi/components/SelectOnClick.js.map +1 -0
- package/dist/lib/plugins/openapi/context.d.ts +3 -3
- 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 +11 -41
- package/dist/lib/plugins/openapi/graphql/gql.js +8 -14
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +168 -26
- package/dist/lib/plugins/openapi/graphql/graphql.js +238 -575
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +11 -7
- package/dist/lib/plugins/openapi/index.js +72 -104
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +59 -3
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.d.ts +6 -0
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +8 -0
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/Headers.d.ts +4 -4
- package/dist/lib/plugins/openapi/playground/Headers.js +84 -5
- package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/IdentityDialog.d.ts +11 -0
- package/dist/lib/plugins/openapi/playground/IdentityDialog.js +14 -0
- package/dist/lib/plugins/openapi/playground/IdentityDialog.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/IdentitySelector.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/IdentitySelector.js +10 -0
- package/dist/lib/plugins/openapi/playground/IdentitySelector.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +9 -0
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js +5 -0
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/PathParams.d.ts +3 -2
- package/dist/lib/plugins/openapi/playground/PathParams.js +5 -7
- package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Playground.d.ts +38 -2
- package/dist/lib/plugins/openapi/playground/Playground.js +134 -63
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +2 -2
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/QueryParams.js +24 -18
- package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js +8 -0
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/SubmitButton.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/SubmitButton.js +22 -0
- package/dist/lib/plugins/openapi/playground/SubmitButton.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/createUrl.js +3 -1
- package/dist/lib/plugins/openapi/playground/createUrl.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/rememberedIdentity.d.ts +17 -0
- package/dist/lib/plugins/openapi/playground/rememberedIdentity.js +11 -0
- package/dist/lib/plugins/openapi/playground/rememberedIdentity.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js +11 -0
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.d.ts +8 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +101 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +9 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +17 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.d.ts +10 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js +32 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js +56 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.d.ts +7 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.js +16 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.js +174 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.d.ts +10 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.js +66 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js +131 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.d.ts +11 -0
- package/dist/lib/plugins/openapi/processors/removePaths.js +33 -0
- package/dist/lib/plugins/openapi/processors/removePaths.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.test.js +104 -0
- package/dist/lib/plugins/openapi/processors/removePaths.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/traverse.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/traverse.js +2 -0
- package/dist/lib/plugins/openapi/processors/traverse.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.d.ts +1 -2
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js +2 -2
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.d.ts +2 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js +2 -2
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.d.ts +0 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js +1 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.d.ts +4 -0
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +12 -0
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/{SchemaComponents.d.ts → SchemaPropertyItem.d.ts} +2 -4
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +42 -0
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +1 -2
- package/dist/lib/plugins/openapi/schema/SchemaView.js +34 -48
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/utils.d.ts +2 -0
- package/dist/lib/plugins/openapi/schema/utils.js +5 -1
- package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
- package/dist/lib/plugins/openapi/state.d.ts +25 -0
- package/dist/lib/plugins/openapi/state.js +18 -0
- package/dist/lib/plugins/openapi/state.js.map +1 -0
- package/dist/lib/plugins/openapi/util/createSidebarCategory.d.ts +9 -0
- package/dist/lib/plugins/openapi/util/createSidebarCategory.js +23 -0
- package/dist/lib/plugins/openapi/util/createSidebarCategory.js.map +1 -0
- package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +0 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +36 -39
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
- package/dist/lib/plugins/openapi/util/getRoutes.d.ts +10 -0
- package/dist/lib/plugins/openapi/util/getRoutes.js +80 -0
- package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -0
- package/dist/lib/plugins/openapi/util/methodColorMap.d.ts +2 -0
- package/dist/lib/plugins/openapi/util/methodColorMap.js +10 -0
- package/dist/lib/plugins/openapi/util/methodColorMap.js.map +1 -0
- package/dist/lib/plugins/openapi/util/methodToColor.d.ts +20 -0
- package/dist/lib/plugins/openapi/util/methodToColor.js +24 -0
- package/dist/lib/plugins/openapi/util/methodToColor.js.map +1 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.d.ts +1 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js +27 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js.map +1 -0
- package/dist/lib/plugins/redirect/index.d.ts +4 -7
- package/dist/lib/plugins/redirect/index.js +2 -2
- package/dist/lib/plugins/redirect/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/index.d.ts +24 -5
- package/dist/lib/plugins/search-inkeep/index.js +41 -5
- package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/inkeep.d.ts +3 -4
- package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.d.ts +6 -0
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js +80 -0
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/ResultList.d.ts +8 -0
- package/dist/lib/plugins/search-pagefind/ResultList.js +32 -0
- package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/get-results.d.ts +10 -0
- package/dist/lib/plugins/search-pagefind/get-results.js +42 -0
- package/dist/lib/plugins/search-pagefind/get-results.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/index.d.ts +6 -0
- package/dist/lib/plugins/search-pagefind/index.js +9 -0
- package/dist/lib/plugins/search-pagefind/index.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/types.d.ts +85 -0
- package/dist/lib/plugins/search-pagefind/types.js +2 -0
- package/dist/lib/plugins/search-pagefind/types.js.map +1 -0
- 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 +22 -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 +3 -4
- package/dist/lib/ui/Button.js +2 -1
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/Callout.d.ts +38 -36
- package/dist/lib/ui/Callout.js +3 -2
- package/dist/lib/ui/Callout.js.map +1 -1
- package/dist/lib/ui/Card.js +1 -1
- package/dist/lib/ui/Card.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 +94 -0
- package/dist/lib/ui/Command.js +35 -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/Drawer.d.ts +8 -10
- package/dist/lib/ui/Drawer.js.map +1 -1
- 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/Input.d.ts +1 -2
- package/dist/lib/ui/Input.js.map +1 -1
- 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/{components → ui}/Select.js +3 -3
- 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/Stepper.d.ts +3 -0
- package/dist/lib/ui/Stepper.js +7 -0
- package/dist/lib/ui/Stepper.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/SyntaxHighlight.d.ts +15 -0
- package/dist/lib/ui/SyntaxHighlight.js +62 -0
- package/dist/lib/ui/SyntaxHighlight.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/ui/util.d.ts +2 -0
- package/dist/lib/ui/util.js +3 -0
- package/dist/lib/ui/util.js.map +1 -0
- package/dist/lib/util/MdxComponents.d.ts +24 -21
- package/dist/lib/util/MdxComponents.js +10 -7
- package/dist/lib/util/MdxComponents.js.map +1 -1
- package/dist/lib/util/createVariantComponent.d.ts +2 -2
- package/dist/lib/util/detectOS.d.ts +1 -0
- package/dist/lib/util/detectOS.js +11 -0
- package/dist/lib/util/detectOS.js.map +1 -0
- 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/joinPath.d.ts +3 -0
- package/dist/lib/util/joinPath.js +3 -0
- package/dist/lib/util/joinPath.js.map +1 -1
- package/dist/lib/util/joinUrl.d.ts +1 -0
- package/dist/lib/util/joinUrl.js +40 -0
- package/dist/lib/util/joinUrl.js.map +1 -0
- package/dist/lib/util/joinUrl.test.d.ts +1 -0
- package/dist/lib/util/joinUrl.test.js +43 -0
- package/dist/lib/util/joinUrl.test.js.map +1 -0
- package/dist/lib/util/scrollIntoViewIfNeeded.d.ts +1 -0
- package/dist/lib/util/scrollIntoViewIfNeeded.js +14 -0
- package/dist/lib/util/scrollIntoViewIfNeeded.js.map +1 -0
- package/dist/lib/util/traverse.d.ts +3 -0
- package/dist/lib/util/traverse.js +22 -0
- package/dist/lib/util/traverse.js.map +1 -0
- package/dist/lib/util/types.d.ts +7 -0
- package/dist/lib/util/types.js +2 -0
- package/dist/lib/util/types.js.map +1 -0
- package/dist/lib/util/useExposedProps.d.ts +2 -0
- package/dist/lib/util/useExposedProps.js +9 -0
- package/dist/lib/util/useExposedProps.js.map +1 -0
- 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/useLatest.d.ts +1 -0
- package/dist/lib/util/useLatest.js +15 -0
- package/dist/lib/util/useLatest.js.map +1 -0
- package/dist/lib/util/useOnScreen.d.ts +5 -0
- package/dist/lib/util/useOnScreen.js +19 -0
- package/dist/lib/util/useOnScreen.js.map +1 -0
- package/dist/lib/util/useScrollToAnchor.d.ts +1 -0
- package/dist/lib/util/useScrollToAnchor.js +42 -37
- package/dist/lib/util/useScrollToAnchor.js.map +1 -1
- package/dist/lib/util/useScrollToTop.js +7 -5
- package/dist/lib/util/useScrollToTop.js.map +1 -1
- package/dist/vite/api/schema-codegen.d.ts +12 -0
- package/dist/vite/api/schema-codegen.js +85 -0
- package/dist/vite/api/schema-codegen.js.map +1 -0
- package/dist/vite/api/schema-codegen.test.d.ts +1 -0
- package/dist/vite/api/schema-codegen.test.js +313 -0
- package/dist/vite/api/schema-codegen.test.js.map +1 -0
- package/dist/vite/build.js +47 -13
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.d.ts +8 -15
- package/dist/vite/config.js +133 -118
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/config.test.js +11 -5
- package/dist/vite/config.test.js.map +1 -1
- package/dist/vite/create-pagefind-index.d.ts +4 -0
- package/dist/vite/create-pagefind-index.js +12 -0
- package/dist/vite/create-pagefind-index.js.map +1 -0
- package/dist/vite/css/collect.d.ts +2 -0
- package/dist/vite/css/collect.js +27 -0
- package/dist/vite/css/collect.js.map +1 -0
- package/dist/vite/css/plugin.d.ts +5 -0
- package/dist/vite/css/plugin.js +79 -0
- package/dist/vite/css/plugin.js.map +1 -0
- 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.d.ts +12 -3
- package/dist/vite/dev-server.js +79 -25
- package/dist/vite/dev-server.js.map +1 -1
- package/dist/vite/error-handler.d.ts +1 -1
- package/dist/vite/error-handler.js +1 -1
- package/dist/vite/error-handler.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 +113 -0
- package/dist/vite/output.js +60 -0
- package/dist/vite/output.js.map +1 -0
- package/dist/vite/plugin-api-keys.d.ts +2 -2
- package/dist/vite/plugin-api-keys.js +5 -5
- package/dist/vite/plugin-api-keys.js.map +1 -1
- package/dist/vite/plugin-api.d.ts +2 -2
- package/dist/vite/plugin-api.js +223 -35
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-auth.d.ts +2 -2
- package/dist/vite/plugin-auth.js +7 -4
- package/dist/vite/plugin-auth.js.map +1 -1
- package/dist/vite/plugin-component.d.ts +2 -2
- package/dist/vite/plugin-component.js +22 -13
- package/dist/vite/plugin-component.js.map +1 -1
- package/dist/vite/plugin-config-reload.d.ts +4 -4
- package/dist/vite/plugin-config-reload.js +18 -8
- 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 +26 -3
- package/dist/vite/plugin-config.js.map +1 -1
- package/dist/vite/plugin-custom-pages.d.ts +4 -0
- package/dist/vite/plugin-custom-pages.js +30 -0
- package/dist/vite/plugin-custom-pages.js.map +1 -0
- package/dist/vite/plugin-docs.d.ts +3 -3
- package/dist/vite/plugin-docs.js +57 -27
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-docs.test.js +15 -23
- package/dist/vite/plugin-docs.test.js.map +1 -1
- package/dist/vite/plugin-frontmatter.d.ts +3 -0
- package/dist/vite/plugin-frontmatter.js +34 -0
- package/dist/vite/plugin-frontmatter.js.map +1 -0
- package/dist/vite/plugin-mdx.d.ts +2 -8
- package/dist/vite/plugin-mdx.js +97 -7
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-redirect.d.ts +2 -2
- package/dist/vite/plugin-redirect.js +3 -3
- package/dist/vite/plugin-redirect.js.map +1 -1
- package/dist/vite/plugin-search.d.ts +3 -0
- package/dist/vite/plugin-search.js +30 -0
- package/dist/vite/plugin-search.js.map +1 -0
- package/dist/vite/plugin-sidebar.d.ts +2 -2
- package/dist/vite/plugin-sidebar.js +30 -7
- package/dist/vite/plugin-sidebar.js.map +1 -1
- package/dist/vite/{plugin-custom-css.d.ts → plugin-theme-css.d.ts} +3 -3
- package/dist/vite/plugin-theme-css.js +117 -0
- package/dist/vite/plugin-theme-css.js.map +1 -0
- package/dist/vite/plugin.d.ts +2 -3
- package/dist/vite/plugin.js +13 -7
- package/dist/vite/plugin.js.map +1 -1
- package/dist/vite/prerender/FileWritingResponse.d.ts +25 -0
- package/dist/vite/prerender/FileWritingResponse.js +51 -0
- package/dist/vite/prerender/FileWritingResponse.js.map +1 -0
- package/dist/vite/prerender/InMemoryResponse.d.ts +16 -0
- package/dist/vite/prerender/InMemoryResponse.js +32 -0
- package/dist/vite/prerender/InMemoryResponse.js.map +1 -0
- package/dist/vite/prerender/PrerenderResponse.d.ts +10 -0
- package/dist/vite/prerender/PrerenderResponse.js +2 -0
- package/dist/vite/prerender/PrerenderResponse.js.map +1 -0
- package/dist/vite/prerender/prerender.d.ts +15 -0
- package/dist/vite/prerender/prerender.js +109 -0
- package/dist/vite/prerender/prerender.js.map +1 -0
- package/dist/vite/prerender/worker.d.ts +13 -0
- package/dist/vite/prerender/worker.js +59 -0
- package/dist/vite/prerender/worker.js.map +1 -0
- package/dist/vite/remarkStaticGeneration.d.ts +3 -0
- package/dist/vite/remarkStaticGeneration.js +125 -0
- package/dist/vite/remarkStaticGeneration.js.map +1 -0
- package/dist/vite/reporter.d.ts +3 -0
- package/dist/vite/reporter.js +33 -0
- package/dist/vite/reporter.js.map +1 -0
- package/dist/vite/sitemap.d.ts +1 -1
- package/dist/vite/sitemap.js +2 -1
- package/dist/vite/sitemap.js.map +1 -1
- package/dist/zuplo/enrich-with-zuplo.d.ts +5 -0
- package/dist/zuplo/enrich-with-zuplo.js +184 -0
- package/dist/zuplo/enrich-with-zuplo.js.map +1 -0
- package/dist/zuplo/env.d.ts +7 -0
- package/dist/zuplo/env.js +12 -0
- package/dist/zuplo/env.js.map +1 -0
- package/dist/zuplo/policy-types.d.ts +33 -0
- package/dist/zuplo/policy-types.js +8 -0
- package/dist/zuplo/policy-types.js.map +1 -0
- package/dist/zuplo/with-zuplo-processors.d.ts +3 -0
- package/dist/zuplo/with-zuplo-processors.js +26 -0
- package/dist/zuplo/with-zuplo-processors.js.map +1 -0
- package/dist/zuplo/with-zuplo.d.ts +3 -0
- package/dist/zuplo/with-zuplo.js +13 -0
- package/dist/zuplo/with-zuplo.js.map +1 -0
- package/lib/AuthenticationPlugin-foqdvvkf.js +58 -0
- package/lib/AuthenticationPlugin-foqdvvkf.js.map +1 -0
- package/lib/Button-Fp19CMUr.js +49 -0
- package/lib/Button-Fp19CMUr.js.map +1 -0
- package/lib/Callout-Boqdgl-z.js +230 -0
- package/lib/Callout-Boqdgl-z.js.map +1 -0
- package/lib/CategoryHeading-DpB47wvk.js +10 -0
- package/lib/{CategoryHeading-XnFqN2lJ.js.map → CategoryHeading-DpB47wvk.js.map} +1 -1
- package/lib/ClientOnly-E7hGysn1.js +11 -0
- package/lib/ClientOnly-E7hGysn1.js.map +1 -0
- package/lib/Dialog-sbgekbjb.js +98 -0
- package/lib/Dialog-sbgekbjb.js.map +1 -0
- package/lib/Drawer-kDAfOq_2.js +1133 -0
- package/lib/Drawer-kDAfOq_2.js.map +1 -0
- package/lib/Markdown-CKXePgqR.js +16962 -0
- package/lib/Markdown-CKXePgqR.js.map +1 -0
- package/lib/MdxPage-DzpRK-fu.js +85 -0
- package/lib/MdxPage-DzpRK-fu.js.map +1 -0
- package/lib/OasProvider-Dw2mP5VZ.js +34 -0
- package/lib/OasProvider-Dw2mP5VZ.js.map +1 -0
- package/lib/OperationList-Cr_NA4e2.js +5069 -0
- package/lib/OperationList-Cr_NA4e2.js.map +1 -0
- package/lib/Pagination-DT6eKg_U.js +48 -0
- package/lib/Pagination-DT6eKg_U.js.map +1 -0
- package/lib/RouteGuard-CqZPoZYJ.js +744 -0
- package/lib/RouteGuard-CqZPoZYJ.js.map +1 -0
- package/lib/SchemaList-DNvUJgwI.js +148 -0
- package/lib/SchemaList-DNvUJgwI.js.map +1 -0
- package/lib/SchemaView-Cxh_msLc.js +357 -0
- package/lib/SchemaView-Cxh_msLc.js.map +1 -0
- package/lib/Select-DVFRKf1R.js +223 -0
- package/lib/Select-DVFRKf1R.js.map +1 -0
- package/lib/SlotletProvider-BV1xrg-l.js +338 -0
- package/lib/SlotletProvider-BV1xrg-l.js.map +1 -0
- package/lib/{Spinner-3cQDBVGr.js → Spinner-CE68iCm0.js} +2 -2
- package/lib/{Spinner-3cQDBVGr.js.map → Spinner-CE68iCm0.js.map} +1 -1
- package/lib/SyntaxHighlight-BEoSoPEo.js +2890 -0
- package/lib/SyntaxHighlight-BEoSoPEo.js.map +1 -0
- package/lib/Toc-D40bDl5J.js +92 -0
- package/lib/Toc-D40bDl5J.js.map +1 -0
- package/lib/chunk-HA7DTUK3-C4gP41vD.js +1821 -0
- package/lib/chunk-HA7DTUK3-C4gP41vD.js.map +1 -0
- package/lib/circular-ByJI6Mci.js +15877 -0
- package/lib/circular-ByJI6Mci.js.map +1 -0
- package/lib/cn-qaFjX9_3.js +2279 -0
- package/lib/cn-qaFjX9_3.js.map +1 -0
- package/lib/context-DLCwaMXN.js +22 -0
- package/lib/context-DLCwaMXN.js.map +1 -0
- package/lib/createServer-Cq73y9Kv.js +12454 -0
- package/lib/createServer-Cq73y9Kv.js.map +1 -0
- package/lib/hook-CqpVYDqN.js +1483 -0
- package/lib/hook-CqpVYDqN.js.map +1 -0
- package/lib/index-Bn6Lc9tq.js +9 -0
- package/lib/index-Bn6Lc9tq.js.map +1 -0
- package/lib/index-CN3TIw7H.js +2009 -0
- package/lib/index-CN3TIw7H.js.map +1 -0
- package/lib/index-CPNSgwSb.js +36 -0
- package/lib/index-CPNSgwSb.js.map +1 -0
- package/lib/{index-CLd8ycZz.js → index-Dl3Yl0yb.js} +1056 -1009
- package/lib/index-Dl3Yl0yb.js.map +1 -0
- package/lib/index-DwT-v3zK.js +86 -0
- package/lib/index-DwT-v3zK.js.map +1 -0
- package/lib/index-LNp6rxyU.js +2094 -0
- package/lib/index-LNp6rxyU.js.map +1 -0
- package/lib/index-dQecW8K5.js +2227 -0
- package/lib/index-dQecW8K5.js.map +1 -0
- package/lib/index-gQD2h1wX.js +447 -0
- package/lib/index-gQD2h1wX.js.map +1 -0
- package/lib/index.esm--gIChbWs.js +1207 -0
- package/lib/index.esm--gIChbWs.js.map +1 -0
- package/lib/invariant-Caa8-XvF.js +26 -0
- package/lib/invariant-Caa8-XvF.js.map +1 -0
- package/lib/jsx-runtime-CYK1ROHF.js +446 -0
- package/lib/jsx-runtime-CYK1ROHF.js.map +1 -0
- package/lib/mutation-8LjrN7uz.js +208 -0
- package/lib/mutation-8LjrN7uz.js.map +1 -0
- package/lib/objectEntries-yMIkr2mI.js +5 -0
- package/lib/objectEntries-yMIkr2mI.js.map +1 -0
- package/lib/{prism-bash.min-DadFsM4Z.js → prism-bash.min-HHIMdNJ_.js} +4 -4
- package/lib/{prism-bash.min-DadFsM4Z.js.map → prism-bash.min-HHIMdNJ_.js.map} +1 -1
- package/lib/prism-csharp.min-bQAo2pmx.js +63 -0
- package/lib/{prism-csharp.min-Yizuc34Y.js.map → prism-csharp.min-bQAo2pmx.js.map} +1 -1
- package/lib/prism-java.min-BpvsOuIa.js +35 -0
- package/lib/{prism-java.min-d5iT_mOd.js.map → prism-java.min-BpvsOuIa.js.map} +1 -1
- package/lib/prism-javascript.min-CEqHqgbm.js.map +1 -1
- package/lib/prism-json.min-B1GJqK1k.js.map +1 -1
- package/lib/prism-jsstacktrace.min-BfobCF2F.js +2 -0
- package/lib/prism-jsstacktrace.min-BfobCF2F.js.map +1 -0
- package/lib/{prism-markdown.min-F3U-vPBi.js → prism-markdown.min-C0Qn0m-5.js} +30 -30
- package/lib/{prism-markdown.min-F3U-vPBi.js.map → prism-markdown.min-C0Qn0m-5.js.map} +1 -1
- package/lib/prism-markup-BNGj0Tvm.js.map +1 -1
- package/lib/prism-objectivec.min-BXSWqpJJ.js.map +1 -1
- package/lib/prism-ruby.min-Dx9KO9ds.js +38 -0
- package/lib/{prism-ruby.min-C7LwcKyz.js.map → prism-ruby.min-Dx9KO9ds.js.map} +1 -1
- package/lib/prism-typescript.min-CD7H2IYQ.js +34 -0
- package/lib/{prism-typescript.min-oSVeWCAd.js.map → prism-typescript.min-CD7H2IYQ.js.map} +1 -1
- package/lib/processors/removeExtensions.js +11 -0
- package/lib/processors/removeExtensions.js.map +1 -0
- package/lib/processors/removeParameters.js +48 -0
- package/lib/processors/removeParameters.js.map +1 -0
- package/lib/processors/removePaths.js +28 -0
- package/lib/processors/removePaths.js.map +1 -0
- package/lib/processors/traverse.js +15 -0
- package/lib/processors/traverse.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 +28 -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 +50 -0
- package/lib/ui/Button.js.map +1 -0
- package/lib/ui/Callout.js +96 -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 +1416 -0
- package/lib/ui/Carousel.js.map +1 -0
- package/lib/ui/Checkbox.js +29 -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 +156 -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 +17 -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/Stepper.js +6 -0
- package/lib/ui/Stepper.js.map +1 -0
- package/lib/ui/Switch.js +28 -0
- package/lib/ui/Switch.js.map +1 -0
- package/lib/ui/SyntaxHighlight.js +11 -0
- package/lib/ui/SyntaxHighlight.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/ui/util.js +6 -0
- package/lib/ui/util.js.map +1 -0
- package/lib/useExposedProps-B9qXJedG.js +9 -0
- package/lib/useExposedProps-B9qXJedG.js.map +1 -0
- package/lib/useLatest-hmRS46UF.js +11 -0
- package/lib/useLatest-hmRS46UF.js.map +1 -0
- package/lib/zudoku.auth-auth0.js +30 -25
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +101 -55
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +636 -665
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.components.js +32 -3360
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +19 -0
- package/lib/zudoku.hooks.js.map +1 -0
- package/lib/zudoku.icons.js +10 -0
- package/lib/zudoku.icons.js.map +1 -1
- package/lib/zudoku.plugin-api-catalog.js +117 -0
- package/lib/zudoku.plugin-api-catalog.js.map +1 -0
- package/lib/zudoku.plugin-api-keys.js +104 -108
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +22 -0
- package/lib/zudoku.plugin-custom-pages.js.map +1 -0
- package/lib/zudoku.plugin-markdown.js +73 -24
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +7 -12
- 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 +53 -28
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +233 -0
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -0
- package/lib/zudoku.plugins.js +14 -0
- package/lib/zudoku.plugins.js.map +1 -0
- package/package.json +180 -100
- package/src/app/demo-cdn.html +31 -31
- package/src/app/demo.tsx +1 -5
- package/src/app/entry.client.tsx +28 -3
- package/src/app/entry.server.tsx +81 -60
- package/src/app/main.css +105 -41
- package/src/app/main.tsx +55 -44
- package/src/app/sentry.ts +24 -0
- package/src/app/standalone.tsx +2 -6
- package/src/app/tailwind.ts +83 -48
- package/src/lib/MissingIcon.tsx +22 -0
- package/src/lib/authentication/AuthenticationPlugin.tsx +4 -1
- package/src/lib/authentication/authentication.ts +5 -3
- package/src/lib/authentication/components/CallbackHandler.tsx +20 -51
- package/src/lib/authentication/components/SignIn.tsx +1 -1
- package/src/lib/authentication/components/SignOut.tsx +3 -2
- package/src/lib/authentication/hook.ts +13 -4
- package/src/lib/authentication/providers/auth0.tsx +20 -16
- package/src/lib/authentication/providers/clerk.tsx +70 -15
- package/src/lib/authentication/providers/openid.tsx +72 -55
- package/src/lib/authentication/providers/supabase.tsx +157 -0
- package/src/lib/authentication/state.ts +56 -8
- 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/AnchorLink.tsx +13 -8
- package/src/lib/components/Autocomplete.tsx +113 -0
- package/src/lib/components/Banner.tsx +13 -2
- package/src/lib/components/Bootstrap.tsx +43 -16
- package/src/lib/components/ClientOnly.tsx +6 -3
- package/src/lib/components/DeveloperHint.tsx +6 -1
- package/src/lib/components/ErrorPage.tsx +0 -2
- package/src/lib/components/Footer.tsx +139 -0
- package/src/lib/components/Header.tsx +104 -51
- package/src/lib/components/Heading.tsx +13 -13
- package/src/lib/components/InlineCode.tsx +15 -8
- package/src/lib/components/Layout.tsx +34 -54
- package/src/lib/components/Main.tsx +50 -0
- package/src/lib/components/Markdown.tsx +15 -16
- package/src/lib/components/MobileTopNavigation.tsx +42 -28
- package/src/lib/components/NotFoundPage.tsx +1 -1
- package/src/lib/components/Pagination.tsx +50 -0
- package/src/lib/components/PathRenderer.tsx +61 -0
- package/src/lib/components/ReactMarkdown.license.txt +21 -0
- package/src/lib/components/ReactMarkdown.tsx +264 -0
- package/src/lib/components/Search.tsx +18 -7
- package/src/lib/components/SlotletProvider.tsx +29 -4
- package/src/lib/components/StatusPage.tsx +91 -0
- package/src/lib/components/ThemeSwitch.tsx +46 -0
- package/src/lib/components/TopNavigation.tsx +107 -25
- package/src/lib/components/Zudoku.tsx +121 -0
- package/src/lib/components/cache.ts +23 -0
- package/src/lib/components/context/BypassProtectedRoutesContext.ts +3 -0
- package/src/lib/components/context/RouterEventsEmitter.tsx +19 -0
- package/src/lib/components/context/ViewportAnchorContext.tsx +26 -21
- package/src/lib/components/context/ZudokuContext.ts +54 -29
- package/src/lib/components/context/ZudokuProvider.tsx +2 -2
- package/src/lib/components/index.ts +31 -6
- package/src/lib/components/navigation/PoweredByZudoku.tsx +23 -0
- package/src/lib/components/navigation/Sidebar.tsx +38 -29
- package/src/lib/components/navigation/SidebarBadge.tsx +17 -12
- package/src/lib/components/navigation/SidebarCategory.tsx +61 -52
- package/src/lib/components/navigation/SidebarItem.tsx +38 -50
- package/src/lib/components/navigation/SidebarWrapper.tsx +42 -22
- package/src/lib/{plugins/markdown → components/navigation}/Toc.tsx +5 -14
- package/src/lib/components/navigation/ZudokuLogo.tsx +25 -0
- package/src/lib/components/navigation/utils.ts +12 -17
- package/src/lib/core/RouteGuard.tsx +96 -0
- package/src/lib/core/ZudokuContext.ts +180 -0
- package/src/lib/core/plugins.ts +46 -22
- package/src/lib/errors/ErrorAlert.tsx +36 -15
- package/src/lib/errors/RouterError.tsx +1 -1
- package/src/lib/hooks/index.ts +5 -0
- package/src/lib/hooks/useEvent.test.tsx +149 -0
- package/src/lib/hooks/useEvent.ts +41 -0
- package/src/lib/icons.ts +1 -0
- package/src/lib/oas/graphql/circular.ts +50 -0
- package/src/lib/oas/graphql/index.ts +321 -115
- package/src/lib/oas/parser/dereference/index.ts +10 -4
- package/src/lib/oas/parser/index.ts +8 -29
- package/src/lib/oas/parser/upgrade/index.ts +24 -29
- package/src/lib/plugins/api-catalog/Catalog.tsx +73 -0
- package/src/lib/plugins/api-catalog/index.tsx +115 -0
- package/src/lib/plugins/api-keys/CreateApiKey.tsx +10 -6
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +1 -1
- package/src/lib/plugins/api-keys/index.tsx +16 -10
- package/src/lib/plugins/custom-pages/CustomPage.tsx +18 -0
- package/src/lib/plugins/custom-pages/index.tsx +24 -0
- package/src/lib/plugins/markdown/MdxPage.tsx +54 -50
- package/src/lib/plugins/markdown/index.tsx +53 -11
- package/src/lib/plugins/markdown/resolver.ts +57 -0
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +83 -0
- package/src/lib/plugins/openapi/ColorizedParam.tsx +49 -23
- package/src/lib/plugins/openapi/Endpoint.tsx +83 -22
- package/src/lib/plugins/openapi/OasProvider.tsx +51 -0
- package/src/lib/plugins/openapi/OperationList.tsx +231 -71
- package/src/lib/plugins/openapi/OperationListItem.tsx +136 -88
- package/src/lib/plugins/openapi/ParamInfos.tsx +87 -0
- package/src/lib/plugins/openapi/ParameterList.tsx +4 -0
- package/src/lib/plugins/openapi/ParameterListItem.tsx +48 -31
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +24 -2
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +15 -33
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +46 -58
- package/src/lib/plugins/openapi/SchemaList.tsx +151 -0
- package/src/lib/plugins/openapi/Sidecar.tsx +155 -106
- package/src/lib/plugins/openapi/SidecarBox.tsx +4 -16
- package/src/lib/plugins/openapi/SidecarExamples.tsx +162 -0
- package/src/lib/plugins/openapi/SimpleSelect.tsx +11 -3
- package/src/lib/plugins/openapi/client/GraphQLClient.tsx +65 -0
- package/src/lib/plugins/openapi/client/GraphQLContext.tsx +16 -0
- package/src/lib/plugins/openapi/client/createServer.ts +8 -2
- package/src/lib/plugins/openapi/client/useCreateQuery.ts +26 -0
- package/src/lib/plugins/openapi/components/EnumValues.tsx +58 -0
- package/src/lib/plugins/openapi/components/SelectOnClick.tsx +29 -0
- package/src/lib/plugins/openapi/context.tsx +2 -2
- package/src/lib/plugins/openapi/graphql/fragment-masking.ts +11 -18
- package/src/lib/plugins/openapi/graphql/gql.ts +46 -30
- package/src/lib/plugins/openapi/graphql/graphql.ts +413 -597
- package/src/lib/plugins/openapi/index.tsx +110 -138
- package/src/lib/plugins/openapi/interfaces.ts +60 -3
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +52 -0
- package/src/lib/plugins/openapi/playground/Headers.tsx +165 -36
- package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +74 -0
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +54 -0
- package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +13 -0
- package/src/lib/plugins/openapi/playground/PathParams.tsx +39 -64
- package/src/lib/plugins/openapi/playground/Playground.tsx +395 -220
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +7 -4
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +86 -88
- package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +51 -0
- package/src/lib/plugins/openapi/playground/SubmitButton.tsx +75 -0
- package/src/lib/plugins/openapi/playground/createUrl.ts +6 -1
- package/src/lib/plugins/openapi/playground/rememberedIdentity.ts +26 -0
- package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +73 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +230 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +123 -0
- package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.test.ts +64 -0
- package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.ts +36 -0
- package/src/lib/plugins/openapi/processors/removeExtensions.test.ts +202 -0
- package/src/lib/plugins/openapi/processors/removeExtensions.ts +27 -0
- package/src/lib/plugins/openapi/processors/removeParameters.test.ts +148 -0
- package/src/lib/plugins/openapi/processors/removeParameters.ts +101 -0
- package/src/lib/plugins/openapi/processors/removePaths.test.ts +126 -0
- package/src/lib/plugins/openapi/processors/removePaths.ts +55 -0
- package/src/lib/plugins/openapi/processors/traverse.ts +1 -0
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.tsx +1 -8
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.tsx +3 -0
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.tsx +6 -3
- package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +36 -0
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +148 -0
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +88 -136
- package/src/lib/plugins/openapi/schema/utils.ts +11 -1
- package/src/lib/plugins/openapi/state.ts +36 -0
- package/src/lib/plugins/openapi/util/createSidebarCategory.tsx +37 -0
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +44 -43
- package/src/lib/plugins/openapi/util/getRoutes.tsx +126 -0
- package/src/lib/plugins/openapi/util/methodColorMap.tsx +11 -0
- package/src/lib/plugins/openapi/util/methodToColor.ts +27 -0
- package/src/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.tsx +32 -0
- package/src/lib/plugins/redirect/index.tsx +6 -10
- package/src/lib/plugins/search-inkeep/index.tsx +80 -25
- package/src/lib/plugins/search-inkeep/inkeep.ts +3 -9
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +164 -0
- package/src/lib/plugins/search-pagefind/ResultList.tsx +105 -0
- package/src/lib/plugins/search-pagefind/get-results.tsx +75 -0
- package/src/lib/plugins/search-pagefind/index.tsx +21 -0
- package/src/lib/plugins/search-pagefind/types.ts +118 -0
- 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 +37 -0
- package/src/lib/ui/Breadcrumb.tsx +115 -0
- package/src/lib/ui/Button.tsx +5 -3
- package/src/lib/ui/Callout.tsx +36 -16
- package/src/lib/ui/Card.tsx +1 -1
- package/src/lib/ui/Carousel.tsx +260 -0
- package/src/lib/ui/Checkbox.tsx +29 -0
- package/src/lib/ui/Collapsible.tsx +9 -0
- package/src/lib/ui/Command.tsx +193 -0
- package/src/lib/{components → ui}/Dialog.tsx +4 -3
- package/src/lib/ui/Drawer.tsx +38 -36
- package/src/lib/ui/Form.tsx +177 -0
- package/src/lib/ui/HoverCard.tsx +27 -0
- package/src/lib/ui/Input.tsx +1 -2
- 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/{components → ui}/Select.tsx +2 -2
- package/src/lib/ui/Skeleton.tsx +15 -0
- package/src/lib/ui/Slider.tsx +26 -0
- package/src/lib/ui/Stepper.tsx +8 -0
- package/src/lib/ui/Switch.tsx +27 -0
- package/src/lib/ui/SyntaxHighlight.tsx +186 -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/ui/util.tsx +3 -0
- package/src/lib/util/MdxComponents.tsx +12 -12
- package/src/lib/util/createVariantComponent.tsx +2 -2
- package/src/lib/util/detectOS.ts +9 -0
- package/src/lib/util/invariant.ts +15 -3
- package/src/lib/util/joinPath.tsx +3 -0
- package/src/lib/util/joinUrl.test.ts +62 -0
- package/src/lib/util/joinUrl.ts +57 -0
- package/src/lib/util/scrollIntoViewIfNeeded.ts +18 -0
- package/src/lib/util/traverse.ts +31 -0
- package/src/lib/util/types.ts +7 -0
- package/src/lib/util/useExposedProps.tsx +16 -0
- package/src/lib/util/useIsomorphicLayoutEffect.ts +5 -0
- package/src/lib/util/useLatest.ts +18 -0
- package/src/lib/util/useOnScreen.ts +34 -0
- package/src/lib/util/useScrollToAnchor.ts +48 -39
- package/src/lib/util/useScrollToTop.ts +9 -4
- 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/SyntaxHighlight.d.ts +0 -11
- package/dist/lib/components/SyntaxHighlight.js +0 -50
- package/dist/lib/components/SyntaxHighlight.js.map +0 -1
- package/dist/lib/components/context/PluginSystem.js +0 -2
- package/dist/lib/components/context/PluginSystem.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.d.ts +0 -78
- package/dist/lib/core/DevPortalContext.js +0 -49
- package/dist/lib/core/DevPortalContext.js.map +0 -1
- package/dist/lib/plugins/custom-page/index.d.ts +0 -8
- package/dist/lib/plugins/custom-page/index.js +0 -12
- package/dist/lib/plugins/custom-page/index.js.map +0 -1
- package/dist/lib/plugins/markdown/Toc.js.map +0 -1
- package/dist/lib/plugins/markdown/generateRoutes.d.ts +0 -3
- package/dist/lib/plugins/markdown/generateRoutes.js +0 -19
- package/dist/lib/plugins/markdown/generateRoutes.js.map +0 -1
- package/dist/lib/plugins/openapi/Route.d.ts +0 -6
- package/dist/lib/plugins/openapi/Route.js +0 -8
- package/dist/lib/plugins/openapi/Route.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/plugins/openapi/client/worker.js +0 -20
- package/dist/lib/plugins/openapi/client/worker.js.map +0 -1
- package/dist/lib/plugins/openapi/playground/Editor.d.ts +0 -1
- package/dist/lib/plugins/openapi/playground/Editor.js +0 -5
- package/dist/lib/plugins/openapi/playground/Editor.js.map +0 -1
- package/dist/lib/plugins/openapi/playground/ResponseTab.d.ts +0 -4
- package/dist/lib/plugins/openapi/playground/ResponseTab.js +0 -42
- package/dist/lib/plugins/openapi/playground/ResponseTab.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/SchemaComponents.js +0 -28
- package/dist/lib/plugins/openapi/schema/SchemaComponents.js.map +0 -1
- package/dist/lib/plugins/openapi/util/urql.d.ts +0 -7
- package/dist/lib/plugins/openapi/util/urql.js +0 -8
- package/dist/lib/plugins/openapi/util/urql.js.map +0 -1
- package/dist/lib/plugins/openapi-worker.d.ts +0 -1
- package/dist/lib/plugins/openapi-worker.js +0 -2
- package/dist/lib/plugins/openapi-worker.js.map +0 -1
- package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.d.ts +0 -2
- package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js +0 -3
- package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.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/lib/util/slugify.d.ts +0 -2
- package/dist/lib/util/slugify.js +0 -3
- package/dist/lib/util/slugify.js.map +0 -1
- package/dist/vite/plugin-custom-css.js +0 -55
- package/dist/vite/plugin-custom-css.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/dist/vite/plugin-icons.d.ts +0 -3
- package/dist/vite/plugin-icons.js +0 -47
- package/dist/vite/plugin-icons.js.map +0 -1
- package/dist/vite/prerender.d.ts +0 -17
- package/dist/vite/prerender.js +0 -87
- package/dist/vite/prerender.js.map +0 -1
- package/lib/AuthenticationPlugin-Bx9FK124.js +0 -55
- package/lib/AuthenticationPlugin-Bx9FK124.js.map +0 -1
- package/lib/CategoryHeading-XnFqN2lJ.js +0 -10
- package/lib/DeveloperHint-FBb2uXJe.js +0 -16
- package/lib/DeveloperHint-FBb2uXJe.js.map +0 -1
- package/lib/ErrorPage-knunPbKI.js +0 -18
- package/lib/ErrorPage-knunPbKI.js.map +0 -1
- package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
- package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
- package/lib/Input-BEDZAKw0.js +0 -2198
- package/lib/Input-BEDZAKw0.js.map +0 -1
- package/lib/Markdown-B4aR03g6.js +0 -20279
- package/lib/Markdown-B4aR03g6.js.map +0 -1
- package/lib/MdxPage-BZyQsH8Z.js +0 -172
- package/lib/MdxPage-BZyQsH8Z.js.map +0 -1
- package/lib/OperationList-2NeWEM0u.js +0 -560
- package/lib/OperationList-2NeWEM0u.js.map +0 -1
- package/lib/Route-BZPewmrN.js +0 -14
- package/lib/Route-BZPewmrN.js.map +0 -1
- package/lib/SidebarBadge-COz0hgfa.js +0 -498
- package/lib/SidebarBadge-COz0hgfa.js.map +0 -1
- package/lib/SlotletProvider-DJMaOUDs.js +0 -238
- package/lib/SlotletProvider-DJMaOUDs.js.map +0 -1
- package/lib/ZudokuContext-cr-pTRY1.js +0 -1084
- package/lib/ZudokuContext-cr-pTRY1.js.map +0 -1
- package/lib/assets/index-B9EWVYfo.js +0 -4790
- package/lib/assets/index-B9EWVYfo.js.map +0 -1
- package/lib/assets/worker-BvD7B6MG.js +0 -15839
- package/lib/assets/worker-BvD7B6MG.js.map +0 -1
- package/lib/index-1EDgIO6b.js +0 -124
- package/lib/index-1EDgIO6b.js.map +0 -1
- package/lib/index-BG0g4WW0.js +0 -1771
- package/lib/index-BG0g4WW0.js.map +0 -1
- package/lib/index-CLd8ycZz.js.map +0 -1
- package/lib/index-Dv2KZuEw.js +0 -5685
- package/lib/index-Dv2KZuEw.js.map +0 -1
- package/lib/index-Zezcv0xb.js +0 -2814
- package/lib/index-Zezcv0xb.js.map +0 -1
- package/lib/joinPath-B7kNnUX4.js +0 -8
- package/lib/joinPath-B7kNnUX4.js.map +0 -1
- package/lib/jsx-runtime-B6kdoens.js +0 -635
- package/lib/jsx-runtime-B6kdoens.js.map +0 -1
- package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
- package/lib/prism-java.min-d5iT_mOd.js +0 -7
- package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
- package/lib/prism-markup-templating-DZrrEs0A.js.map +0 -1
- package/lib/prism-php.min-o7FpoMP_.js +0 -11
- package/lib/prism-php.min-o7FpoMP_.js.map +0 -1
- package/lib/prism-ruby.min-C7LwcKyz.js +0 -10
- package/lib/prism-typescript.min-oSVeWCAd.js +0 -6
- package/lib/router-D2p7Olpn.js +0 -2971
- package/lib/router-D2p7Olpn.js.map +0 -1
- package/lib/slugify-DbLhpSPt.js +0 -28
- package/lib/slugify-DbLhpSPt.js.map +0 -1
- package/lib/state-lIwt9isb.js +0 -288
- package/lib/state-lIwt9isb.js.map +0 -1
- package/lib/urql-YhcsXYy8.js +0 -1591
- package/lib/urql-YhcsXYy8.js.map +0 -1
- package/lib/utils-ByIc_KIM.js +0 -749
- package/lib/utils-ByIc_KIM.js.map +0 -1
- package/lib/zudoku.openapi-worker.js +0 -16053
- package/lib/zudoku.openapi-worker.js.map +0 -1
- package/lib/zudoku.plugin-custom-page.js +0 -13
- package/lib/zudoku.plugin-custom-page.js.map +0 -1
- package/src/lib/components/DevPortal.tsx +0 -111
- package/src/lib/components/SyntaxHighlight.tsx +0 -122
- package/src/lib/components/context/PluginSystem.ts +0 -0
- package/src/lib/components/context/ThemeContext.tsx +0 -8
- package/src/lib/components/context/ThemeProvider.tsx +0 -27
- package/src/lib/core/DevPortalContext.ts +0 -135
- package/src/lib/plugins/custom-page/index.tsx +0 -22
- package/src/lib/plugins/markdown/generateRoutes.tsx +0 -35
- package/src/lib/plugins/openapi/Route.tsx +0 -21
- package/src/lib/plugins/openapi/client/createMemoryClient.ts +0 -56
- package/src/lib/plugins/openapi/client/createWorkerClient.ts +0 -80
- package/src/lib/plugins/openapi/client/interfaces.ts +0 -5
- package/src/lib/plugins/openapi/client/worker.ts +0 -30
- package/src/lib/plugins/openapi/playground/Editor.tsx +0 -4
- package/src/lib/plugins/openapi/playground/ResponseTab.tsx +0 -77
- package/src/lib/plugins/openapi/schema/SchemaComponents.tsx +0 -126
- package/src/lib/plugins/openapi/util/urql.ts +0 -8
- package/src/lib/plugins/openapi-worker.ts +0 -1
- package/src/lib/plugins/search-inkeep/InkeepCustomTrigger.tsx +0 -3
- package/src/lib/themeToggle.ts +0 -7
- package/src/lib/util/createWaitForNotify.ts +0 -18
- package/src/lib/util/slugify.ts +0 -3
- /package/dist/lib/{plugins/markdown → components/navigation}/Toc.d.ts +0 -0
- /package/dist/lib/{components/context/PluginSystem.d.ts → hooks/useEvent.test.d.ts} +0 -0
- /package/dist/lib/plugins/openapi/{client/worker.d.ts → playground/result-panel/convertToTypes.test.d.ts} +0 -0
- /package/dist/lib/{components → ui}/Dialog.d.ts +0 -0
- /package/dist/lib/{components → ui}/Select.d.ts +0 -0
|
@@ -1,168 +1,167 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import { j as
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
(
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
1
|
+
var Le = Object.defineProperty;
|
|
2
|
+
var xe = (t, e, n) => e in t ? Le(t, e, { enumerable: !0, configurable: !0, writable: !0, value: n }) : t[e] = n;
|
|
3
|
+
var b = (t, e, n) => xe(t, typeof e != "symbol" ? e + "" : e, n);
|
|
4
|
+
import { j as B } from "./jsx-runtime-CYK1ROHF.js";
|
|
5
|
+
import { g as Ce } from "./_commonjsHelpers-BkfeUUK-.js";
|
|
6
|
+
import { C as Ie } from "./ClientOnly-E7hGysn1.js";
|
|
7
|
+
import { d as je, f as ie, u as x } from "./hook-CqpVYDqN.js";
|
|
8
|
+
import { A as Je } from "./AuthenticationPlugin-foqdvvkf.js";
|
|
9
|
+
import { N as Oe } from "./chunk-HA7DTUK3-C4gP41vD.js";
|
|
10
|
+
import { Z as ze } from "./invariant-Caa8-XvF.js";
|
|
11
|
+
var D = { exports: {} }, De = D.exports, ae;
|
|
12
|
+
function Ne() {
|
|
13
|
+
return ae || (ae = 1, function(t) {
|
|
14
|
+
(function(e, n) {
|
|
15
|
+
t.exports ? t.exports = n() : e.log = n();
|
|
16
|
+
})(De, function() {
|
|
17
|
+
var e = function() {
|
|
18
|
+
}, n = "undefined", o = typeof window !== n && typeof window.navigator !== n && /Trident\/|MSIE /.test(window.navigator.userAgent), a = [
|
|
19
|
+
"trace",
|
|
20
|
+
"debug",
|
|
21
|
+
"info",
|
|
22
|
+
"warn",
|
|
23
|
+
"error"
|
|
24
|
+
], r = {}, i = null;
|
|
25
|
+
function c(l, m) {
|
|
26
|
+
var u = l[m];
|
|
27
|
+
if (typeof u.bind == "function")
|
|
28
|
+
return u.bind(l);
|
|
29
|
+
try {
|
|
30
|
+
return Function.prototype.bind.call(u, l);
|
|
31
|
+
} catch {
|
|
32
|
+
return function() {
|
|
33
|
+
return Function.prototype.apply.apply(u, [l, arguments]);
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
function p() {
|
|
38
|
+
console.log && (console.log.apply ? console.log.apply(console, arguments) : Function.prototype.apply.apply(console.log, [console, arguments])), console.trace && console.trace();
|
|
39
|
+
}
|
|
40
|
+
function w(l) {
|
|
41
|
+
return l === "debug" && (l = "log"), typeof console === n ? !1 : l === "trace" && o ? p : console[l] !== void 0 ? c(console, l) : console.log !== void 0 ? c(console, "log") : e;
|
|
42
|
+
}
|
|
43
|
+
function f() {
|
|
44
|
+
for (var l = this.getLevel(), m = 0; m < a.length; m++) {
|
|
45
|
+
var u = a[m];
|
|
46
|
+
this[u] = m < l ? e : this.methodFactory(u, l, this.name);
|
|
47
|
+
}
|
|
48
|
+
if (this.log = this.debug, typeof console === n && l < this.levels.SILENT)
|
|
49
|
+
return "No console available for logging";
|
|
50
|
+
}
|
|
51
|
+
function v(l) {
|
|
34
52
|
return function() {
|
|
35
|
-
|
|
53
|
+
typeof console !== n && (f.call(this), this[l].apply(this, arguments));
|
|
36
54
|
};
|
|
37
55
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
console.log && (console.log.apply ? console.log.apply(console, arguments) : Function.prototype.apply.apply(console.log, [console, arguments])), console.trace && console.trace();
|
|
41
|
-
}
|
|
42
|
-
function m(l) {
|
|
43
|
-
return l === "debug" && (l = "log"), typeof console === r ? !1 : l === "trace" && o ? f : console[l] !== void 0 ? u(console, l) : console.log !== void 0 ? u(console, "log") : e;
|
|
44
|
-
}
|
|
45
|
-
function y() {
|
|
46
|
-
for (var l = this.getLevel(), w = 0; w < s.length; w++) {
|
|
47
|
-
var c = s[w];
|
|
48
|
-
this[c] = w < l ? e : this.methodFactory(c, l, this.name);
|
|
56
|
+
function _(l, m, u) {
|
|
57
|
+
return w(l) || v.apply(this, arguments);
|
|
49
58
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
var g = (s[d] || "silent").toUpperCase();
|
|
66
|
-
if (!(typeof window === r || !v)) {
|
|
67
|
-
try {
|
|
68
|
-
window.localStorage[v] = g;
|
|
69
|
-
return;
|
|
70
|
-
} catch {
|
|
71
|
-
}
|
|
72
|
-
try {
|
|
73
|
-
window.document.cookie = encodeURIComponent(v) + "=" + g + ";";
|
|
74
|
-
} catch {
|
|
59
|
+
function h(l, m) {
|
|
60
|
+
var u = this, J, $, U, S = "loglevel";
|
|
61
|
+
typeof l == "string" ? S += ":" + l : typeof l == "symbol" && (S = void 0);
|
|
62
|
+
function Re(d) {
|
|
63
|
+
var y = (a[d] || "silent").toUpperCase();
|
|
64
|
+
if (!(typeof window === n || !S)) {
|
|
65
|
+
try {
|
|
66
|
+
window.localStorage[S] = y;
|
|
67
|
+
return;
|
|
68
|
+
} catch {
|
|
69
|
+
}
|
|
70
|
+
try {
|
|
71
|
+
window.document.cookie = encodeURIComponent(S) + "=" + y + ";";
|
|
72
|
+
} catch {
|
|
73
|
+
}
|
|
75
74
|
}
|
|
76
75
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
if (!(typeof window === r || !v)) {
|
|
81
|
-
try {
|
|
82
|
-
d = window.localStorage[v];
|
|
83
|
-
} catch {
|
|
84
|
-
}
|
|
85
|
-
if (typeof d === r)
|
|
76
|
+
function ne() {
|
|
77
|
+
var d;
|
|
78
|
+
if (!(typeof window === n || !S)) {
|
|
86
79
|
try {
|
|
87
|
-
|
|
88
|
-
ie !== -1 && (d = /^([^;]+)/.exec(
|
|
89
|
-
g.slice(ie + N.length + 1)
|
|
90
|
-
)[1]);
|
|
80
|
+
d = window.localStorage[S];
|
|
91
81
|
} catch {
|
|
92
82
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
83
|
+
if (typeof d === n)
|
|
84
|
+
try {
|
|
85
|
+
var y = window.document.cookie, O = encodeURIComponent(S), oe = y.indexOf(O + "=");
|
|
86
|
+
oe !== -1 && (d = /^([^;]+)/.exec(
|
|
87
|
+
y.slice(oe + O.length + 1)
|
|
88
|
+
)[1]);
|
|
89
|
+
} catch {
|
|
90
|
+
}
|
|
91
|
+
return u.levels[d] === void 0 && (d = void 0), d;
|
|
101
92
|
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
93
|
+
}
|
|
94
|
+
function Pe() {
|
|
95
|
+
if (!(typeof window === n || !S)) {
|
|
96
|
+
try {
|
|
97
|
+
window.localStorage.removeItem(S);
|
|
98
|
+
} catch {
|
|
99
|
+
}
|
|
100
|
+
try {
|
|
101
|
+
window.document.cookie = encodeURIComponent(S) + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
|
|
102
|
+
} catch {
|
|
103
|
+
}
|
|
105
104
|
}
|
|
106
105
|
}
|
|
106
|
+
function L(d) {
|
|
107
|
+
var y = d;
|
|
108
|
+
if (typeof y == "string" && u.levels[y.toUpperCase()] !== void 0 && (y = u.levels[y.toUpperCase()]), typeof y == "number" && y >= 0 && y <= u.levels.SILENT)
|
|
109
|
+
return y;
|
|
110
|
+
throw new TypeError("log.setLevel() called with invalid level: " + d);
|
|
111
|
+
}
|
|
112
|
+
u.name = l, u.levels = {
|
|
113
|
+
TRACE: 0,
|
|
114
|
+
DEBUG: 1,
|
|
115
|
+
INFO: 2,
|
|
116
|
+
WARN: 3,
|
|
117
|
+
ERROR: 4,
|
|
118
|
+
SILENT: 5
|
|
119
|
+
}, u.methodFactory = m || _, u.getLevel = function() {
|
|
120
|
+
return U ?? $ ?? J;
|
|
121
|
+
}, u.setLevel = function(d, y) {
|
|
122
|
+
return U = L(d), y !== !1 && Re(U), f.call(u);
|
|
123
|
+
}, u.setDefaultLevel = function(d) {
|
|
124
|
+
$ = L(d), ne() || u.setLevel(d, !1);
|
|
125
|
+
}, u.resetLevel = function() {
|
|
126
|
+
U = null, Pe(), f.call(u);
|
|
127
|
+
}, u.enableAll = function(d) {
|
|
128
|
+
u.setLevel(u.levels.TRACE, d);
|
|
129
|
+
}, u.disableAll = function(d) {
|
|
130
|
+
u.setLevel(u.levels.SILENT, d);
|
|
131
|
+
}, u.rebuild = function() {
|
|
132
|
+
if (i !== u && (J = L(i.getLevel())), f.call(u), i === u)
|
|
133
|
+
for (var d in r)
|
|
134
|
+
r[d].rebuild();
|
|
135
|
+
}, J = L(
|
|
136
|
+
i ? i.getLevel() : "WARN"
|
|
137
|
+
);
|
|
138
|
+
var re = ne();
|
|
139
|
+
re != null && (U = L(re)), f.call(u);
|
|
107
140
|
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
c.setLevel(c.levels.SILENT, d);
|
|
133
|
-
}, c.rebuild = function() {
|
|
134
|
-
if (i !== c && (O = L(i.getLevel())), y.call(c), i === c)
|
|
135
|
-
for (var d in n)
|
|
136
|
-
n[d].rebuild();
|
|
137
|
-
}, O = L(
|
|
138
|
-
i ? i.getLevel() : "WARN"
|
|
139
|
-
);
|
|
140
|
-
var oe = ne();
|
|
141
|
-
oe != null && (x = L(oe)), y.call(c);
|
|
142
|
-
}
|
|
143
|
-
i = new R(), i.getLogger = function(w) {
|
|
144
|
-
if (typeof w != "symbol" && typeof w != "string" || w === "")
|
|
145
|
-
throw new TypeError("You must supply a name when creating a logger.");
|
|
146
|
-
var c = n[w];
|
|
147
|
-
return c || (c = n[w] = new R(
|
|
148
|
-
w,
|
|
149
|
-
i.methodFactory
|
|
150
|
-
)), c;
|
|
151
|
-
};
|
|
152
|
-
var P = typeof window !== r ? window.log : void 0;
|
|
153
|
-
return i.noConflict = function() {
|
|
154
|
-
return typeof window !== r && window.log === i && (window.log = P), i;
|
|
155
|
-
}, i.getLoggers = function() {
|
|
156
|
-
return n;
|
|
157
|
-
}, i.default = i, i;
|
|
158
|
-
});
|
|
159
|
-
})(fe);
|
|
160
|
-
var $e = fe.exports;
|
|
161
|
-
const K = /* @__PURE__ */ Ie($e);
|
|
162
|
-
let Y;
|
|
163
|
-
var D, he;
|
|
164
|
-
(typeof navigator > "u" || !((he = (D = navigator.userAgent) == null ? void 0 : D.startsWith) != null && he.call(D, "Mozilla/5.0 "))) && (Y = "oauth4webapi/v2.11.1");
|
|
165
|
-
function Q(t, e) {
|
|
141
|
+
i = new h(), i.getLogger = function(m) {
|
|
142
|
+
if (typeof m != "symbol" && typeof m != "string" || m === "")
|
|
143
|
+
throw new TypeError("You must supply a name when creating a logger.");
|
|
144
|
+
var u = r[m];
|
|
145
|
+
return u || (u = r[m] = new h(
|
|
146
|
+
m,
|
|
147
|
+
i.methodFactory
|
|
148
|
+
)), u;
|
|
149
|
+
};
|
|
150
|
+
var P = typeof window !== n ? window.log : void 0;
|
|
151
|
+
return i.noConflict = function() {
|
|
152
|
+
return typeof window !== n && window.log === i && (window.log = P), i;
|
|
153
|
+
}, i.getLoggers = function() {
|
|
154
|
+
return r;
|
|
155
|
+
}, i.default = i, i;
|
|
156
|
+
});
|
|
157
|
+
}(D)), D.exports;
|
|
158
|
+
}
|
|
159
|
+
var We = Ne();
|
|
160
|
+
const se = /* @__PURE__ */ Ce(We);
|
|
161
|
+
let V;
|
|
162
|
+
var z, we;
|
|
163
|
+
(typeof navigator > "u" || !((we = (z = navigator.userAgent) == null ? void 0 : z.startsWith) != null && we.call(z, "Mozilla/5.0 "))) && (V = "oauth4webapi/v2.17.0");
|
|
164
|
+
function Y(t, e) {
|
|
166
165
|
if (t == null)
|
|
167
166
|
return !1;
|
|
168
167
|
try {
|
|
@@ -171,81 +170,81 @@ function Q(t, e) {
|
|
|
171
170
|
return !1;
|
|
172
171
|
}
|
|
173
172
|
}
|
|
174
|
-
const
|
|
175
|
-
function
|
|
176
|
-
return typeof t == "string" ? Me.encode(t) :
|
|
173
|
+
const W = Symbol(), Ke = Symbol(), Z = Symbol(), He = Symbol(), $e = Symbol(), Fe = Symbol(), Me = new TextEncoder(), qe = new TextDecoder();
|
|
174
|
+
function E(t) {
|
|
175
|
+
return typeof t == "string" ? Me.encode(t) : qe.decode(t);
|
|
177
176
|
}
|
|
178
|
-
const
|
|
179
|
-
function
|
|
177
|
+
const ce = 32768;
|
|
178
|
+
function Be(t) {
|
|
180
179
|
t instanceof ArrayBuffer && (t = new Uint8Array(t));
|
|
181
180
|
const e = [];
|
|
182
|
-
for (let
|
|
183
|
-
e.push(String.fromCharCode.apply(null, t.subarray(
|
|
181
|
+
for (let n = 0; n < t.byteLength; n += ce)
|
|
182
|
+
e.push(String.fromCharCode.apply(null, t.subarray(n, n + ce)));
|
|
184
183
|
return btoa(e.join("")).replace(/=/g, "").replace(/\+/g, "-").replace(/\//g, "_");
|
|
185
184
|
}
|
|
186
|
-
function
|
|
185
|
+
function Ve(t) {
|
|
187
186
|
try {
|
|
188
|
-
const e = atob(t.replace(/-/g, "+").replace(/_/g, "/").replace(/\s/g, "")),
|
|
187
|
+
const e = atob(t.replace(/-/g, "+").replace(/_/g, "/").replace(/\s/g, "")), n = new Uint8Array(e.length);
|
|
189
188
|
for (let o = 0; o < e.length; o++)
|
|
190
|
-
|
|
191
|
-
return
|
|
189
|
+
n[o] = e.charCodeAt(o);
|
|
190
|
+
return n;
|
|
192
191
|
} catch (e) {
|
|
193
|
-
throw new
|
|
192
|
+
throw new s("The input to be decoded is not correctly encoded.", { cause: e });
|
|
194
193
|
}
|
|
195
194
|
}
|
|
196
195
|
function k(t) {
|
|
197
|
-
return typeof t == "string" ?
|
|
196
|
+
return typeof t == "string" ? Ve(t) : Be(t);
|
|
198
197
|
}
|
|
199
|
-
class
|
|
198
|
+
class Ge {
|
|
200
199
|
constructor(e) {
|
|
201
200
|
this.cache = /* @__PURE__ */ new Map(), this._cache = /* @__PURE__ */ new Map(), this.maxSize = e;
|
|
202
201
|
}
|
|
203
202
|
get(e) {
|
|
204
|
-
let
|
|
205
|
-
if (
|
|
206
|
-
return
|
|
207
|
-
if (
|
|
208
|
-
return this.update(e,
|
|
203
|
+
let n = this.cache.get(e);
|
|
204
|
+
if (n)
|
|
205
|
+
return n;
|
|
206
|
+
if (n = this._cache.get(e))
|
|
207
|
+
return this.update(e, n), n;
|
|
209
208
|
}
|
|
210
209
|
has(e) {
|
|
211
210
|
return this.cache.has(e) || this._cache.has(e);
|
|
212
211
|
}
|
|
213
|
-
set(e,
|
|
214
|
-
return this.cache.has(e) ? this.cache.set(e,
|
|
212
|
+
set(e, n) {
|
|
213
|
+
return this.cache.has(e) ? this.cache.set(e, n) : this.update(e, n), this;
|
|
215
214
|
}
|
|
216
215
|
delete(e) {
|
|
217
216
|
return this.cache.has(e) ? this.cache.delete(e) : this._cache.has(e) ? this._cache.delete(e) : !1;
|
|
218
217
|
}
|
|
219
|
-
update(e,
|
|
220
|
-
this.cache.set(e,
|
|
218
|
+
update(e, n) {
|
|
219
|
+
this.cache.set(e, n), this.cache.size >= this.maxSize && (this._cache = this.cache, this.cache = /* @__PURE__ */ new Map());
|
|
221
220
|
}
|
|
222
221
|
}
|
|
223
|
-
class
|
|
222
|
+
class T extends Error {
|
|
224
223
|
constructor(e) {
|
|
225
|
-
var
|
|
226
|
-
super(e ?? "operation not supported"), this.name = this.constructor.name, (
|
|
224
|
+
var n;
|
|
225
|
+
super(e ?? "operation not supported"), this.name = this.constructor.name, (n = Error.captureStackTrace) == null || n.call(Error, this, this.constructor);
|
|
227
226
|
}
|
|
228
227
|
}
|
|
229
228
|
class Ye extends Error {
|
|
230
|
-
constructor(e,
|
|
229
|
+
constructor(e, n) {
|
|
231
230
|
var o;
|
|
232
|
-
super(e,
|
|
231
|
+
super(e, n), this.name = this.constructor.name, (o = Error.captureStackTrace) == null || o.call(Error, this, this.constructor);
|
|
233
232
|
}
|
|
234
233
|
}
|
|
235
|
-
const
|
|
236
|
-
function
|
|
234
|
+
const s = Ye, ge = new Ge(100);
|
|
235
|
+
function me(t) {
|
|
237
236
|
return t instanceof CryptoKey;
|
|
238
237
|
}
|
|
239
|
-
function ge(t) {
|
|
240
|
-
return we(t) && t.type === "private";
|
|
241
|
-
}
|
|
242
238
|
function Ze(t) {
|
|
243
|
-
return
|
|
239
|
+
return me(t) && t.type === "private";
|
|
240
|
+
}
|
|
241
|
+
function Qe(t) {
|
|
242
|
+
return me(t) && t.type === "public";
|
|
244
243
|
}
|
|
245
|
-
function
|
|
244
|
+
function Q(t) {
|
|
246
245
|
try {
|
|
247
246
|
const e = t.headers.get("dpop-nonce");
|
|
248
|
-
e &&
|
|
247
|
+
e && ge.set(new URL(t.url).origin, e);
|
|
249
248
|
} catch {
|
|
250
249
|
}
|
|
251
250
|
return t;
|
|
@@ -253,101 +252,92 @@ function ee(t) {
|
|
|
253
252
|
function C(t) {
|
|
254
253
|
return !(t === null || typeof t != "object" || Array.isArray(t));
|
|
255
254
|
}
|
|
256
|
-
function
|
|
257
|
-
|
|
255
|
+
function K(t) {
|
|
256
|
+
Y(t, Headers) && (t = Object.fromEntries(t.entries()));
|
|
258
257
|
const e = new Headers(t);
|
|
259
|
-
if (
|
|
258
|
+
if (V && !e.has("user-agent") && e.set("user-agent", V), e.has("authorization"))
|
|
260
259
|
throw new TypeError('"options.headers" must not include the "authorization" header name');
|
|
261
260
|
if (e.has("dpop"))
|
|
262
261
|
throw new TypeError('"options.headers" must not include the "dpop" header name');
|
|
263
262
|
return e;
|
|
264
263
|
}
|
|
265
|
-
function
|
|
264
|
+
function Xe(t) {
|
|
266
265
|
if (typeof t == "function" && (t = t()), !(t instanceof AbortSignal))
|
|
267
266
|
throw new TypeError('"options.signal" must return or be an instance of AbortSignal');
|
|
268
267
|
return t;
|
|
269
268
|
}
|
|
270
|
-
async function
|
|
269
|
+
async function et(t, e) {
|
|
271
270
|
if (!(t instanceof URL))
|
|
272
271
|
throw new TypeError('"issuerIdentifier" must be an instance of URL');
|
|
273
272
|
if (t.protocol !== "https:" && t.protocol !== "http:")
|
|
274
273
|
throw new TypeError('"issuer.protocol" must be "https:" or "http:"');
|
|
275
|
-
const
|
|
274
|
+
const n = new URL(t.href);
|
|
276
275
|
switch (e == null ? void 0 : e.algorithm) {
|
|
277
276
|
case void 0:
|
|
278
277
|
case "oidc":
|
|
279
|
-
|
|
278
|
+
n.pathname = `${n.pathname}/.well-known/openid-configuration`.replace("//", "/");
|
|
280
279
|
break;
|
|
281
280
|
case "oauth2":
|
|
282
|
-
|
|
281
|
+
n.pathname === "/" ? n.pathname = ".well-known/oauth-authorization-server" : n.pathname = `.well-known/oauth-authorization-server/${n.pathname}`.replace("//", "/");
|
|
283
282
|
break;
|
|
284
283
|
default:
|
|
285
284
|
throw new TypeError('"options.algorithm" must be "oidc" (default), or "oauth2"');
|
|
286
285
|
}
|
|
287
|
-
const o =
|
|
288
|
-
return o.set("accept", "application/json"), ((e == null ? void 0 : e[
|
|
286
|
+
const o = K(e == null ? void 0 : e.headers);
|
|
287
|
+
return o.set("accept", "application/json"), ((e == null ? void 0 : e[Z]) || fetch)(n.href, {
|
|
289
288
|
headers: Object.fromEntries(o.entries()),
|
|
290
289
|
method: "GET",
|
|
291
290
|
redirect: "manual",
|
|
292
|
-
signal:
|
|
293
|
-
}).then(
|
|
291
|
+
signal: null
|
|
292
|
+
}).then(Q);
|
|
294
293
|
}
|
|
295
|
-
function
|
|
294
|
+
function g(t) {
|
|
296
295
|
return typeof t == "string" && t.length !== 0;
|
|
297
296
|
}
|
|
298
|
-
async function
|
|
297
|
+
async function tt(t, e) {
|
|
299
298
|
if (!(t instanceof URL))
|
|
300
299
|
throw new TypeError('"expectedIssuer" must be an instance of URL');
|
|
301
|
-
if (!
|
|
300
|
+
if (!Y(e, Response))
|
|
302
301
|
throw new TypeError('"response" must be an instance of Response');
|
|
303
302
|
if (e.status !== 200)
|
|
304
|
-
throw new
|
|
305
|
-
|
|
306
|
-
let
|
|
303
|
+
throw new s('"response" is not a conform Authorization Server Metadata response');
|
|
304
|
+
te(e);
|
|
305
|
+
let n;
|
|
307
306
|
try {
|
|
308
|
-
|
|
307
|
+
n = await e.json();
|
|
309
308
|
} catch (o) {
|
|
310
|
-
throw new
|
|
309
|
+
throw new s('failed to parse "response" body as JSON', { cause: o });
|
|
311
310
|
}
|
|
312
|
-
if (!C(
|
|
313
|
-
throw new
|
|
314
|
-
if (!
|
|
315
|
-
throw new
|
|
316
|
-
if (new URL(
|
|
317
|
-
throw new
|
|
318
|
-
return
|
|
311
|
+
if (!C(n))
|
|
312
|
+
throw new s('"response" body must be a top level object');
|
|
313
|
+
if (!g(n.issuer))
|
|
314
|
+
throw new s('"response" body "issuer" property must be a non-empty string');
|
|
315
|
+
if (new URL(n.issuer).href !== t.href)
|
|
316
|
+
throw new s('"response" body "issuer" does not match "expectedIssuer"');
|
|
317
|
+
return n;
|
|
319
318
|
}
|
|
320
|
-
function
|
|
319
|
+
function X() {
|
|
321
320
|
return k(crypto.getRandomValues(new Uint8Array(32)));
|
|
322
321
|
}
|
|
323
|
-
function
|
|
324
|
-
return
|
|
322
|
+
function nt() {
|
|
323
|
+
return X();
|
|
325
324
|
}
|
|
326
|
-
function
|
|
327
|
-
return
|
|
325
|
+
function rt() {
|
|
326
|
+
return X();
|
|
328
327
|
}
|
|
329
|
-
async function
|
|
330
|
-
if (!
|
|
328
|
+
async function ot(t) {
|
|
329
|
+
if (!g(t))
|
|
331
330
|
throw new TypeError('"codeVerifier" must be a non-empty string');
|
|
332
|
-
return k(await crypto.subtle.digest("SHA-256",
|
|
333
|
-
}
|
|
334
|
-
function
|
|
335
|
-
if (t instanceof CryptoKey)
|
|
336
|
-
return { key: t };
|
|
337
|
-
if (!((t == null ? void 0 : t.key) instanceof CryptoKey))
|
|
338
|
-
return {};
|
|
339
|
-
if (t.kid !== void 0 && !p(t.kid))
|
|
340
|
-
throw new TypeError('"kid" must be a non-empty string');
|
|
341
|
-
return { key: t.key, kid: t.kid };
|
|
342
|
-
}
|
|
343
|
-
function ae(t) {
|
|
331
|
+
return k(await crypto.subtle.digest("SHA-256", E(t)));
|
|
332
|
+
}
|
|
333
|
+
function ue(t) {
|
|
344
334
|
return encodeURIComponent(t).replace(/%20/g, "+");
|
|
345
335
|
}
|
|
346
|
-
function
|
|
347
|
-
const
|
|
348
|
-
return `Basic ${btoa(`${
|
|
336
|
+
function it(t, e) {
|
|
337
|
+
const n = ue(t), o = ue(e);
|
|
338
|
+
return `Basic ${btoa(`${n}:${o}`)}`;
|
|
349
339
|
}
|
|
350
|
-
function
|
|
340
|
+
function at(t) {
|
|
351
341
|
switch (t.algorithm.hash.name) {
|
|
352
342
|
case "SHA-256":
|
|
353
343
|
return "PS256";
|
|
@@ -356,7 +346,7 @@ function it(t) {
|
|
|
356
346
|
case "SHA-512":
|
|
357
347
|
return "PS512";
|
|
358
348
|
default:
|
|
359
|
-
throw new
|
|
349
|
+
throw new T("unsupported RsaHashedKeyAlgorithm hash name");
|
|
360
350
|
}
|
|
361
351
|
}
|
|
362
352
|
function st(t) {
|
|
@@ -368,10 +358,10 @@ function st(t) {
|
|
|
368
358
|
case "SHA-512":
|
|
369
359
|
return "RS512";
|
|
370
360
|
default:
|
|
371
|
-
throw new
|
|
361
|
+
throw new T("unsupported RsaHashedKeyAlgorithm hash name");
|
|
372
362
|
}
|
|
373
363
|
}
|
|
374
|
-
function
|
|
364
|
+
function ct(t) {
|
|
375
365
|
switch (t.algorithm.namedCurve) {
|
|
376
366
|
case "P-256":
|
|
377
367
|
return "ES256";
|
|
@@ -380,201 +370,176 @@ function at(t) {
|
|
|
380
370
|
case "P-521":
|
|
381
371
|
return "ES512";
|
|
382
372
|
default:
|
|
383
|
-
throw new
|
|
373
|
+
throw new T("unsupported EcKeyAlgorithm namedCurve");
|
|
384
374
|
}
|
|
385
375
|
}
|
|
386
|
-
function
|
|
376
|
+
function ut(t) {
|
|
387
377
|
switch (t.algorithm.name) {
|
|
388
378
|
case "RSA-PSS":
|
|
389
|
-
return
|
|
379
|
+
return at(t);
|
|
390
380
|
case "RSASSA-PKCS1-v1_5":
|
|
391
381
|
return st(t);
|
|
392
382
|
case "ECDSA":
|
|
393
|
-
return
|
|
383
|
+
return ct(t);
|
|
394
384
|
case "Ed25519":
|
|
395
385
|
case "Ed448":
|
|
396
386
|
return "EdDSA";
|
|
397
387
|
default:
|
|
398
|
-
throw new
|
|
388
|
+
throw new T("unsupported CryptoKey algorithm name");
|
|
399
389
|
}
|
|
400
390
|
}
|
|
401
|
-
function
|
|
402
|
-
const e = t == null ? void 0 : t[
|
|
391
|
+
function H(t) {
|
|
392
|
+
const e = t == null ? void 0 : t[W];
|
|
403
393
|
return typeof e == "number" && Number.isFinite(e) ? e : 0;
|
|
404
394
|
}
|
|
405
395
|
function ye(t) {
|
|
406
|
-
const e = t == null ? void 0 : t[
|
|
396
|
+
const e = t == null ? void 0 : t[Ke];
|
|
407
397
|
return typeof e == "number" && Number.isFinite(e) && Math.sign(e) !== -1 ? e : 30;
|
|
408
398
|
}
|
|
409
|
-
function
|
|
399
|
+
function ee() {
|
|
410
400
|
return Math.floor(Date.now() / 1e3);
|
|
411
401
|
}
|
|
412
|
-
function
|
|
413
|
-
const r = M() + I(e);
|
|
414
|
-
return {
|
|
415
|
-
jti: F(),
|
|
416
|
-
aud: [t.issuer, t.token_endpoint],
|
|
417
|
-
exp: r + 60,
|
|
418
|
-
iat: r,
|
|
419
|
-
nbf: r,
|
|
420
|
-
iss: e.client_id,
|
|
421
|
-
sub: e.client_id
|
|
422
|
-
};
|
|
423
|
-
}
|
|
424
|
-
async function ut(t, e, r, o) {
|
|
425
|
-
return be({
|
|
426
|
-
alg: me(r),
|
|
427
|
-
kid: o
|
|
428
|
-
}, ct(t, e), r);
|
|
429
|
-
}
|
|
430
|
-
function j(t) {
|
|
402
|
+
function I(t) {
|
|
431
403
|
if (typeof t != "object" || t === null)
|
|
432
404
|
throw new TypeError('"as" must be an object');
|
|
433
|
-
if (!
|
|
405
|
+
if (!g(t.issuer))
|
|
434
406
|
throw new TypeError('"as.issuer" property must be a non-empty string');
|
|
435
407
|
return !0;
|
|
436
408
|
}
|
|
437
|
-
function
|
|
409
|
+
function j(t) {
|
|
438
410
|
if (typeof t != "object" || t === null)
|
|
439
411
|
throw new TypeError('"client" must be an object');
|
|
440
|
-
if (!
|
|
412
|
+
if (!g(t.client_id))
|
|
441
413
|
throw new TypeError('"client.client_id" property must be a non-empty string');
|
|
442
414
|
return !0;
|
|
443
415
|
}
|
|
444
|
-
function
|
|
445
|
-
if (!
|
|
416
|
+
function le(t) {
|
|
417
|
+
if (!g(t))
|
|
446
418
|
throw new TypeError('"client.client_secret" property must be a non-empty string');
|
|
447
419
|
return t;
|
|
448
420
|
}
|
|
449
|
-
function
|
|
450
|
-
if (e !== void 0)
|
|
451
|
-
throw new TypeError(`"options.clientPrivateKey" property must not be provided when ${t} client authentication method is used.`);
|
|
452
|
-
}
|
|
453
|
-
function ue(t, e) {
|
|
421
|
+
function de(t, e) {
|
|
454
422
|
if (e !== void 0)
|
|
455
423
|
throw new TypeError(`"client.client_secret" property must not be provided when ${t} client authentication method is used.`);
|
|
456
424
|
}
|
|
457
|
-
async function lt(t, e,
|
|
458
|
-
switch (
|
|
425
|
+
async function lt(t, e, n, o, a) {
|
|
426
|
+
switch (n.delete("client_secret"), n.delete("client_assertion_type"), n.delete("client_assertion"), e.token_endpoint_auth_method) {
|
|
459
427
|
case void 0:
|
|
460
428
|
case "client_secret_basic": {
|
|
461
|
-
|
|
429
|
+
o.set("authorization", it(e.client_id, le(e.client_secret)));
|
|
462
430
|
break;
|
|
463
431
|
}
|
|
464
432
|
case "client_secret_post": {
|
|
465
|
-
|
|
466
|
-
break;
|
|
467
|
-
}
|
|
468
|
-
case "private_key_jwt": {
|
|
469
|
-
if (ue("private_key_jwt", e.client_secret), s === void 0)
|
|
470
|
-
throw new TypeError('"options.clientPrivateKey" must be provided when "client.token_endpoint_auth_method" is "private_key_jwt"');
|
|
471
|
-
const { key: n, kid: i } = nt(s);
|
|
472
|
-
if (!ge(n))
|
|
473
|
-
throw new TypeError('"options.clientPrivateKey.key" must be a private CryptoKey');
|
|
474
|
-
r.set("client_id", e.client_id), r.set("client_assertion_type", "urn:ietf:params:oauth:client-assertion-type:jwt-bearer"), r.set("client_assertion", await ut(t, e, n, i));
|
|
433
|
+
n.set("client_id", e.client_id), n.set("client_secret", le(e.client_secret));
|
|
475
434
|
break;
|
|
476
435
|
}
|
|
436
|
+
case "private_key_jwt":
|
|
437
|
+
throw de("private_key_jwt", e.client_secret), new TypeError('"options.clientPrivateKey" must be provided when "client.token_endpoint_auth_method" is "private_key_jwt"');
|
|
477
438
|
case "tls_client_auth":
|
|
478
439
|
case "self_signed_tls_client_auth":
|
|
479
440
|
case "none": {
|
|
480
|
-
|
|
441
|
+
de(e.token_endpoint_auth_method, e.client_secret), e.token_endpoint_auth_method, n.set("client_id", e.client_id);
|
|
481
442
|
break;
|
|
482
443
|
}
|
|
483
444
|
default:
|
|
484
|
-
throw new
|
|
445
|
+
throw new T("unsupported client token_endpoint_auth_method");
|
|
485
446
|
}
|
|
486
447
|
}
|
|
487
|
-
async function
|
|
488
|
-
if (!
|
|
448
|
+
async function dt(t, e, n) {
|
|
449
|
+
if (!n.usages.includes("sign"))
|
|
489
450
|
throw new TypeError('CryptoKey instances used for signing assertions must include "sign" in their "usages"');
|
|
490
|
-
const o = `${k(
|
|
491
|
-
return `${o}.${
|
|
451
|
+
const o = `${k(E(JSON.stringify(t)))}.${k(E(JSON.stringify(e)))}`, a = k(await crypto.subtle.sign(ke(n), n, E(o)));
|
|
452
|
+
return `${o}.${a}`;
|
|
492
453
|
}
|
|
493
|
-
async function
|
|
494
|
-
|
|
495
|
-
|
|
454
|
+
async function ht(t, e, n, o, a, r) {
|
|
455
|
+
var _;
|
|
456
|
+
const { privateKey: i, publicKey: c, nonce: p = ge.get(n.origin) } = e;
|
|
457
|
+
if (!Ze(i))
|
|
496
458
|
throw new TypeError('"DPoP.privateKey" must be a private CryptoKey');
|
|
497
|
-
if (!
|
|
459
|
+
if (!Qe(c))
|
|
498
460
|
throw new TypeError('"DPoP.publicKey" must be a public CryptoKey');
|
|
499
|
-
if (
|
|
461
|
+
if (p !== void 0 && !g(p))
|
|
500
462
|
throw new TypeError('"DPoP.nonce" must be a non-empty string or undefined');
|
|
501
|
-
if (!
|
|
463
|
+
if (!c.extractable)
|
|
502
464
|
throw new TypeError('"DPoP.publicKey.extractable" must be true');
|
|
503
|
-
const
|
|
504
|
-
alg:
|
|
465
|
+
const w = ee() + a, f = {
|
|
466
|
+
alg: ut(i),
|
|
505
467
|
typ: "dpop+jwt",
|
|
506
|
-
jwk: await
|
|
507
|
-
}, {
|
|
508
|
-
iat:
|
|
509
|
-
jti:
|
|
468
|
+
jwk: await pt(c)
|
|
469
|
+
}, v = {
|
|
470
|
+
iat: w,
|
|
471
|
+
jti: X(),
|
|
510
472
|
htm: o,
|
|
511
|
-
nonce:
|
|
512
|
-
htu: `${
|
|
513
|
-
ath:
|
|
514
|
-
}
|
|
515
|
-
t.set("dpop",
|
|
516
|
-
}
|
|
517
|
-
let W;
|
|
518
|
-
async function ht(t) {
|
|
519
|
-
const { kty: e, e: r, n: o, x: s, y: n, crv: i } = await crypto.subtle.exportKey("jwk", t), u = { kty: e, e: r, n: o, x: s, y: n, crv: i };
|
|
520
|
-
return W.set(t, u), u;
|
|
473
|
+
nonce: p,
|
|
474
|
+
htu: `${n.origin}${n.pathname}`,
|
|
475
|
+
ath: r ? k(await crypto.subtle.digest("SHA-256", E(r))) : void 0
|
|
476
|
+
};
|
|
477
|
+
(_ = e[He]) == null || _.call(e, f, v), t.set("dpop", await dt(f, v, i));
|
|
521
478
|
}
|
|
479
|
+
let N;
|
|
522
480
|
async function ft(t) {
|
|
523
|
-
|
|
481
|
+
const { kty: e, e: n, n: o, x: a, y: r, crv: i } = await crypto.subtle.exportKey("jwk", t), c = { kty: e, e: n, n: o, x: a, y: r, crv: i };
|
|
482
|
+
return N.set(t, c), c;
|
|
483
|
+
}
|
|
484
|
+
async function pt(t) {
|
|
485
|
+
return N || (N = /* @__PURE__ */ new WeakMap()), N.get(t) || ft(t);
|
|
524
486
|
}
|
|
525
|
-
function
|
|
487
|
+
function he(t, e, n) {
|
|
526
488
|
if (typeof t != "string")
|
|
527
|
-
throw new TypeError(`"as.${e}" must be a string`);
|
|
489
|
+
throw n ? new TypeError(`"as.mtls_endpoint_aliases.${e}" must be a string`) : new TypeError(`"as.${e}" must be a string`);
|
|
528
490
|
return new URL(t);
|
|
529
491
|
}
|
|
530
|
-
function
|
|
531
|
-
return
|
|
492
|
+
function be(t, e, n = !1) {
|
|
493
|
+
return n && t.mtls_endpoint_aliases && e in t.mtls_endpoint_aliases ? he(t.mtls_endpoint_aliases[e], e, n) : he(t[e], e, n);
|
|
532
494
|
}
|
|
533
|
-
function
|
|
495
|
+
function _e(t, e) {
|
|
496
|
+
return !!(t.use_mtls_endpoint_aliases || e != null && e[Fe]);
|
|
497
|
+
}
|
|
498
|
+
function G(t) {
|
|
534
499
|
const e = t;
|
|
535
500
|
return typeof e != "object" || Array.isArray(e) || e === null ? !1 : e.error !== void 0;
|
|
536
501
|
}
|
|
537
|
-
async function wt(t, e,
|
|
538
|
-
if (!
|
|
502
|
+
async function wt(t, e, n, o, a, r) {
|
|
503
|
+
if (!g(t))
|
|
539
504
|
throw new TypeError('"accessToken" must be a non-empty string');
|
|
540
|
-
if (!(
|
|
505
|
+
if (!(n instanceof URL))
|
|
541
506
|
throw new TypeError('"url" must be an instance of URL');
|
|
542
|
-
return o =
|
|
543
|
-
body:
|
|
507
|
+
return o = K(o), (r == null ? void 0 : r.DPoP) === void 0 ? o.set("authorization", `Bearer ${t}`) : (await ht(o, r.DPoP, n, e.toUpperCase(), H({ [W]: r == null ? void 0 : r[W] }), t), o.set("authorization", `DPoP ${t}`)), ((r == null ? void 0 : r[Z]) || fetch)(n.href, {
|
|
508
|
+
body: a,
|
|
544
509
|
headers: Object.fromEntries(o.entries()),
|
|
545
510
|
method: e,
|
|
546
511
|
redirect: "manual",
|
|
547
|
-
signal:
|
|
548
|
-
}).then(
|
|
512
|
+
signal: r != null && r.signal ? Xe(r.signal) : null
|
|
513
|
+
}).then(Q);
|
|
549
514
|
}
|
|
550
|
-
async function gt(t, e,
|
|
551
|
-
|
|
552
|
-
const
|
|
553
|
-
return e.userinfo_signed_response_alg ?
|
|
515
|
+
async function gt(t, e, n, o) {
|
|
516
|
+
I(t), j(e);
|
|
517
|
+
const a = be(t, "userinfo_endpoint", _e(e, o)), r = K(o == null ? void 0 : o.headers);
|
|
518
|
+
return e.userinfo_signed_response_alg ? r.set("accept", "application/jwt") : (r.set("accept", "application/json"), r.append("accept", "application/jwt")), wt(n, "GET", a, r, null, {
|
|
554
519
|
...o,
|
|
555
|
-
[
|
|
520
|
+
[W]: H(e)
|
|
556
521
|
});
|
|
557
522
|
}
|
|
558
|
-
async function mt(t, e,
|
|
559
|
-
return await lt(t, e,
|
|
560
|
-
body:
|
|
561
|
-
headers: Object.fromEntries(
|
|
562
|
-
method:
|
|
523
|
+
async function mt(t, e, n, o, a, r, i) {
|
|
524
|
+
return await lt(t, e, a, r), r.set("content-type", "application/x-www-form-urlencoded;charset=UTF-8"), ((i == null ? void 0 : i[Z]) || fetch)(o.href, {
|
|
525
|
+
body: a,
|
|
526
|
+
headers: Object.fromEntries(r.entries()),
|
|
527
|
+
method: n,
|
|
563
528
|
redirect: "manual",
|
|
564
|
-
signal:
|
|
565
|
-
}).then(
|
|
529
|
+
signal: null
|
|
530
|
+
}).then(Q);
|
|
566
531
|
}
|
|
567
|
-
async function ve(t, e,
|
|
568
|
-
const
|
|
569
|
-
o.set("grant_type",
|
|
570
|
-
const i =
|
|
571
|
-
return i.set("accept", "application/json"), mt(t, e, "POST",
|
|
532
|
+
async function ve(t, e, n, o, a) {
|
|
533
|
+
const r = be(t, "token_endpoint", _e(e, a));
|
|
534
|
+
o.set("grant_type", n);
|
|
535
|
+
const i = K(a == null ? void 0 : a.headers);
|
|
536
|
+
return i.set("accept", "application/json"), mt(t, e, "POST", r, o, i, a);
|
|
572
537
|
}
|
|
573
|
-
async function yt(t, e,
|
|
574
|
-
if (
|
|
538
|
+
async function yt(t, e, n, o) {
|
|
539
|
+
if (I(t), j(e), !g(n))
|
|
575
540
|
throw new TypeError('"refreshToken" must be a non-empty string');
|
|
576
|
-
const
|
|
577
|
-
return
|
|
541
|
+
const a = new URLSearchParams(o == null ? void 0 : o.additionalParameters);
|
|
542
|
+
return a.set("refresh_token", n), ve(t, e, "refresh_token", a, o);
|
|
578
543
|
}
|
|
579
544
|
const Se = /* @__PURE__ */ new WeakMap();
|
|
580
545
|
function bt(t) {
|
|
@@ -583,86 +548,90 @@ function bt(t) {
|
|
|
583
548
|
const e = Se.get(t);
|
|
584
549
|
if (!e)
|
|
585
550
|
throw new TypeError('"ref" was already garbage collected or did not resolve from the proper sources');
|
|
586
|
-
return e;
|
|
551
|
+
return e[0];
|
|
587
552
|
}
|
|
588
|
-
async function Te(t, e,
|
|
589
|
-
if (
|
|
553
|
+
async function Te(t, e, n, o = !1, a = !1) {
|
|
554
|
+
if (I(t), j(e), !Y(n, Response))
|
|
590
555
|
throw new TypeError('"response" must be an instance of Response');
|
|
591
|
-
if (
|
|
556
|
+
if (n.status !== 200) {
|
|
592
557
|
let i;
|
|
593
|
-
if (i = await
|
|
558
|
+
if (i = await Ut(n))
|
|
594
559
|
return i;
|
|
595
|
-
throw new
|
|
560
|
+
throw new s('"response" is not a conform Token Endpoint response');
|
|
596
561
|
}
|
|
597
|
-
|
|
598
|
-
let
|
|
562
|
+
te(n);
|
|
563
|
+
let r;
|
|
599
564
|
try {
|
|
600
|
-
|
|
565
|
+
r = await n.json();
|
|
601
566
|
} catch (i) {
|
|
602
|
-
throw new
|
|
567
|
+
throw new s('failed to parse "response" body as JSON', { cause: i });
|
|
603
568
|
}
|
|
604
|
-
if (!C(
|
|
605
|
-
throw new
|
|
606
|
-
if (!
|
|
607
|
-
throw new
|
|
608
|
-
if (!
|
|
609
|
-
throw new
|
|
610
|
-
if (
|
|
611
|
-
throw new
|
|
612
|
-
if (
|
|
613
|
-
throw new
|
|
614
|
-
if (!
|
|
615
|
-
throw new
|
|
616
|
-
if (
|
|
617
|
-
throw new
|
|
569
|
+
if (!C(r))
|
|
570
|
+
throw new s('"response" body must be a top level object');
|
|
571
|
+
if (!g(r.access_token))
|
|
572
|
+
throw new s('"response" body "access_token" property must be a non-empty string');
|
|
573
|
+
if (!g(r.token_type))
|
|
574
|
+
throw new s('"response" body "token_type" property must be a non-empty string');
|
|
575
|
+
if (r.token_type = r.token_type.toLowerCase(), r.token_type !== "dpop" && r.token_type !== "bearer")
|
|
576
|
+
throw new T("unsupported `token_type` value");
|
|
577
|
+
if (r.expires_in !== void 0 && (typeof r.expires_in != "number" || r.expires_in <= 0))
|
|
578
|
+
throw new s('"response" body "expires_in" property must be a positive number');
|
|
579
|
+
if (!a && r.refresh_token !== void 0 && !g(r.refresh_token))
|
|
580
|
+
throw new s('"response" body "refresh_token" property must be a non-empty string');
|
|
581
|
+
if (r.scope !== void 0 && typeof r.scope != "string")
|
|
582
|
+
throw new s('"response" body "scope" property must be a string');
|
|
618
583
|
if (!o) {
|
|
619
|
-
if (
|
|
620
|
-
throw new
|
|
621
|
-
if (
|
|
622
|
-
const { claims: i } = await
|
|
623
|
-
if (Array.isArray(i.aud) && i.aud.length !== 1
|
|
624
|
-
|
|
584
|
+
if (r.id_token !== void 0 && !g(r.id_token))
|
|
585
|
+
throw new s('"response" body "id_token" property must be a non-empty string');
|
|
586
|
+
if (r.id_token) {
|
|
587
|
+
const { claims: i, jwt: c } = await Ct(r.id_token, It.bind(void 0, e.id_token_signed_response_alg, t.id_token_signing_alg_values_supported), Ee, H(e), ye(e), e[$e]).then(Et.bind(void 0, ["aud", "exp", "iat", "iss", "sub"])).then(St.bind(void 0, t.issuer)).then(vt.bind(void 0, e.client_id));
|
|
588
|
+
if (Array.isArray(i.aud) && i.aud.length !== 1) {
|
|
589
|
+
if (i.azp === void 0)
|
|
590
|
+
throw new s('ID Token "aud" (audience) claim includes additional untrusted audiences');
|
|
591
|
+
if (i.azp !== e.client_id)
|
|
592
|
+
throw new s('unexpected ID Token "azp" (authorized party) claim value');
|
|
593
|
+
}
|
|
625
594
|
if (i.auth_time !== void 0 && (!Number.isFinite(i.auth_time) || Math.sign(i.auth_time) !== 1))
|
|
626
|
-
throw new
|
|
627
|
-
Se.set(
|
|
595
|
+
throw new s('ID Token "auth_time" (authentication time) must be a positive number');
|
|
596
|
+
Se.set(r, [i, c]);
|
|
628
597
|
}
|
|
629
598
|
}
|
|
630
|
-
return
|
|
599
|
+
return r;
|
|
631
600
|
}
|
|
632
|
-
async function _t(t, e,
|
|
633
|
-
return Te(t, e,
|
|
601
|
+
async function _t(t, e, n) {
|
|
602
|
+
return Te(t, e, n);
|
|
634
603
|
}
|
|
635
604
|
function vt(t, e) {
|
|
636
605
|
if (Array.isArray(e.claims.aud)) {
|
|
637
606
|
if (!e.claims.aud.includes(t))
|
|
638
|
-
throw new
|
|
607
|
+
throw new s('unexpected JWT "aud" (audience) claim value');
|
|
639
608
|
} else if (e.claims.aud !== t)
|
|
640
|
-
throw new
|
|
609
|
+
throw new s('unexpected JWT "aud" (audience) claim value');
|
|
641
610
|
return e;
|
|
642
611
|
}
|
|
643
612
|
function St(t, e) {
|
|
644
613
|
if (e.claims.iss !== t)
|
|
645
|
-
throw new
|
|
614
|
+
throw new s('unexpected JWT "iss" (issuer) claim value');
|
|
646
615
|
return e;
|
|
647
616
|
}
|
|
648
|
-
const
|
|
617
|
+
const Ae = /* @__PURE__ */ new WeakSet();
|
|
649
618
|
function Tt(t) {
|
|
650
|
-
return
|
|
619
|
+
return Ae.add(t), t;
|
|
651
620
|
}
|
|
652
|
-
async function
|
|
653
|
-
if (
|
|
621
|
+
async function At(t, e, n, o, a, r) {
|
|
622
|
+
if (I(t), j(e), !Ae.has(n))
|
|
654
623
|
throw new TypeError('"callbackParameters" must be an instance of URLSearchParams obtained from "validateAuthResponse()", or "validateJwtAuthResponse()');
|
|
655
|
-
if (!
|
|
624
|
+
if (!g(o))
|
|
656
625
|
throw new TypeError('"redirectUri" must be a non-empty string');
|
|
657
|
-
if (!
|
|
626
|
+
if (!g(a))
|
|
658
627
|
throw new TypeError('"codeVerifier" must be a non-empty string');
|
|
659
|
-
const i =
|
|
628
|
+
const i = A(n, "code");
|
|
660
629
|
if (!i)
|
|
661
|
-
throw new
|
|
662
|
-
const
|
|
663
|
-
return
|
|
630
|
+
throw new s('no authorization code in "callbackParameters"');
|
|
631
|
+
const c = new URLSearchParams(r == null ? void 0 : r.additionalParameters);
|
|
632
|
+
return c.set("redirect_uri", o), c.set("code_verifier", a), c.set("code", i), ve(t, e, "authorization_code", c, r);
|
|
664
633
|
}
|
|
665
|
-
const
|
|
634
|
+
const kt = {
|
|
666
635
|
aud: "audience",
|
|
667
636
|
c_hash: "code hash",
|
|
668
637
|
client_id: "client id",
|
|
@@ -678,53 +647,53 @@ const Et = {
|
|
|
678
647
|
htu: "http uri",
|
|
679
648
|
cnf: "confirmation"
|
|
680
649
|
};
|
|
681
|
-
function
|
|
682
|
-
for (const
|
|
683
|
-
if (e.claims[
|
|
684
|
-
throw new
|
|
650
|
+
function Et(t, e) {
|
|
651
|
+
for (const n of t)
|
|
652
|
+
if (e.claims[n] === void 0)
|
|
653
|
+
throw new s(`JWT "${n}" (${kt[n]}) claim missing`);
|
|
685
654
|
return e;
|
|
686
655
|
}
|
|
687
|
-
const Rt = Symbol(),
|
|
688
|
-
async function Pt(t, e,
|
|
689
|
-
const
|
|
690
|
-
if (
|
|
691
|
-
return
|
|
692
|
-
if (!
|
|
693
|
-
throw new
|
|
694
|
-
|
|
695
|
-
const i = bt(
|
|
696
|
-
if ((e.require_auth_time ||
|
|
697
|
-
throw new
|
|
698
|
-
if (
|
|
699
|
-
if (typeof
|
|
656
|
+
const Rt = Symbol(), F = Symbol();
|
|
657
|
+
async function Pt(t, e, n, o, a) {
|
|
658
|
+
const r = await Te(t, e, n);
|
|
659
|
+
if (G(r))
|
|
660
|
+
return r;
|
|
661
|
+
if (!g(r.id_token))
|
|
662
|
+
throw new s('"response" body "id_token" property must be a non-empty string');
|
|
663
|
+
a ?? (a = e.default_max_age ?? F);
|
|
664
|
+
const i = bt(r);
|
|
665
|
+
if ((e.require_auth_time || a !== F) && i.auth_time === void 0)
|
|
666
|
+
throw new s('ID Token "auth_time" (authentication time) claim missing');
|
|
667
|
+
if (a !== F) {
|
|
668
|
+
if (typeof a != "number" || a < 0)
|
|
700
669
|
throw new TypeError('"maxAge" must be a non-negative number');
|
|
701
|
-
const
|
|
702
|
-
if (i.auth_time +
|
|
703
|
-
throw new
|
|
670
|
+
const c = ee() + H(e), p = ye(e);
|
|
671
|
+
if (i.auth_time + a < c - p)
|
|
672
|
+
throw new s("too much time has elapsed since the last End-User authentication");
|
|
704
673
|
}
|
|
705
674
|
switch (o) {
|
|
706
675
|
case void 0:
|
|
707
676
|
case Rt:
|
|
708
677
|
if (i.nonce !== void 0)
|
|
709
|
-
throw new
|
|
678
|
+
throw new s('unexpected ID Token "nonce" claim value');
|
|
710
679
|
break;
|
|
711
680
|
default:
|
|
712
|
-
if (!
|
|
681
|
+
if (!g(o))
|
|
713
682
|
throw new TypeError('"expectedNonce" must be a non-empty string');
|
|
714
683
|
if (i.nonce === void 0)
|
|
715
|
-
throw new
|
|
684
|
+
throw new s('ID Token "nonce" claim missing');
|
|
716
685
|
if (i.nonce !== o)
|
|
717
|
-
throw new
|
|
686
|
+
throw new s('unexpected ID Token "nonce" claim value');
|
|
718
687
|
}
|
|
719
|
-
return
|
|
688
|
+
return r;
|
|
720
689
|
}
|
|
721
|
-
function
|
|
690
|
+
function te(t) {
|
|
722
691
|
if (t.bodyUsed)
|
|
723
692
|
throw new TypeError('"response" body has been used already');
|
|
724
693
|
}
|
|
725
|
-
async function
|
|
694
|
+
async function Ut(t) {
|
|
726
695
|
if (t.status > 399 && t.status < 500) {
|
|
727
|
-
|
|
696
|
+
te(t);
|
|
728
697
|
try {
|
|
729
698
|
const e = await t.json();
|
|
730
699
|
if (C(e) && typeof e.error == "string" && e.error.length)
|
|
@@ -733,11 +702,11 @@ async function xt(t) {
|
|
|
733
702
|
}
|
|
734
703
|
}
|
|
735
704
|
}
|
|
736
|
-
function
|
|
705
|
+
function fe(t) {
|
|
737
706
|
if (typeof t.modulusLength != "number" || t.modulusLength < 2048)
|
|
738
|
-
throw new
|
|
707
|
+
throw new s(`${t.name} modulusLength must be at least 2048 bits`);
|
|
739
708
|
}
|
|
740
|
-
function
|
|
709
|
+
function Lt(t) {
|
|
741
710
|
switch (t) {
|
|
742
711
|
case "P-256":
|
|
743
712
|
return "SHA-256";
|
|
@@ -746,18 +715,18 @@ function Ut(t) {
|
|
|
746
715
|
case "P-521":
|
|
747
716
|
return "SHA-512";
|
|
748
717
|
default:
|
|
749
|
-
throw new
|
|
718
|
+
throw new T();
|
|
750
719
|
}
|
|
751
720
|
}
|
|
752
|
-
function
|
|
721
|
+
function ke(t) {
|
|
753
722
|
switch (t.algorithm.name) {
|
|
754
723
|
case "ECDSA":
|
|
755
724
|
return {
|
|
756
725
|
name: t.algorithm.name,
|
|
757
|
-
hash:
|
|
726
|
+
hash: Lt(t.algorithm.namedCurve)
|
|
758
727
|
};
|
|
759
728
|
case "RSA-PSS":
|
|
760
|
-
switch (
|
|
729
|
+
switch (fe(t.algorithm), t.algorithm.hash.name) {
|
|
761
730
|
case "SHA-256":
|
|
762
731
|
case "SHA-384":
|
|
763
732
|
case "SHA-512":
|
|
@@ -766,271 +735,281 @@ function Ee(t) {
|
|
|
766
735
|
saltLength: parseInt(t.algorithm.hash.name.slice(-3), 10) >> 3
|
|
767
736
|
};
|
|
768
737
|
default:
|
|
769
|
-
throw new
|
|
738
|
+
throw new T();
|
|
770
739
|
}
|
|
771
740
|
case "RSASSA-PKCS1-v1_5":
|
|
772
|
-
return
|
|
741
|
+
return fe(t.algorithm), t.algorithm.name;
|
|
773
742
|
case "Ed448":
|
|
774
743
|
case "Ed25519":
|
|
775
744
|
return t.algorithm.name;
|
|
776
745
|
}
|
|
777
|
-
throw new
|
|
778
|
-
}
|
|
779
|
-
const
|
|
780
|
-
async function
|
|
781
|
-
const
|
|
782
|
-
if (
|
|
783
|
-
throw new
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
let
|
|
746
|
+
throw new T();
|
|
747
|
+
}
|
|
748
|
+
const Ee = Symbol();
|
|
749
|
+
async function xt(t, e, n, o) {
|
|
750
|
+
const a = `${t}.${e}`;
|
|
751
|
+
if (!await crypto.subtle.verify(ke(n), n, o, E(a)))
|
|
752
|
+
throw new s("JWT signature verification failed");
|
|
753
|
+
}
|
|
754
|
+
async function Ct(t, e, n, o, a, r) {
|
|
755
|
+
let { 0: i, 1: c, 2: p, length: w } = t.split(".");
|
|
756
|
+
if (w === 5)
|
|
757
|
+
if (r !== void 0)
|
|
758
|
+
t = await r(t), { 0: i, 1: c, 2: p, length: w } = t.split(".");
|
|
759
|
+
else
|
|
760
|
+
throw new T("JWE structure JWTs are not supported");
|
|
761
|
+
if (w !== 3)
|
|
762
|
+
throw new s("Invalid JWT");
|
|
763
|
+
let f;
|
|
787
764
|
try {
|
|
788
|
-
|
|
789
|
-
} catch (
|
|
790
|
-
throw new
|
|
791
|
-
}
|
|
792
|
-
if (!C(m))
|
|
793
|
-
throw new a("JWT Header must be a top level object");
|
|
794
|
-
if (e(m), m.crit !== void 0)
|
|
795
|
-
throw new a('unexpected JWT "crit" header parameter');
|
|
796
|
-
const y = k(u);
|
|
797
|
-
let b;
|
|
798
|
-
if (r !== Ae) {
|
|
799
|
-
b = await r(m);
|
|
800
|
-
const P = `${n}.${i}`;
|
|
801
|
-
if (!await crypto.subtle.verify(Ee(b), b, y, A(P)))
|
|
802
|
-
throw new a("JWT signature verification failed");
|
|
765
|
+
f = JSON.parse(E(k(i)));
|
|
766
|
+
} catch (l) {
|
|
767
|
+
throw new s("failed to parse JWT Header body as base64url encoded JSON", { cause: l });
|
|
803
768
|
}
|
|
769
|
+
if (!C(f))
|
|
770
|
+
throw new s("JWT Header must be a top level object");
|
|
771
|
+
if (e(f), f.crit !== void 0)
|
|
772
|
+
throw new s('unexpected JWT "crit" header parameter');
|
|
773
|
+
const v = k(p);
|
|
774
|
+
let _;
|
|
775
|
+
n !== Ee && (_ = await n(f), await xt(i, c, _, v));
|
|
804
776
|
let h;
|
|
805
777
|
try {
|
|
806
|
-
h = JSON.parse(
|
|
807
|
-
} catch (
|
|
808
|
-
throw new
|
|
778
|
+
h = JSON.parse(E(k(c)));
|
|
779
|
+
} catch (l) {
|
|
780
|
+
throw new s("failed to parse JWT Payload body as base64url encoded JSON", { cause: l });
|
|
809
781
|
}
|
|
810
782
|
if (!C(h))
|
|
811
|
-
throw new
|
|
812
|
-
const
|
|
783
|
+
throw new s("JWT Payload must be a top level object");
|
|
784
|
+
const P = ee() + o;
|
|
813
785
|
if (h.exp !== void 0) {
|
|
814
786
|
if (typeof h.exp != "number")
|
|
815
|
-
throw new
|
|
816
|
-
if (h.exp <=
|
|
817
|
-
throw new
|
|
787
|
+
throw new s('unexpected JWT "exp" (expiration time) claim type');
|
|
788
|
+
if (h.exp <= P - a)
|
|
789
|
+
throw new s('unexpected JWT "exp" (expiration time) claim value, timestamp is <= now()');
|
|
818
790
|
}
|
|
819
791
|
if (h.iat !== void 0 && typeof h.iat != "number")
|
|
820
|
-
throw new
|
|
792
|
+
throw new s('unexpected JWT "iat" (issued at) claim type');
|
|
821
793
|
if (h.iss !== void 0 && typeof h.iss != "string")
|
|
822
|
-
throw new
|
|
794
|
+
throw new s('unexpected JWT "iss" (issuer) claim type');
|
|
823
795
|
if (h.nbf !== void 0) {
|
|
824
796
|
if (typeof h.nbf != "number")
|
|
825
|
-
throw new
|
|
826
|
-
if (h.nbf >
|
|
827
|
-
throw new
|
|
797
|
+
throw new s('unexpected JWT "nbf" (not before) claim type');
|
|
798
|
+
if (h.nbf > P + a)
|
|
799
|
+
throw new s('unexpected JWT "nbf" (not before) claim value, timestamp is > now()');
|
|
828
800
|
}
|
|
829
801
|
if (h.aud !== void 0 && typeof h.aud != "string" && !Array.isArray(h.aud))
|
|
830
|
-
throw new
|
|
831
|
-
return { header:
|
|
802
|
+
throw new s('unexpected JWT "aud" (audience) claim type');
|
|
803
|
+
return { header: f, claims: h, signature: v, key: _, jwt: t };
|
|
832
804
|
}
|
|
833
|
-
function
|
|
805
|
+
function It(t, e, n) {
|
|
834
806
|
if (t !== void 0) {
|
|
835
|
-
if (
|
|
836
|
-
throw new
|
|
807
|
+
if (n.alg !== t)
|
|
808
|
+
throw new s('unexpected JWT "alg" header parameter');
|
|
837
809
|
return;
|
|
838
810
|
}
|
|
839
811
|
if (Array.isArray(e)) {
|
|
840
|
-
if (!e.includes(
|
|
841
|
-
throw new
|
|
812
|
+
if (!e.includes(n.alg))
|
|
813
|
+
throw new s('unexpected JWT "alg" header parameter');
|
|
842
814
|
return;
|
|
843
815
|
}
|
|
844
|
-
if (
|
|
845
|
-
throw new
|
|
816
|
+
if (n.alg !== "RS256")
|
|
817
|
+
throw new s('unexpected JWT "alg" header parameter');
|
|
846
818
|
}
|
|
847
|
-
function
|
|
848
|
-
const { 0:
|
|
819
|
+
function A(t, e) {
|
|
820
|
+
const { 0: n, length: o } = t.getAll(e);
|
|
849
821
|
if (o > 1)
|
|
850
|
-
throw new
|
|
851
|
-
return
|
|
822
|
+
throw new s(`"${e}" parameter must be provided only once`);
|
|
823
|
+
return n;
|
|
852
824
|
}
|
|
853
|
-
const
|
|
854
|
-
function
|
|
855
|
-
if (
|
|
825
|
+
const jt = Symbol(), Jt = Symbol();
|
|
826
|
+
function Ot(t, e, n, o) {
|
|
827
|
+
if (I(t), j(e), n instanceof URL && (n = n.searchParams), !(n instanceof URLSearchParams))
|
|
856
828
|
throw new TypeError('"parameters" must be an instance of URLSearchParams, or URL');
|
|
857
|
-
if (
|
|
858
|
-
throw new
|
|
859
|
-
const
|
|
860
|
-
if (!
|
|
861
|
-
throw new
|
|
862
|
-
if (
|
|
863
|
-
throw new
|
|
829
|
+
if (A(n, "response"))
|
|
830
|
+
throw new s('"parameters" contains a JARM response, use validateJwtAuthResponse() instead of validateAuthResponse()');
|
|
831
|
+
const a = A(n, "iss"), r = A(n, "state");
|
|
832
|
+
if (!a && t.authorization_response_iss_parameter_supported)
|
|
833
|
+
throw new s('response parameter "iss" (issuer) missing');
|
|
834
|
+
if (a && a !== t.issuer)
|
|
835
|
+
throw new s('unexpected "iss" (issuer) response parameter value');
|
|
864
836
|
switch (o) {
|
|
865
837
|
case void 0:
|
|
866
|
-
case
|
|
867
|
-
if (
|
|
868
|
-
throw new
|
|
838
|
+
case Jt:
|
|
839
|
+
if (r !== void 0)
|
|
840
|
+
throw new s('unexpected "state" response parameter encountered');
|
|
869
841
|
break;
|
|
870
|
-
case
|
|
842
|
+
case jt:
|
|
871
843
|
break;
|
|
872
844
|
default:
|
|
873
|
-
if (!
|
|
874
|
-
throw new
|
|
875
|
-
if (
|
|
876
|
-
throw new
|
|
877
|
-
if (
|
|
878
|
-
throw new
|
|
845
|
+
if (!g(o))
|
|
846
|
+
throw new s('"expectedState" must be a non-empty string');
|
|
847
|
+
if (r === void 0)
|
|
848
|
+
throw new s('response parameter "state" missing');
|
|
849
|
+
if (r !== o)
|
|
850
|
+
throw new s('unexpected "state" response parameter value');
|
|
879
851
|
}
|
|
880
|
-
const i =
|
|
852
|
+
const i = A(n, "error");
|
|
881
853
|
if (i)
|
|
882
854
|
return {
|
|
883
855
|
error: i,
|
|
884
|
-
error_description:
|
|
885
|
-
error_uri:
|
|
856
|
+
error_description: A(n, "error_description"),
|
|
857
|
+
error_uri: A(n, "error_uri")
|
|
886
858
|
};
|
|
887
|
-
const
|
|
888
|
-
if (
|
|
889
|
-
throw new
|
|
890
|
-
return Tt(new URLSearchParams(
|
|
859
|
+
const c = A(n, "id_token"), p = A(n, "token");
|
|
860
|
+
if (c !== void 0 || p !== void 0)
|
|
861
|
+
throw new T("implicit and hybrid flows are not supported");
|
|
862
|
+
return Tt(new URLSearchParams(n));
|
|
891
863
|
}
|
|
892
|
-
function
|
|
864
|
+
function zt({
|
|
893
865
|
handleCallback: t
|
|
894
866
|
}) {
|
|
895
|
-
const
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
/* @__PURE__ */ E.jsx(ze, { className: "mb-4", children: "Check the configuration of your authorization provider and ensure all settings such as the callback URL are configured correctly." }),
|
|
909
|
-
"An error occurred while authorizing the user.",
|
|
910
|
-
/* @__PURE__ */ E.jsx(We, { code: e.toString(), language: "plain" })
|
|
911
|
-
] })
|
|
867
|
+
const e = je({
|
|
868
|
+
retry: !1,
|
|
869
|
+
queryKey: ["oauth-callback"],
|
|
870
|
+
queryFn: async () => {
|
|
871
|
+
try {
|
|
872
|
+
return await t();
|
|
873
|
+
} catch (n) {
|
|
874
|
+
throw new ze("Could not validate user", {
|
|
875
|
+
cause: n,
|
|
876
|
+
title: "Authentication Error",
|
|
877
|
+
developerHint: "Check the configuration of your authorization provider and ensure all settings such as the callback URL are configured correctly."
|
|
878
|
+
});
|
|
879
|
+
}
|
|
912
880
|
}
|
|
913
|
-
|
|
881
|
+
});
|
|
882
|
+
return /* @__PURE__ */ B.jsx(Oe, { to: e.data });
|
|
914
883
|
}
|
|
915
|
-
class
|
|
884
|
+
class R extends Error {
|
|
916
885
|
}
|
|
917
|
-
class
|
|
918
|
-
constructor(e,
|
|
919
|
-
super(e, o), this.error =
|
|
886
|
+
class pe extends R {
|
|
887
|
+
constructor(e, n, o) {
|
|
888
|
+
super(e, o), this.error = n;
|
|
920
889
|
}
|
|
921
890
|
}
|
|
922
|
-
const
|
|
923
|
-
class
|
|
924
|
-
constructor(e,
|
|
925
|
-
super(), this.callbackUrlPath = e, this.handleCallback =
|
|
891
|
+
const M = "code-verifier", q = "oauth-state";
|
|
892
|
+
class Dt extends Je {
|
|
893
|
+
constructor(e, n) {
|
|
894
|
+
super(), this.callbackUrlPath = e, this.handleCallback = n;
|
|
926
895
|
}
|
|
927
896
|
getRoutes() {
|
|
928
897
|
return [
|
|
929
898
|
...super.getRoutes(),
|
|
930
899
|
{
|
|
931
900
|
path: this.callbackUrlPath,
|
|
932
|
-
element: /* @__PURE__ */
|
|
901
|
+
element: /* @__PURE__ */ B.jsx(Ie, { children: /* @__PURE__ */ B.jsx(zt, { handleCallback: this.handleCallback }) })
|
|
933
902
|
}
|
|
934
903
|
];
|
|
935
904
|
}
|
|
936
905
|
}
|
|
937
|
-
class
|
|
906
|
+
class Nt {
|
|
938
907
|
constructor({
|
|
939
908
|
issuer: e,
|
|
940
|
-
audience:
|
|
909
|
+
audience: n,
|
|
941
910
|
clientId: o,
|
|
942
|
-
redirectToAfterSignUp:
|
|
943
|
-
redirectToAfterSignIn:
|
|
944
|
-
redirectToAfterSignOut: i
|
|
911
|
+
redirectToAfterSignUp: a,
|
|
912
|
+
redirectToAfterSignIn: r,
|
|
913
|
+
redirectToAfterSignOut: i,
|
|
914
|
+
basePath: c,
|
|
915
|
+
scopes: p
|
|
945
916
|
}) {
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
917
|
+
b(this, "client");
|
|
918
|
+
b(this, "issuer");
|
|
919
|
+
b(this, "authorizationServer");
|
|
920
|
+
b(this, "callbackUrlPath");
|
|
921
|
+
b(this, "logoutRedirectUrlPath");
|
|
922
|
+
b(this, "onAuthorizationUrl");
|
|
923
|
+
b(this, "redirectToAfterSignUp");
|
|
924
|
+
b(this, "redirectToAfterSignIn");
|
|
925
|
+
b(this, "redirectToAfterSignOut");
|
|
926
|
+
b(this, "audience");
|
|
927
|
+
b(this, "scopes");
|
|
928
|
+
b(this, "signRequest", async (e) => {
|
|
929
|
+
const n = await this.getAccessToken();
|
|
930
|
+
return e.headers.set("Authorization", `Bearer ${n}`), e;
|
|
931
|
+
});
|
|
932
|
+
b(this, "signOut", async () => {
|
|
933
|
+
x.setState({
|
|
958
934
|
isAuthenticated: !1,
|
|
959
935
|
isPending: !1,
|
|
960
|
-
profile: void 0
|
|
961
|
-
|
|
962
|
-
|
|
936
|
+
profile: void 0,
|
|
937
|
+
providerData: void 0
|
|
938
|
+
});
|
|
939
|
+
const e = await this.getAuthServer(), n = new URL(
|
|
963
940
|
window.location.origin + this.redirectToAfterSignOut
|
|
964
941
|
);
|
|
965
|
-
|
|
942
|
+
n.pathname = this.logoutRedirectUrlPath;
|
|
966
943
|
let o;
|
|
967
944
|
e.end_session_endpoint ? (o = new URL(e.end_session_endpoint), o.searchParams.set(
|
|
968
945
|
"post_logout_redirect_uri",
|
|
969
|
-
|
|
970
|
-
)) : o =
|
|
946
|
+
n.toString()
|
|
947
|
+
)) : o = n;
|
|
971
948
|
});
|
|
972
|
-
|
|
973
|
-
const e = new URL(window.location.href),
|
|
974
|
-
if (sessionStorage.removeItem(
|
|
975
|
-
throw new
|
|
976
|
-
const
|
|
977
|
-
|
|
949
|
+
b(this, "handleCallback", async () => {
|
|
950
|
+
const e = new URL(window.location.href), n = e.searchParams.get("state"), o = sessionStorage.getItem(q);
|
|
951
|
+
if (sessionStorage.removeItem(q), n !== o)
|
|
952
|
+
throw new R("Invalid state parameter");
|
|
953
|
+
const a = sessionStorage.getItem(M);
|
|
954
|
+
if (sessionStorage.removeItem(M), !a)
|
|
955
|
+
throw new R("No code verifier found in state.");
|
|
956
|
+
const r = await this.getAuthServer(), i = Ot(
|
|
957
|
+
r,
|
|
978
958
|
this.client,
|
|
979
959
|
e.searchParams,
|
|
980
|
-
|
|
960
|
+
n ?? void 0
|
|
981
961
|
);
|
|
982
|
-
if (
|
|
983
|
-
throw
|
|
962
|
+
if (G(i))
|
|
963
|
+
throw se.error("Error validating OAuth response", i), new pe(
|
|
984
964
|
"Error validating OAuth response",
|
|
985
|
-
|
|
965
|
+
i
|
|
986
966
|
);
|
|
987
|
-
const
|
|
988
|
-
|
|
989
|
-
const
|
|
990
|
-
|
|
967
|
+
const c = new URL(e);
|
|
968
|
+
c.pathname = this.callbackUrlPath, c.search = "";
|
|
969
|
+
const p = await At(
|
|
970
|
+
r,
|
|
991
971
|
this.client,
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
),
|
|
996
|
-
|
|
972
|
+
i,
|
|
973
|
+
c.toString(),
|
|
974
|
+
a
|
|
975
|
+
), w = await Pt(
|
|
976
|
+
r,
|
|
997
977
|
this.client,
|
|
998
|
-
|
|
978
|
+
p
|
|
999
979
|
);
|
|
1000
|
-
this.setTokensFromResponse(
|
|
1001
|
-
const
|
|
1002
|
-
|
|
980
|
+
this.setTokensFromResponse(w);
|
|
981
|
+
const f = await this.getAccessToken(), _ = await (await gt(
|
|
982
|
+
r,
|
|
1003
983
|
this.client,
|
|
1004
|
-
|
|
984
|
+
f
|
|
1005
985
|
)).json(), h = {
|
|
1006
|
-
sub:
|
|
1007
|
-
email:
|
|
1008
|
-
name:
|
|
1009
|
-
emailVerified:
|
|
1010
|
-
pictureUrl:
|
|
986
|
+
sub: _.sub,
|
|
987
|
+
email: _.email,
|
|
988
|
+
name: _.name,
|
|
989
|
+
emailVerified: _.email_verified ?? !1,
|
|
990
|
+
pictureUrl: _.picture
|
|
1011
991
|
};
|
|
1012
|
-
|
|
992
|
+
x.setState({
|
|
1013
993
|
isAuthenticated: !0,
|
|
1014
994
|
isPending: !1,
|
|
1015
995
|
profile: h
|
|
1016
|
-
})
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
);
|
|
1020
|
-
const R = sessionStorage.getItem("redirect-to") ?? "/";
|
|
1021
|
-
return sessionStorage.removeItem("redirect-to"), R;
|
|
996
|
+
});
|
|
997
|
+
const P = sessionStorage.getItem("redirect-to") ?? "/";
|
|
998
|
+
return sessionStorage.removeItem("redirect-to"), P;
|
|
1022
999
|
});
|
|
1023
1000
|
this.client = {
|
|
1024
1001
|
client_id: o,
|
|
1025
1002
|
token_endpoint_auth_method: "none"
|
|
1026
|
-
}, this.audience =
|
|
1003
|
+
}, this.audience = n, this.issuer = e, this.callbackUrlPath = ie(c, "/oauth/callback"), this.scopes = p ?? ["openid", "profile", "email"];
|
|
1004
|
+
const w = ie(c, "/");
|
|
1005
|
+
this.logoutRedirectUrlPath = w, this.redirectToAfterSignUp = a ?? w, this.redirectToAfterSignIn = r ?? w, this.redirectToAfterSignOut = i ?? w;
|
|
1027
1006
|
}
|
|
1028
1007
|
async getAuthServer() {
|
|
1029
1008
|
if (!this.authorizationServer) {
|
|
1030
|
-
const e = new URL(this.issuer),
|
|
1031
|
-
this.authorizationServer = await
|
|
1009
|
+
const e = new URL(this.issuer), n = await et(e);
|
|
1010
|
+
this.authorizationServer = await tt(
|
|
1032
1011
|
e,
|
|
1033
|
-
|
|
1012
|
+
n
|
|
1034
1013
|
);
|
|
1035
1014
|
}
|
|
1036
1015
|
return this.authorizationServer;
|
|
@@ -1040,17 +1019,20 @@ class zt {
|
|
|
1040
1019
|
* @param response
|
|
1041
1020
|
*/
|
|
1042
1021
|
setTokensFromResponse(e) {
|
|
1043
|
-
if (
|
|
1044
|
-
throw
|
|
1022
|
+
if (G(e))
|
|
1023
|
+
throw se.error("Bad Token Response", e), new pe("Bad Token Response", e);
|
|
1045
1024
|
if (!e.expires_in)
|
|
1046
|
-
throw new
|
|
1047
|
-
const
|
|
1025
|
+
throw new R("No expires_in in response");
|
|
1026
|
+
const n = {
|
|
1048
1027
|
accessToken: e.access_token,
|
|
1049
1028
|
refreshToken: e.refresh_token,
|
|
1029
|
+
idToken: e.id_token,
|
|
1050
1030
|
expiresOn: new Date(Date.now() + e.expires_in * 1e3),
|
|
1051
1031
|
tokenType: e.token_type
|
|
1052
1032
|
};
|
|
1053
|
-
|
|
1033
|
+
x.setState({
|
|
1034
|
+
providerData: n
|
|
1035
|
+
});
|
|
1054
1036
|
}
|
|
1055
1037
|
async signUp({ redirectTo: e } = {}) {
|
|
1056
1038
|
return this.authorize({
|
|
@@ -1065,75 +1047,64 @@ class zt {
|
|
|
1065
1047
|
}
|
|
1066
1048
|
async authorize({
|
|
1067
1049
|
redirectTo: e,
|
|
1068
|
-
isSignUp:
|
|
1050
|
+
isSignUp: n = !1
|
|
1069
1051
|
}) {
|
|
1070
|
-
var
|
|
1071
|
-
const o = "S256",
|
|
1072
|
-
if (!
|
|
1073
|
-
throw new
|
|
1074
|
-
const
|
|
1075
|
-
sessionStorage.setItem(
|
|
1076
|
-
const
|
|
1077
|
-
|
|
1078
|
-
);
|
|
1079
|
-
sessionStorage.setItem("redirect-to",
|
|
1080
|
-
const
|
|
1081
|
-
|
|
1052
|
+
var v;
|
|
1053
|
+
const o = "S256", a = await this.getAuthServer();
|
|
1054
|
+
if (!a.authorization_endpoint)
|
|
1055
|
+
throw new R("No authorization endpoint");
|
|
1056
|
+
const r = nt(), i = await ot(r);
|
|
1057
|
+
sessionStorage.setItem(M, r);
|
|
1058
|
+
const c = new URL(
|
|
1059
|
+
a.authorization_endpoint
|
|
1060
|
+
), p = e.startsWith(window.location.origin) ? e.slice(window.location.origin.length) : e;
|
|
1061
|
+
sessionStorage.setItem("redirect-to", p);
|
|
1062
|
+
const w = new URL(window.location.origin);
|
|
1063
|
+
w.pathname = this.callbackUrlPath, w.search = "", c.searchParams.set("client_id", this.client.client_id), c.searchParams.set("redirect_uri", w.toString()), c.searchParams.set("response_type", "code"), c.searchParams.set("scope", this.scopes.join(" ")), c.searchParams.set("code_challenge", i), c.searchParams.set(
|
|
1082
1064
|
"code_challenge_method",
|
|
1083
1065
|
o
|
|
1084
|
-
), this.audience &&
|
|
1085
|
-
isSignIn: !
|
|
1086
|
-
isSignUp:
|
|
1087
|
-
})
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
}
|
|
1091
|
-
location.href = u.href;
|
|
1066
|
+
), this.audience && c.searchParams.set("audience", this.audience), (v = this.onAuthorizationUrl) == null || v.call(this, c, {
|
|
1067
|
+
isSignIn: !n,
|
|
1068
|
+
isSignUp: n
|
|
1069
|
+
});
|
|
1070
|
+
const f = rt();
|
|
1071
|
+
sessionStorage.setItem(q, f), c.searchParams.set("state", f), location.href = c.href;
|
|
1092
1072
|
}
|
|
1093
1073
|
async getAccessToken() {
|
|
1094
|
-
const e = await this.getAuthServer(),
|
|
1095
|
-
if (!
|
|
1096
|
-
throw new
|
|
1097
|
-
const o =
|
|
1098
|
-
if (o.expiresOn < /* @__PURE__ */ new Date()) {
|
|
1074
|
+
const e = await this.getAuthServer(), { providerData: n } = x.getState();
|
|
1075
|
+
if (!n)
|
|
1076
|
+
throw new R("User is not authenticated");
|
|
1077
|
+
const o = n;
|
|
1078
|
+
if (new Date(o.expiresOn) < /* @__PURE__ */ new Date()) {
|
|
1099
1079
|
if (!o.refreshToken)
|
|
1100
|
-
return
|
|
1101
|
-
|
|
1080
|
+
return x.setState({
|
|
1081
|
+
isAuthenticated: !1,
|
|
1082
|
+
isPending: !1,
|
|
1083
|
+
profile: null,
|
|
1084
|
+
providerData: null
|
|
1085
|
+
}), "";
|
|
1086
|
+
const a = await yt(
|
|
1102
1087
|
e,
|
|
1103
1088
|
this.client,
|
|
1104
1089
|
o.refreshToken
|
|
1105
|
-
),
|
|
1090
|
+
), r = await _t(
|
|
1106
1091
|
e,
|
|
1107
1092
|
this.client,
|
|
1108
|
-
|
|
1093
|
+
a
|
|
1109
1094
|
);
|
|
1110
|
-
if (!
|
|
1111
|
-
throw new
|
|
1112
|
-
return this.setTokensFromResponse(
|
|
1095
|
+
if (!r.access_token)
|
|
1096
|
+
throw new R("No access token in response");
|
|
1097
|
+
return this.setTokensFromResponse(r), r.access_token.toString();
|
|
1113
1098
|
} else
|
|
1114
1099
|
return o.accessToken;
|
|
1115
1100
|
}
|
|
1116
|
-
pageLoad() {
|
|
1117
|
-
const e = sessionStorage.getItem("profile-state");
|
|
1118
|
-
if (e)
|
|
1119
|
-
try {
|
|
1120
|
-
const r = JSON.parse(e);
|
|
1121
|
-
z.setState({
|
|
1122
|
-
isAuthenticated: !0,
|
|
1123
|
-
isPending: !1,
|
|
1124
|
-
profile: r
|
|
1125
|
-
});
|
|
1126
|
-
} catch (r) {
|
|
1127
|
-
K.error("Error parsing auth state", r);
|
|
1128
|
-
}
|
|
1129
|
-
}
|
|
1130
1101
|
getAuthenticationPlugin() {
|
|
1131
|
-
return new
|
|
1102
|
+
return new Dt(this.callbackUrlPath, this.handleCallback);
|
|
1132
1103
|
}
|
|
1133
1104
|
}
|
|
1134
|
-
const
|
|
1105
|
+
const Vt = (t) => new Nt(t);
|
|
1135
1106
|
export {
|
|
1136
|
-
|
|
1137
|
-
|
|
1107
|
+
Nt as OpenIDAuthenticationProvider,
|
|
1108
|
+
Vt as default
|
|
1138
1109
|
};
|
|
1139
1110
|
//# sourceMappingURL=zudoku.auth-openid.js.map
|