zudoku 0.0.0-ff3bc72 → 0.0.0-zuplo-api-keys.534c6f8
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 +11 -2
- package/dist/app/ZuploBuildConfig.d.ts +155 -0
- package/dist/app/ZuploBuildConfig.js +29 -0
- package/dist/app/ZuploBuildConfig.js.map +1 -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 +53 -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/env.d.ts +33 -0
- package/dist/app/env.js +29 -0
- package/dist/app/env.js.map +1 -0
- package/dist/app/main.d.ts +3 -2
- package/dist/app/main.js +50 -61
- 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/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 +18 -5
- 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 +1 -0
- 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/config.d.ts +20 -16
- package/dist/config/file-exists.d.ts +1 -0
- package/dist/config/file-exists.js +5 -0
- package/dist/config/file-exists.js.map +1 -0
- package/dist/config/loader.d.ts +19 -0
- package/dist/config/loader.js +135 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/config/validators/BuildSchema.d.ts +60 -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 -32
- 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/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 +4690 -332
- package/dist/config/validators/validate.js +273 -82
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/index.d.ts +9 -2
- package/dist/index.js +4 -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 +11 -4
- package/dist/lib/authentication/AuthenticationPlugin.js +16 -1
- package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +4 -5
- package/dist/lib/authentication/components/CallbackHandler.js +25 -31
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.d.ts +1 -1
- package/dist/lib/authentication/components/SignIn.js +5 -2
- 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/components/SignUp.d.ts +1 -1
- package/dist/lib/authentication/components/SignUp.js +4 -1
- package/dist/lib/authentication/components/SignUp.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 +15 -13
- 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 +116 -47
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/openid.d.ts +21 -19
- package/dist/lib/authentication/providers/openid.js +62 -69
- 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 +115 -0
- package/dist/lib/authentication/providers/supabase.js.map +1 -0
- package/dist/lib/authentication/state.d.ts +23 -19
- package/dist/lib/authentication/state.js +34 -7
- 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 +1 -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/BuildCheck.d.ts +4 -0
- package/dist/lib/components/BuildCheck.js +38 -0
- package/dist/lib/components/BuildCheck.js.map +1 -0
- 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 -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 +31 -12
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +5 -5
- package/dist/lib/components/Heading.js +1 -1
- package/dist/lib/components/Heading.js.map +1 -1
- package/dist/lib/components/InlineCode.d.ts +2 -1
- package/dist/lib/components/InlineCode.js +2 -9
- package/dist/lib/components/InlineCode.js.map +1 -1
- package/dist/lib/components/Layout.js +10 -21
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/Main.d.ts +2 -0
- package/dist/lib/components/Main.js +18 -0
- package/dist/lib/components/Main.js.map +1 -0
- package/dist/lib/components/Markdown.d.ts +4 -2
- package/dist/lib/components/Markdown.js +10 -14
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +14 -7
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/NotFoundPage.js +2 -2
- 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/Slot.d.ts +17 -0
- package/dist/lib/components/Slot.js +24 -0
- package/dist/lib/components/Slot.js.map +1 -0
- package/dist/lib/components/Slot.test.js +163 -0
- package/dist/lib/components/Slot.test.js.map +1 -0
- 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 +3 -0
- package/dist/lib/components/TopNavigation.js +53 -8
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/Zudoku.d.ts +7 -0
- package/dist/lib/components/Zudoku.js +58 -0
- 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/SlotProvider.d.ts +26 -0
- package/dist/lib/components/context/SlotProvider.js +83 -0
- package/dist/lib/components/context/SlotProvider.js.map +1 -0
- package/dist/lib/components/context/ViewportAnchorContext.d.ts +2 -4
- package/dist/lib/components/context/ViewportAnchorContext.js +29 -23
- 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 +40 -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 +2 -1
- package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
- package/dist/lib/components/index.d.ts +59 -16
- package/dist/lib/components/index.js +27 -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 +7 -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 +4 -8
- 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 +32 -14
- 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 -17
- 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/components/navigation/Toc.js +46 -0
- 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/ZuploLogo.d.ts +3 -0
- package/dist/lib/components/navigation/ZuploLogo.js +4 -0
- package/dist/lib/components/navigation/ZuploLogo.js.map +1 -0
- package/dist/lib/components/navigation/utils.d.ts +3 -0
- package/dist/lib/components/navigation/utils.js +19 -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 +112 -0
- package/dist/lib/core/ZudokuContext.js +70 -0
- package/dist/lib/core/ZudokuContext.js.map +1 -0
- package/dist/lib/core/plugins.d.ts +35 -17
- package/dist/lib/core/plugins.js +4 -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 +43 -0
- package/dist/lib/oas/graphql/circular.js.map +1 -0
- package/dist/lib/oas/graphql/index.d.ts +25 -1
- package/dist/lib/oas/graphql/index.js +216 -69
- 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 +8 -3
- package/dist/lib/oas/parser/index.js +7 -23
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/oas/parser/upgrade/index.d.ts +3 -2
- package/dist/lib/oas/parser/upgrade/index.js +83 -31
- 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.d.ts +3 -2
- package/dist/lib/plugins/api-keys/CreateApiKey.js +16 -8
- 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.d.ts +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js +55 -24
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +23 -13
- package/dist/lib/plugins/api-keys/index.js +48 -32
- 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 +17 -4
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/index.d.ts +8 -7
- package/dist/lib/plugins/markdown/index.js +31 -3
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/markdown/resolver.d.ts +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.js +13 -16
- 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 +107 -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 +12 -6
- 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 +45 -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 +19 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +4 -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.d.ts +2 -4
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +4 -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 +53 -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 +114 -65
- 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 +76 -0
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -0
- 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 +14 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.js +20 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -0
- package/dist/lib/plugins/openapi/components/ConstValue.d.ts +5 -0
- package/dist/lib/plugins/openapi/components/ConstValue.js +6 -0
- package/dist/lib/plugins/openapi/components/ConstValue.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/ResponseContent.d.ts +12 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.js +21 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.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 +8 -46
- package/dist/lib/plugins/openapi/graphql/gql.js +6 -13
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +141 -25
- package/dist/lib/plugins/openapi/graphql/graphql.js +238 -662
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +11 -8
- package/dist/lib/plugins/openapi/index.js +74 -104
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +57 -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 +8 -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 +37 -2
- package/dist/lib/plugins/openapi/playground/Playground.js +133 -70
- 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.d.ts +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/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.d.ts +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 +8 -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 +194 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.d.ts +12 -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 +159 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.d.ts +13 -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 +144 -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 +15 -0
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.d.ts +11 -0
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +45 -0
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +2 -2
- package/dist/lib/plugins/openapi/schema/SchemaView.js +38 -49
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/utils.d.ts +8 -1
- package/dist/lib/plugins/openapi/schema/utils.js +15 -4
- 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 +1 -2
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +80 -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 +117 -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/shiki.d.ts +35 -0
- package/dist/lib/shiki.js +103 -0
- package/dist/lib/shiki.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 +4 -5
- package/dist/lib/ui/Button.js +9 -6
- 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/CodeBlock.d.ts +16 -0
- package/dist/lib/ui/CodeBlock.js +18 -0
- package/dist/lib/ui/CodeBlock.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/ui/Dialog.js +23 -0
- 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/DropdownMenu.js +4 -4
- package/dist/lib/ui/DropdownMenu.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 +1 -1
- 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/ui/Select.js +27 -0
- package/dist/lib/ui/Select.js.map +1 -0
- package/dist/lib/ui/Skeleton.d.ts +2 -0
- package/dist/lib/ui/Skeleton.js +7 -0
- package/dist/lib/ui/Skeleton.js.map +1 -0
- package/dist/lib/ui/Slider.d.ts +4 -0
- package/dist/lib/ui/Slider.js +8 -0
- package/dist/lib/ui/Slider.js.map +1 -0
- package/dist/lib/ui/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 +10 -0
- package/dist/lib/ui/SyntaxHighlight.js +14 -0
- package/dist/lib/ui/SyntaxHighlight.js.map +1 -0
- package/dist/lib/ui/Tabs.js +2 -2
- package/dist/lib/ui/Tabs.js.map +1 -1
- 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 +30 -21
- package/dist/lib/util/MdxComponents.js +17 -15
- 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/ensureArray.d.ts +1 -0
- package/dist/lib/util/ensureArray.js +2 -0
- package/dist/lib/util/ensureArray.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 +23 -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/url.d.ts +4 -0
- package/dist/lib/util/url.js +13 -0
- package/dist/lib/util/url.js.map +1 -0
- package/dist/lib/util/url.test.d.ts +1 -0
- package/dist/lib/util/url.test.js +26 -0
- package/dist/lib/util/url.test.js.map +1 -0
- package/dist/lib/util/useExposedProps.d.ts +9 -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/SchemaManager.d.ts +36 -0
- package/dist/vite/api/SchemaManager.js +122 -0
- package/dist/vite/api/SchemaManager.js.map +1 -0
- package/dist/vite/api/SchemaManager.test.d.ts +1 -0
- package/dist/vite/api/SchemaManager.test.js +106 -0
- package/dist/vite/api/SchemaManager.test.js.map +1 -0
- 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 +83 -12
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.d.ts +2 -15
- package/dist/vite/config.js +121 -144
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/config.test.js +12 -6
- 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 +11 -4
- package/dist/vite/dev-server.js +83 -22
- 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.d.ts +6 -2
- package/dist/vite/html.js +11 -10
- 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 +10 -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 +145 -32
- 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 +15 -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-configure-tailwind.d.ts +3 -0
- package/dist/vite/plugin-configure-tailwind.js +37 -0
- package/dist/vite/plugin-configure-tailwind.js.map +1 -0
- 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 -29
- 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 +2 -1
- package/dist/vite/plugin-frontmatter.js +28 -24
- package/dist/vite/plugin-frontmatter.js.map +1 -1
- package/dist/vite/plugin-mdx.d.ts +2 -8
- package/dist/vite/plugin-mdx.js +96 -13
- 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-shiki-register.d.ts +3 -0
- package/dist/vite/plugin-shiki-register.js +38 -0
- package/dist/vite/plugin-shiki-register.js.map +1 -0
- package/dist/vite/plugin-sidebar.d.ts +5 -3
- package/dist/vite/plugin-sidebar.js +26 -10
- package/dist/vite/plugin-sidebar.js.map +1 -1
- package/dist/vite/plugin-theme-css.d.ts +6 -0
- package/dist/vite/plugin-theme-css.js +118 -0
- package/dist/vite/plugin-theme-css.js.map +1 -0
- package/dist/vite/plugin.d.ts +2 -3
- package/dist/vite/plugin.js +18 -6
- 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 +185 -0
- package/dist/zuplo/enrich-with-zuplo.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 +6 -0
- package/dist/zuplo/with-zuplo.js +10 -0
- package/dist/zuplo/with-zuplo.js.map +1 -0
- package/lib/Button-u7M2QYds.js +51 -0
- package/lib/Button-u7M2QYds.js.map +1 -0
- package/lib/Callout-CtCQJ6Cc.js +230 -0
- package/lib/Callout-CtCQJ6Cc.js.map +1 -0
- package/lib/Card-DkH-AU1V.js +61 -0
- package/lib/Card-DkH-AU1V.js.map +1 -0
- package/lib/CategoryHeading-BA7lKNWz.js +10 -0
- package/lib/CategoryHeading-BA7lKNWz.js.map +1 -0
- package/lib/ClientOnly-E7hGysn1.js +11 -0
- package/lib/ClientOnly-E7hGysn1.js.map +1 -0
- package/lib/Dialog-irKZWXGg.js +99 -0
- package/lib/Dialog-irKZWXGg.js.map +1 -0
- package/lib/Drawer-DZ214i5V.js +1133 -0
- package/lib/Drawer-DZ214i5V.js.map +1 -0
- package/lib/Markdown-BNG8bTDA.js +7691 -0
- package/lib/Markdown-BNG8bTDA.js.map +1 -0
- package/lib/MdxPage-C-P_N-H3.js +84 -0
- package/lib/MdxPage-C-P_N-H3.js.map +1 -0
- package/lib/OasProvider-DjFXGgWa.js +33 -0
- package/lib/OasProvider-DjFXGgWa.js.map +1 -0
- package/lib/OperationList-CchpZz4h.js +5141 -0
- package/lib/OperationList-CchpZz4h.js.map +1 -0
- package/lib/Pagination-BbcrfwgM.js +36 -0
- package/lib/Pagination-BbcrfwgM.js.map +1 -0
- package/lib/RouteGuard-CIyGFkFD.js +55 -0
- package/lib/RouteGuard-CIyGFkFD.js.map +1 -0
- package/lib/SchemaList-CrQd3KiR.js +160 -0
- package/lib/SchemaList-CrQd3KiR.js.map +1 -0
- package/lib/SchemaView-CQ_hMc8m.js +375 -0
- package/lib/SchemaView-CQ_hMc8m.js.map +1 -0
- package/lib/SignUp-DSn8NjRS.js +63 -0
- package/lib/SignUp-DSn8NjRS.js.map +1 -0
- package/lib/Slot-Dw-g06lX.js +160 -0
- package/lib/Slot-Dw-g06lX.js.map +1 -0
- package/lib/Spinner-mNLZ6awP.js +7 -0
- package/lib/Spinner-mNLZ6awP.js.map +1 -0
- package/lib/SyntaxHighlight-DTgNHbGp.js +9107 -0
- package/lib/SyntaxHighlight-DTgNHbGp.js.map +1 -0
- package/lib/Toc-Ccycwd-T.js +92 -0
- package/lib/Toc-Ccycwd-T.js.map +1 -0
- package/lib/chunk-BAXFHI7N-C9WnHsLV.js +1839 -0
- package/lib/chunk-BAXFHI7N-C9WnHsLV.js.map +1 -0
- package/lib/circular-DdByufCW.js +14929 -0
- package/lib/circular-DdByufCW.js.map +1 -0
- package/lib/cn-BOFVZgHd.js +2744 -0
- package/lib/cn-BOFVZgHd.js.map +1 -0
- package/lib/createServer-BL0QaN9q.js +12494 -0
- package/lib/createServer-BL0QaN9q.js.map +1 -0
- package/lib/hook-BpiAQVtd.js +1446 -0
- package/lib/hook-BpiAQVtd.js.map +1 -0
- package/lib/index--oeBayMa.js +86 -0
- package/lib/index--oeBayMa.js.map +1 -0
- package/lib/index-BjB1BHZu.js +3268 -0
- package/lib/index-BjB1BHZu.js.map +1 -0
- package/lib/index-BvvmIczU.js +2094 -0
- package/lib/index-BvvmIczU.js.map +1 -0
- package/lib/index-C1S4w-gl.js +36 -0
- package/lib/index-C1S4w-gl.js.map +1 -0
- package/lib/index-CrcNWbel.js +316 -0
- package/lib/index-CrcNWbel.js.map +1 -0
- package/lib/index-rsSMIHTN.js +4977 -0
- package/lib/index-rsSMIHTN.js.map +1 -0
- package/lib/index-zddirpDj.js +4822 -0
- package/lib/index-zddirpDj.js.map +1 -0
- package/lib/index.esm-BFcSKCe-.js +683 -0
- package/lib/index.esm-BFcSKCe-.js.map +1 -0
- package/lib/index.esm-DSfX_eMP.js +1216 -0
- package/lib/index.esm-DSfX_eMP.js.map +1 -0
- package/lib/invariant-DAFpPywt.js +48 -0
- package/lib/invariant-DAFpPywt.js.map +1 -0
- package/lib/jsx-runtime-C5mzlN2N.js +285 -0
- package/lib/jsx-runtime-C5mzlN2N.js.map +1 -0
- package/lib/mutation-CJrIFMgY.js +196 -0
- package/lib/mutation-CJrIFMgY.js.map +1 -0
- package/lib/objectEntries-yMIkr2mI.js +5 -0
- package/lib/objectEntries-yMIkr2mI.js.map +1 -0
- package/lib/processors/removeExtensions.js +11 -0
- package/lib/processors/removeExtensions.js.map +1 -0
- package/lib/processors/removeParameters.js +47 -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 +17 -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 +52 -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/CodeBlock.js +83 -0
- package/lib/ui/CodeBlock.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 +10 -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-DG8J6ewJ.js +9 -0
- package/lib/useExposedProps-DG8J6ewJ.js.map +1 -0
- package/lib/useLatest-hmRS46UF.js +11 -0
- package/lib/useLatest-hmRS46UF.js.map +1 -0
- package/lib/useMutation-B2LNwShM.js +97 -0
- package/lib/useMutation-B2LNwShM.js.map +1 -0
- package/lib/zudoku.auth-auth0.js +32 -30
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +115 -58
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +628 -628
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.components.js +34 -3364
- 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 +5019 -212
- 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 +70 -27
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +8 -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 +52 -28
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +230 -0
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -0
- package/lib/zudoku.plugins.js +15 -0
- package/lib/zudoku.plugins.js.map +1 -0
- package/package.json +186 -105
- package/src/app/ZuploBuildConfig.ts +33 -0
- package/src/app/defaultTheme.css +54 -0
- package/src/app/demo-cdn.html +31 -31
- package/src/app/demo.html +1 -1
- package/src/app/demo.tsx +1 -5
- package/src/app/entry.client.tsx +71 -3
- package/src/app/entry.server.tsx +81 -60
- package/src/app/env.ts +35 -0
- package/src/app/font.geist.css +73 -0
- package/src/app/main.css +202 -131
- package/src/app/main.tsx +81 -71
- package/src/app/sentry.ts +24 -0
- package/src/app/standalone.tsx +2 -6
- package/src/lib/MissingIcon.tsx +22 -0
- package/src/lib/authentication/AuthenticationPlugin.tsx +22 -5
- package/src/lib/authentication/authentication.ts +5 -6
- package/src/lib/authentication/components/CallbackHandler.tsx +30 -51
- package/src/lib/authentication/components/SignIn.tsx +35 -2
- package/src/lib/authentication/components/SignOut.tsx +3 -2
- package/src/lib/authentication/components/SignUp.tsx +35 -1
- package/src/lib/authentication/hook.ts +13 -4
- package/src/lib/authentication/providers/auth0.tsx +28 -18
- package/src/lib/authentication/providers/clerk.tsx +136 -53
- package/src/lib/authentication/providers/openid.tsx +87 -84
- package/src/lib/authentication/providers/supabase.tsx +157 -0
- package/src/lib/authentication/state.ts +56 -25
- package/src/lib/authentication/use-broadcast/LICENSE.md +9 -0
- 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 +2 -1
- package/src/lib/components/Bootstrap.tsx +43 -16
- package/src/lib/components/BuildCheck.tsx +75 -0
- package/src/lib/components/ClientOnly.tsx +6 -3
- package/src/lib/components/DeveloperHint.tsx +6 -1
- package/src/lib/components/ErrorPage.tsx +1 -1
- package/src/lib/components/Footer.tsx +136 -0
- package/src/lib/components/Header.tsx +108 -55
- package/src/lib/components/Heading.tsx +14 -14
- package/src/lib/components/InlineCode.tsx +13 -16
- package/src/lib/components/Layout.tsx +36 -59
- package/src/lib/components/Main.tsx +51 -0
- package/src/lib/components/Markdown.tsx +33 -29
- package/src/lib/components/MobileTopNavigation.tsx +43 -28
- package/src/lib/components/NotFoundPage.tsx +2 -2
- package/src/lib/components/Pagination.tsx +44 -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 +19 -8
- package/src/lib/components/Slot.test.tsx +456 -0
- package/src/lib/components/Slot.tsx +64 -0
- package/src/lib/components/StatusPage.tsx +91 -0
- package/src/lib/components/ThemeSwitch.tsx +46 -0
- package/src/lib/components/TopNavigation.tsx +95 -25
- package/src/lib/components/Zudoku.tsx +119 -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/SlotProvider.tsx +149 -0
- package/src/lib/components/context/ViewportAnchorContext.tsx +34 -36
- package/src/lib/components/context/ZudokuContext.ts +53 -29
- package/src/lib/components/context/ZudokuProvider.tsx +4 -3
- package/src/lib/components/index.ts +33 -6
- package/src/lib/components/navigation/PoweredByZudoku.tsx +33 -0
- package/src/lib/components/navigation/Sidebar.tsx +39 -30
- package/src/lib/components/navigation/SidebarBadge.tsx +17 -12
- package/src/lib/components/navigation/SidebarCategory.tsx +67 -54
- package/src/lib/components/navigation/SidebarItem.tsx +38 -51
- package/src/lib/components/navigation/SidebarWrapper.tsx +42 -22
- package/src/lib/components/navigation/Toc.tsx +126 -0
- package/src/lib/components/navigation/ZudokuLogo.tsx +25 -0
- package/src/lib/components/navigation/ZuploLogo.tsx +14 -0
- package/src/lib/components/navigation/utils.ts +24 -17
- package/src/lib/core/RouteGuard.tsx +96 -0
- package/src/lib/core/ZudokuContext.ts +198 -0
- package/src/lib/core/plugins.ts +54 -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 +58 -0
- package/src/lib/oas/graphql/index.ts +298 -104
- package/src/lib/oas/parser/dereference/index.ts +10 -4
- package/src/lib/oas/parser/index.ts +14 -30
- package/src/lib/oas/parser/upgrade/index.ts +103 -38
- 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 +63 -47
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +293 -113
- package/src/lib/plugins/api-keys/index.tsx +107 -59
- 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 +53 -49
- package/src/lib/plugins/markdown/index.tsx +53 -13
- package/src/lib/plugins/markdown/resolver.ts +59 -0
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +86 -0
- package/src/lib/plugins/openapi/ColorizedParam.tsx +49 -23
- package/src/lib/plugins/openapi/Endpoint.tsx +19 -22
- package/src/lib/plugins/openapi/OasProvider.tsx +51 -0
- package/src/lib/plugins/openapi/OperationList.tsx +240 -70
- package/src/lib/plugins/openapi/OperationListItem.tsx +122 -93
- package/src/lib/plugins/openapi/ParamInfos.tsx +90 -0
- package/src/lib/plugins/openapi/ParameterList.tsx +4 -0
- package/src/lib/plugins/openapi/ParameterListItem.tsx +78 -31
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +21 -2
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +15 -33
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +36 -59
- package/src/lib/plugins/openapi/SchemaList.tsx +163 -0
- package/src/lib/plugins/openapi/Sidecar.tsx +181 -114
- package/src/lib/plugins/openapi/SidecarBox.tsx +4 -16
- package/src/lib/plugins/openapi/SidecarExamples.tsx +168 -0
- package/src/lib/plugins/openapi/SimpleSelect.tsx +1 -1
- 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 +45 -0
- package/src/lib/plugins/openapi/components/ConstValue.tsx +24 -0
- package/src/lib/plugins/openapi/components/EnumValues.tsx +58 -0
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +104 -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 +38 -30
- package/src/lib/plugins/openapi/graphql/graphql.ts +386 -682
- package/src/lib/plugins/openapi/index.tsx +111 -138
- package/src/lib/plugins/openapi/interfaces.ts +58 -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 +41 -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 +386 -245
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +7 -4
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +87 -89
- 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/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 +222 -0
- package/src/lib/plugins/openapi/processors/removeExtensions.ts +29 -0
- package/src/lib/plugins/openapi/processors/removeParameters.test.ts +182 -0
- package/src/lib/plugins/openapi/processors/removeParameters.ts +103 -0
- package/src/lib/plugins/openapi/processors/removePaths.test.ts +167 -0
- package/src/lib/plugins/openapi/processors/removePaths.ts +57 -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 +39 -0
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +160 -0
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +105 -138
- package/src/lib/plugins/openapi/schema/utils.ts +32 -5
- 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 +95 -44
- package/src/lib/plugins/openapi/util/getRoutes.tsx +198 -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/shiki.ts +133 -0
- package/src/lib/ui/Accordion.tsx +56 -0
- package/src/lib/ui/ActionButton.tsx +28 -0
- package/src/lib/ui/Alert.tsx +59 -0
- 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 +13 -8
- 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/CodeBlock.tsx +102 -0
- package/src/lib/ui/Collapsible.tsx +9 -0
- package/src/lib/ui/Command.tsx +193 -0
- package/src/lib/ui/Dialog.tsx +120 -0
- package/src/lib/ui/Drawer.tsx +38 -36
- package/src/lib/ui/DropdownMenu.tsx +4 -4
- package/src/lib/ui/Form.tsx +177 -0
- package/src/lib/ui/HoverCard.tsx +27 -0
- package/src/lib/ui/Input.tsx +2 -3
- package/src/lib/ui/Label.tsx +24 -0
- package/src/lib/ui/Pagination.tsx +117 -0
- package/src/lib/ui/Popover.tsx +29 -0
- package/src/lib/ui/Progress.tsx +26 -0
- package/src/lib/ui/RadioGroup.tsx +42 -0
- package/src/lib/ui/ScrollArea.tsx +46 -0
- package/src/lib/ui/Select.tsx +157 -0
- 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 +27 -0
- package/src/lib/ui/Tabs.tsx +2 -2
- 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 +37 -24
- package/src/lib/util/createVariantComponent.tsx +2 -2
- package/src/lib/util/detectOS.ts +9 -0
- package/src/lib/util/ensureArray.ts +3 -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 +34 -0
- package/src/lib/util/types.ts +7 -0
- package/src/lib/util/url.test.ts +51 -0
- package/src/lib/util/url.ts +18 -0
- package/src/lib/util/useExposedProps.tsx +27 -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/src/shiki/langs/abap.js +1 -0
- package/src/shiki/langs/actionscript-3.js +1 -0
- package/src/shiki/langs/ada.js +1 -0
- package/src/shiki/langs/angular-expression.js +1 -0
- package/src/shiki/langs/angular-html.js +1 -0
- package/src/shiki/langs/angular-inline-style.js +1 -0
- package/src/shiki/langs/angular-inline-template.js +1 -0
- package/src/shiki/langs/angular-let-declaration.js +1 -0
- package/src/shiki/langs/angular-template-blocks.js +1 -0
- package/src/shiki/langs/angular-template.js +1 -0
- package/src/shiki/langs/angular-ts.js +1 -0
- package/src/shiki/langs/apache.js +1 -0
- package/src/shiki/langs/apex.js +1 -0
- package/src/shiki/langs/apl.js +1 -0
- package/src/shiki/langs/applescript.js +1 -0
- package/src/shiki/langs/ara.js +1 -0
- package/src/shiki/langs/asciidoc.js +1 -0
- package/src/shiki/langs/asm.js +1 -0
- package/src/shiki/langs/astro.js +1 -0
- package/src/shiki/langs/awk.js +1 -0
- package/src/shiki/langs/ballerina.js +1 -0
- package/src/shiki/langs/bat.js +1 -0
- package/src/shiki/langs/beancount.js +1 -0
- package/src/shiki/langs/berry.js +1 -0
- package/src/shiki/langs/bibtex.js +1 -0
- package/src/shiki/langs/bicep.js +1 -0
- package/src/shiki/langs/blade.js +1 -0
- package/src/shiki/langs/bsl.js +1 -0
- package/src/shiki/langs/c.js +1 -0
- package/src/shiki/langs/cadence.js +1 -0
- package/src/shiki/langs/cairo.js +1 -0
- package/src/shiki/langs/clarity.js +1 -0
- package/src/shiki/langs/clojure.js +1 -0
- package/src/shiki/langs/cmake.js +1 -0
- package/src/shiki/langs/cobol.js +1 -0
- package/src/shiki/langs/codeowners.js +1 -0
- package/src/shiki/langs/codeql.js +1 -0
- package/src/shiki/langs/coffee.js +1 -0
- package/src/shiki/langs/common-lisp.js +1 -0
- package/src/shiki/langs/coq.js +1 -0
- package/src/shiki/langs/cpp-macro.js +1 -0
- package/src/shiki/langs/cpp.js +1 -0
- package/src/shiki/langs/crystal.js +1 -0
- package/src/shiki/langs/csharp.js +1 -0
- package/src/shiki/langs/css.js +1 -0
- package/src/shiki/langs/csv.js +1 -0
- package/src/shiki/langs/cue.js +1 -0
- package/src/shiki/langs/cypher.js +1 -0
- package/src/shiki/langs/d.js +1 -0
- package/src/shiki/langs/dart.js +1 -0
- package/src/shiki/langs/dax.js +1 -0
- package/src/shiki/langs/desktop.js +1 -0
- package/src/shiki/langs/diff.js +1 -0
- package/src/shiki/langs/docker.js +1 -0
- package/src/shiki/langs/dotenv.js +1 -0
- package/src/shiki/langs/dream-maker.js +1 -0
- package/src/shiki/langs/edge.js +1 -0
- package/src/shiki/langs/elixir.js +1 -0
- package/src/shiki/langs/elm.js +1 -0
- package/src/shiki/langs/emacs-lisp.js +1 -0
- package/src/shiki/langs/erb.js +1 -0
- package/src/shiki/langs/erlang.js +1 -0
- package/src/shiki/langs/es-tag-css.js +1 -0
- package/src/shiki/langs/es-tag-glsl.js +1 -0
- package/src/shiki/langs/es-tag-html.js +1 -0
- package/src/shiki/langs/es-tag-sql.js +1 -0
- package/src/shiki/langs/es-tag-xml.js +1 -0
- package/src/shiki/langs/fennel.js +1 -0
- package/src/shiki/langs/fish.js +1 -0
- package/src/shiki/langs/fluent.js +1 -0
- package/src/shiki/langs/fortran-fixed-form.js +1 -0
- package/src/shiki/langs/fortran-free-form.js +1 -0
- package/src/shiki/langs/fsharp.js +1 -0
- package/src/shiki/langs/gdresource.js +1 -0
- package/src/shiki/langs/gdscript.js +1 -0
- package/src/shiki/langs/gdshader.js +1 -0
- package/src/shiki/langs/genie.js +1 -0
- package/src/shiki/langs/gherkin.js +1 -0
- package/src/shiki/langs/git-commit.js +1 -0
- package/src/shiki/langs/git-rebase.js +1 -0
- package/src/shiki/langs/gleam.js +1 -0
- package/src/shiki/langs/glimmer-js.js +1 -0
- package/src/shiki/langs/glimmer-ts.js +1 -0
- package/src/shiki/langs/glsl.js +1 -0
- package/src/shiki/langs/gnuplot.js +1 -0
- package/src/shiki/langs/go.js +1 -0
- package/src/shiki/langs/graphql.js +1 -0
- package/src/shiki/langs/groovy.js +1 -0
- package/src/shiki/langs/hack.js +1 -0
- package/src/shiki/langs/haml.js +1 -0
- package/src/shiki/langs/handlebars.js +1 -0
- package/src/shiki/langs/haskell.js +1 -0
- package/src/shiki/langs/haxe.js +1 -0
- package/src/shiki/langs/hcl.js +1 -0
- package/src/shiki/langs/hjson.js +1 -0
- package/src/shiki/langs/hlsl.js +1 -0
- package/src/shiki/langs/html-derivative.js +1 -0
- package/src/shiki/langs/html.js +1 -0
- package/src/shiki/langs/http.js +1 -0
- package/src/shiki/langs/hxml.js +1 -0
- package/src/shiki/langs/hy.js +1 -0
- package/src/shiki/langs/imba.js +1 -0
- package/src/shiki/langs/ini.js +1 -0
- package/src/shiki/langs/java.js +1 -0
- package/src/shiki/langs/javascript.js +1 -0
- package/src/shiki/langs/jinja-html.js +1 -0
- package/src/shiki/langs/jinja.js +1 -0
- package/src/shiki/langs/jison.js +1 -0
- package/src/shiki/langs/json.js +1 -0
- package/src/shiki/langs/json5.js +1 -0
- package/src/shiki/langs/jsonc.js +1 -0
- package/src/shiki/langs/jsonl.js +1 -0
- package/src/shiki/langs/jsonnet.js +1 -0
- package/src/shiki/langs/jssm.js +1 -0
- package/src/shiki/langs/jsx.js +1 -0
- package/src/shiki/langs/julia.js +1 -0
- package/src/shiki/langs/kotlin.js +1 -0
- package/src/shiki/langs/kusto.js +1 -0
- package/src/shiki/langs/latex.js +1 -0
- package/src/shiki/langs/lean.js +1 -0
- package/src/shiki/langs/less.js +1 -0
- package/src/shiki/langs/liquid.js +1 -0
- package/src/shiki/langs/llvm.js +1 -0
- package/src/shiki/langs/log.js +1 -0
- package/src/shiki/langs/logo.js +1 -0
- package/src/shiki/langs/lua.js +1 -0
- package/src/shiki/langs/luau.js +1 -0
- package/src/shiki/langs/make.js +1 -0
- package/src/shiki/langs/markdown-vue.js +1 -0
- package/src/shiki/langs/markdown.js +1 -0
- package/src/shiki/langs/marko.js +1 -0
- package/src/shiki/langs/matlab.js +1 -0
- package/src/shiki/langs/mdc.js +1 -0
- package/src/shiki/langs/mdx.js +1 -0
- package/src/shiki/langs/mermaid.js +1 -0
- package/src/shiki/langs/mipsasm.js +1 -0
- package/src/shiki/langs/mojo.js +1 -0
- package/src/shiki/langs/move.js +1 -0
- package/src/shiki/langs/narrat.js +1 -0
- package/src/shiki/langs/nextflow.js +1 -0
- package/src/shiki/langs/nginx.js +1 -0
- package/src/shiki/langs/nim.js +1 -0
- package/src/shiki/langs/nix.js +1 -0
- package/src/shiki/langs/nushell.js +1 -0
- package/src/shiki/langs/objective-c.js +1 -0
- package/src/shiki/langs/objective-cpp.js +1 -0
- package/src/shiki/langs/ocaml.js +1 -0
- package/src/shiki/langs/pascal.js +1 -0
- package/src/shiki/langs/perl.js +1 -0
- package/src/shiki/langs/php.js +1 -0
- package/src/shiki/langs/plsql.js +1 -0
- package/src/shiki/langs/po.js +1 -0
- package/src/shiki/langs/polar.js +1 -0
- package/src/shiki/langs/postcss.js +1 -0
- package/src/shiki/langs/powerquery.js +1 -0
- package/src/shiki/langs/powershell.js +1 -0
- package/src/shiki/langs/prisma.js +1 -0
- package/src/shiki/langs/prolog.js +1 -0
- package/src/shiki/langs/proto.js +1 -0
- package/src/shiki/langs/pug.js +1 -0
- package/src/shiki/langs/puppet.js +1 -0
- package/src/shiki/langs/purescript.js +1 -0
- package/src/shiki/langs/python.js +1 -0
- package/src/shiki/langs/qml.js +1 -0
- package/src/shiki/langs/qmldir.js +1 -0
- package/src/shiki/langs/qss.js +1 -0
- package/src/shiki/langs/r.js +1 -0
- package/src/shiki/langs/racket.js +1 -0
- package/src/shiki/langs/raku.js +1 -0
- package/src/shiki/langs/razor.js +1 -0
- package/src/shiki/langs/reg.js +1 -0
- package/src/shiki/langs/regexp.js +1 -0
- package/src/shiki/langs/rel.js +1 -0
- package/src/shiki/langs/riscv.js +1 -0
- package/src/shiki/langs/rst.js +1 -0
- package/src/shiki/langs/ruby.js +1 -0
- package/src/shiki/langs/rust.js +1 -0
- package/src/shiki/langs/sas.js +1 -0
- package/src/shiki/langs/sass.js +1 -0
- package/src/shiki/langs/scala.js +1 -0
- package/src/shiki/langs/scheme.js +1 -0
- package/src/shiki/langs/scss.js +1 -0
- package/src/shiki/langs/sdbl.js +1 -0
- package/src/shiki/langs/shaderlab.js +1 -0
- package/src/shiki/langs/shellscript.js +1 -0
- package/src/shiki/langs/shellsession.js +1 -0
- package/src/shiki/langs/smalltalk.js +1 -0
- package/src/shiki/langs/solidity.js +1 -0
- package/src/shiki/langs/soy.js +1 -0
- package/src/shiki/langs/sparql.js +1 -0
- package/src/shiki/langs/splunk.js +1 -0
- package/src/shiki/langs/sql.js +1 -0
- package/src/shiki/langs/ssh-config.js +1 -0
- package/src/shiki/langs/stata.js +1 -0
- package/src/shiki/langs/stylus.js +1 -0
- package/src/shiki/langs/svelte.js +1 -0
- package/src/shiki/langs/swift.js +1 -0
- package/src/shiki/langs/system-verilog.js +1 -0
- package/src/shiki/langs/systemd.js +1 -0
- package/src/shiki/langs/talonscript.js +1 -0
- package/src/shiki/langs/tasl.js +1 -0
- package/src/shiki/langs/tcl.js +1 -0
- package/src/shiki/langs/templ.js +1 -0
- package/src/shiki/langs/terraform.js +1 -0
- package/src/shiki/langs/tex.js +1 -0
- package/src/shiki/langs/toml.js +1 -0
- package/src/shiki/langs/ts-tags.js +1 -0
- package/src/shiki/langs/tsv.js +1 -0
- package/src/shiki/langs/tsx.js +1 -0
- package/src/shiki/langs/turtle.js +1 -0
- package/src/shiki/langs/twig.js +1 -0
- package/src/shiki/langs/typescript.js +1 -0
- package/src/shiki/langs/typespec.js +1 -0
- package/src/shiki/langs/typst.js +1 -0
- package/src/shiki/langs/v.js +1 -0
- package/src/shiki/langs/vala.js +1 -0
- package/src/shiki/langs/vb.js +1 -0
- package/src/shiki/langs/verilog.js +1 -0
- package/src/shiki/langs/vhdl.js +1 -0
- package/src/shiki/langs/viml.js +1 -0
- package/src/shiki/langs/vue-directives.js +1 -0
- package/src/shiki/langs/vue-html.js +1 -0
- package/src/shiki/langs/vue-interpolations.js +1 -0
- package/src/shiki/langs/vue-sfc-style-variable-injection.js +1 -0
- package/src/shiki/langs/vue.js +1 -0
- package/src/shiki/langs/vyper.js +1 -0
- package/src/shiki/langs/wasm.js +1 -0
- package/src/shiki/langs/wenyan.js +1 -0
- package/src/shiki/langs/wgsl.js +1 -0
- package/src/shiki/langs/wikitext.js +1 -0
- package/src/shiki/langs/wit.js +1 -0
- package/src/shiki/langs/wolfram.js +1 -0
- package/src/shiki/langs/xml.js +1 -0
- package/src/shiki/langs/xsl.js +1 -0
- package/src/shiki/langs/yaml.js +1 -0
- package/src/shiki/langs/zenscript.js +1 -0
- package/src/shiki/langs/zig.js +1 -0
- package/src/shiki/themes/andromeeda.js +1 -0
- package/src/shiki/themes/aurora-x.js +1 -0
- package/src/shiki/themes/ayu-dark.js +1 -0
- package/src/shiki/themes/catppuccin-frappe.js +1 -0
- package/src/shiki/themes/catppuccin-latte.js +1 -0
- package/src/shiki/themes/catppuccin-macchiato.js +1 -0
- package/src/shiki/themes/catppuccin-mocha.js +1 -0
- package/src/shiki/themes/dark-plus.js +1 -0
- package/src/shiki/themes/dracula-soft.js +1 -0
- package/src/shiki/themes/dracula.js +1 -0
- package/src/shiki/themes/everforest-dark.js +1 -0
- package/src/shiki/themes/everforest-light.js +1 -0
- package/src/shiki/themes/github-dark-default.js +1 -0
- package/src/shiki/themes/github-dark-dimmed.js +1 -0
- package/src/shiki/themes/github-dark-high-contrast.js +1 -0
- package/src/shiki/themes/github-dark.js +1 -0
- package/src/shiki/themes/github-light-default.js +1 -0
- package/src/shiki/themes/github-light-high-contrast.js +1 -0
- package/src/shiki/themes/github-light.js +1 -0
- package/src/shiki/themes/gruvbox-dark-hard.js +1 -0
- package/src/shiki/themes/gruvbox-dark-medium.js +1 -0
- package/src/shiki/themes/gruvbox-dark-soft.js +1 -0
- package/src/shiki/themes/gruvbox-light-hard.js +1 -0
- package/src/shiki/themes/gruvbox-light-medium.js +1 -0
- package/src/shiki/themes/gruvbox-light-soft.js +1 -0
- package/src/shiki/themes/houston.js +1 -0
- package/src/shiki/themes/kanagawa-dragon.js +1 -0
- package/src/shiki/themes/kanagawa-lotus.js +1 -0
- package/src/shiki/themes/kanagawa-wave.js +1 -0
- package/src/shiki/themes/laserwave.js +1 -0
- package/src/shiki/themes/light-plus.js +1 -0
- package/src/shiki/themes/material-theme-darker.js +1 -0
- package/src/shiki/themes/material-theme-lighter.js +1 -0
- package/src/shiki/themes/material-theme-ocean.js +1 -0
- package/src/shiki/themes/material-theme-palenight.js +1 -0
- package/src/shiki/themes/material-theme.js +1 -0
- package/src/shiki/themes/min-dark.js +1 -0
- package/src/shiki/themes/min-light.js +1 -0
- package/src/shiki/themes/monokai.js +1 -0
- package/src/shiki/themes/night-owl.js +1 -0
- package/src/shiki/themes/nord.js +1 -0
- package/src/shiki/themes/one-dark-pro.js +1 -0
- package/src/shiki/themes/one-light.js +1 -0
- package/src/shiki/themes/plastic.js +1 -0
- package/src/shiki/themes/poimandres.js +1 -0
- package/src/shiki/themes/red.js +1 -0
- package/src/shiki/themes/rose-pine-dawn.js +1 -0
- package/src/shiki/themes/rose-pine-moon.js +1 -0
- package/src/shiki/themes/rose-pine.js +1 -0
- package/src/shiki/themes/slack-dark.js +1 -0
- package/src/shiki/themes/slack-ochin.js +1 -0
- package/src/shiki/themes/snazzy-light.js +1 -0
- package/src/shiki/themes/solarized-dark.js +1 -0
- package/src/shiki/themes/solarized-light.js +1 -0
- package/src/shiki/themes/synthwave-84.js +1 -0
- package/src/shiki/themes/tokyo-night.js +1 -0
- package/src/shiki/themes/vesper.js +1 -0
- package/src/shiki/themes/vitesse-black.js +1 -0
- package/src/shiki/themes/vitesse-dark.js +1 -0
- package/src/shiki/themes/vitesse-light.js +1 -0
- package/LICENSE.md +0 -9
- package/client.d.ts +0 -1
- package/dist/app/tailwind.d.ts +0 -3
- package/dist/app/tailwind.js +0 -65
- package/dist/app/tailwind.js.map +0 -1
- package/dist/internal.d.ts +0 -1
- package/dist/internal.js +0 -2
- package/dist/internal.js.map +0 -1
- package/dist/lib/components/DevPortal.d.ts +0 -7
- package/dist/lib/components/DevPortal.js +0 -54
- package/dist/lib/components/DevPortal.js.map +0 -1
- package/dist/lib/components/Dialog.js +0 -23
- package/dist/lib/components/Dialog.js.map +0 -1
- package/dist/lib/components/Select.js +0 -27
- package/dist/lib/components/Select.js.map +0 -1
- package/dist/lib/components/SlotletProvider.d.ts +0 -9
- package/dist/lib/components/SlotletProvider.js +0 -16
- package/dist/lib/components/SlotletProvider.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 +0 -48
- 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 -21
- 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.d.ts +0 -13
- 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/vite/plugin-custom-css.d.ts +0 -6
- 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/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-ovR-zHRq.js +0 -10
- package/lib/CategoryHeading-ovR-zHRq.js.map +0 -1
- package/lib/DeveloperHint-YeWHKvyr.js +0 -16
- package/lib/DeveloperHint-YeWHKvyr.js.map +0 -1
- package/lib/ErrorPage-CsZAN_za.js +0 -16
- package/lib/ErrorPage-CsZAN_za.js.map +0 -1
- package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
- package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
- package/lib/Input-CtVUl3eT.js +0 -2198
- package/lib/Input-CtVUl3eT.js.map +0 -1
- package/lib/Markdown-DapSf3wG.js +0 -20281
- package/lib/Markdown-DapSf3wG.js.map +0 -1
- package/lib/MdxPage-BqBWsXZ1.js +0 -172
- package/lib/MdxPage-BqBWsXZ1.js.map +0 -1
- package/lib/OperationList-CYrmxPa8.js +0 -602
- package/lib/OperationList-CYrmxPa8.js.map +0 -1
- package/lib/Route-Q5mqNQrv.js +0 -14
- package/lib/Route-Q5mqNQrv.js.map +0 -1
- package/lib/SidebarBadge-Dx7jtnoA.js +0 -498
- package/lib/SidebarBadge-Dx7jtnoA.js.map +0 -1
- package/lib/SlotletProvider-D3UD5Go3.js +0 -238
- package/lib/SlotletProvider-D3UD5Go3.js.map +0 -1
- package/lib/Spinner-3cQDBVGr.js +0 -7
- package/lib/Spinner-3cQDBVGr.js.map +0 -1
- package/lib/ZudokuContext-cr-pTRY1.js +0 -1084
- package/lib/ZudokuContext-cr-pTRY1.js.map +0 -1
- package/lib/_commonjsHelpers-BkfeUUK-.js +0 -29
- package/lib/_commonjsHelpers-BkfeUUK-.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-BP8Uzflt.js +0 -17916
- package/lib/assets/worker-BP8Uzflt.js.map +0 -1
- package/lib/index-BG0g4WW0.js +0 -1771
- package/lib/index-BG0g4WW0.js.map +0 -1
- package/lib/index-BlJ2rj99.js +0 -5815
- package/lib/index-BlJ2rj99.js.map +0 -1
- package/lib/index-BngPzhKn.js +0 -124
- package/lib/index-BngPzhKn.js.map +0 -1
- package/lib/index-CLd8ycZz.js +0 -4790
- package/lib/index-CLd8ycZz.js.map +0 -1
- package/lib/index-Dolisrci.js +0 -2814
- package/lib/index-Dolisrci.js.map +0 -1
- package/lib/index-LNp6rxyU.js +0 -2094
- package/lib/index-LNp6rxyU.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-bash.min-DadFsM4Z.js +0 -7
- package/lib/prism-bash.min-DadFsM4Z.js.map +0 -1
- package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
- package/lib/prism-csharp.min-Yizuc34Y.js.map +0 -1
- package/lib/prism-java.min-d5iT_mOd.js +0 -7
- package/lib/prism-java.min-d5iT_mOd.js.map +0 -1
- package/lib/prism-javascript.min-CEqHqgbm.js +0 -9
- package/lib/prism-javascript.min-CEqHqgbm.js.map +0 -1
- package/lib/prism-json.min-B1GJqK1k.js +0 -2
- package/lib/prism-json.min-B1GJqK1k.js.map +0 -1
- package/lib/prism-markdown.min-F3U-vPBi.js +0 -61
- package/lib/prism-markdown.min-F3U-vPBi.js.map +0 -1
- package/lib/prism-markup-BNGj0Tvm.js +0 -174
- package/lib/prism-markup-BNGj0Tvm.js.map +0 -1
- package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
- package/lib/prism-markup-templating-DZrrEs0A.js.map +0 -1
- package/lib/prism-objectivec.min-BXSWqpJJ.js +0 -2
- package/lib/prism-objectivec.min-BXSWqpJJ.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-ruby.min-C7LwcKyz.js.map +0 -1
- package/lib/prism-typescript.min-oSVeWCAd.js +0 -6
- package/lib/prism-typescript.min-oSVeWCAd.js.map +0 -1
- package/lib/router-D2p7Olpn.js +0 -2971
- package/lib/router-D2p7Olpn.js.map +0 -1
- package/lib/state-hNe1dw4B.js +0 -548
- package/lib/state-hNe1dw4B.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 -16059
- 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/app/tailwind.ts +0 -68
- package/src/lib/components/DevPortal.tsx +0 -111
- package/src/lib/components/Dialog.tsx +0 -119
- package/src/lib/components/Select.tsx +0 -157
- package/src/lib/components/SlotletProvider.tsx +0 -30
- 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/Toc.tsx +0 -135
- package/src/lib/plugins/markdown/generateRoutes.tsx +0 -38
- 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 -76
- 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/ui/Note.tsx +0 -58
- package/src/lib/util/createWaitForNotify.ts +0 -18
- /package/dist/lib/components/{context/PluginSystem.d.ts → Slot.test.d.ts} +0 -0
- /package/dist/lib/{plugins/markdown → components/navigation}/Toc.d.ts +0 -0
- /package/dist/lib/{plugins/openapi/client/worker.d.ts → hooks/useEvent.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,164 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
1
|
+
import { j as L } from "./jsx-runtime-C5mzlN2N.js";
|
|
2
|
+
import { g as Pe, Z as Le } from "./invariant-DAFpPywt.js";
|
|
3
|
+
import { C as Ue } from "./ClientOnly-E7hGysn1.js";
|
|
4
|
+
import { d as xe, k as fe, u as x } from "./hook-BpiAQVtd.js";
|
|
5
|
+
import { LogOutIcon as Ce } from "lucide-react";
|
|
6
|
+
import { S as Ie, a as je, b as Oe } from "./SignUp-DSn8NjRS.js";
|
|
7
|
+
import { N as ze } from "./chunk-BAXFHI7N-C9WnHsLV.js";
|
|
8
|
+
import { a as Je } from "./index-rsSMIHTN.js";
|
|
9
|
+
var J = { exports: {} }, De = J.exports, re;
|
|
10
|
+
function Ne() {
|
|
11
|
+
return re || (re = 1, function(t) {
|
|
12
|
+
(function(e, n) {
|
|
13
|
+
t.exports ? t.exports = n() : e.log = n();
|
|
14
|
+
})(De, function() {
|
|
15
|
+
var e = function() {
|
|
16
|
+
}, n = "undefined", o = typeof window !== n && typeof window.navigator !== n && /Trident\/|MSIE /.test(window.navigator.userAgent), s = [
|
|
17
|
+
"trace",
|
|
18
|
+
"debug",
|
|
19
|
+
"info",
|
|
20
|
+
"warn",
|
|
21
|
+
"error"
|
|
22
|
+
], r = {}, i = null;
|
|
23
|
+
function c(l, g) {
|
|
24
|
+
var u = l[g];
|
|
25
|
+
if (typeof u.bind == "function")
|
|
26
|
+
return u.bind(l);
|
|
27
|
+
try {
|
|
28
|
+
return Function.prototype.bind.call(u, l);
|
|
29
|
+
} catch {
|
|
30
|
+
return function() {
|
|
31
|
+
return Function.prototype.apply.apply(u, [l, arguments]);
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
function f() {
|
|
36
|
+
console.log && (console.log.apply ? console.log.apply(console, arguments) : Function.prototype.apply.apply(console.log, [console, arguments])), console.trace && console.trace();
|
|
37
|
+
}
|
|
38
|
+
function y(l) {
|
|
39
|
+
return l === "debug" && (l = "log"), typeof console === n ? !1 : l === "trace" && o ? f : console[l] !== void 0 ? c(console, l) : console.log !== void 0 ? c(console, "log") : e;
|
|
40
|
+
}
|
|
41
|
+
function p() {
|
|
42
|
+
for (var l = this.getLevel(), g = 0; g < s.length; g++) {
|
|
43
|
+
var u = s[g];
|
|
44
|
+
this[u] = g < l ? e : this.methodFactory(u, l, this.name);
|
|
45
|
+
}
|
|
46
|
+
if (this.log = this.debug, typeof console === n && l < this.levels.SILENT)
|
|
47
|
+
return "No console available for logging";
|
|
48
|
+
}
|
|
49
|
+
function A(l) {
|
|
34
50
|
return function() {
|
|
35
|
-
|
|
51
|
+
typeof console !== n && (p.call(this), this[l].apply(this, arguments));
|
|
36
52
|
};
|
|
37
53
|
}
|
|
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);
|
|
54
|
+
function b(l, g, u) {
|
|
55
|
+
return y(l) || A.apply(this, arguments);
|
|
49
56
|
}
|
|
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 {
|
|
57
|
+
function h(l, g) {
|
|
58
|
+
var u = this, O, H, P, _ = "loglevel";
|
|
59
|
+
typeof l == "string" ? _ += ":" + l : typeof l == "symbol" && (_ = void 0);
|
|
60
|
+
function ke(d) {
|
|
61
|
+
var m = (s[d] || "silent").toUpperCase();
|
|
62
|
+
if (!(typeof window === n || !_)) {
|
|
63
|
+
try {
|
|
64
|
+
window.localStorage[_] = m;
|
|
65
|
+
return;
|
|
66
|
+
} catch {
|
|
67
|
+
}
|
|
68
|
+
try {
|
|
69
|
+
window.document.cookie = encodeURIComponent(_) + "=" + m + ";";
|
|
70
|
+
} catch {
|
|
71
|
+
}
|
|
75
72
|
}
|
|
76
73
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
if (!(typeof window === r || !v)) {
|
|
81
|
-
try {
|
|
82
|
-
d = window.localStorage[v];
|
|
83
|
-
} catch {
|
|
84
|
-
}
|
|
85
|
-
if (typeof d === r)
|
|
74
|
+
function ee() {
|
|
75
|
+
var d;
|
|
76
|
+
if (!(typeof window === n || !_)) {
|
|
86
77
|
try {
|
|
87
|
-
|
|
88
|
-
ie !== -1 && (d = /^([^;]+)/.exec(
|
|
89
|
-
g.slice(ie + N.length + 1)
|
|
90
|
-
)[1]);
|
|
78
|
+
d = window.localStorage[_];
|
|
91
79
|
} catch {
|
|
92
80
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
81
|
+
if (typeof d === n)
|
|
82
|
+
try {
|
|
83
|
+
var m = window.document.cookie, z = encodeURIComponent(_), ne = m.indexOf(z + "=");
|
|
84
|
+
ne !== -1 && (d = /^([^;]+)/.exec(
|
|
85
|
+
m.slice(ne + z.length + 1)
|
|
86
|
+
)[1]);
|
|
87
|
+
} catch {
|
|
88
|
+
}
|
|
89
|
+
return u.levels[d] === void 0 && (d = void 0), d;
|
|
101
90
|
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
91
|
+
}
|
|
92
|
+
function Ee() {
|
|
93
|
+
if (!(typeof window === n || !_)) {
|
|
94
|
+
try {
|
|
95
|
+
window.localStorage.removeItem(_);
|
|
96
|
+
} catch {
|
|
97
|
+
}
|
|
98
|
+
try {
|
|
99
|
+
window.document.cookie = encodeURIComponent(_) + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
|
|
100
|
+
} catch {
|
|
101
|
+
}
|
|
105
102
|
}
|
|
106
103
|
}
|
|
104
|
+
function U(d) {
|
|
105
|
+
var m = d;
|
|
106
|
+
if (typeof m == "string" && u.levels[m.toUpperCase()] !== void 0 && (m = u.levels[m.toUpperCase()]), typeof m == "number" && m >= 0 && m <= u.levels.SILENT)
|
|
107
|
+
return m;
|
|
108
|
+
throw new TypeError("log.setLevel() called with invalid level: " + d);
|
|
109
|
+
}
|
|
110
|
+
u.name = l, u.levels = {
|
|
111
|
+
TRACE: 0,
|
|
112
|
+
DEBUG: 1,
|
|
113
|
+
INFO: 2,
|
|
114
|
+
WARN: 3,
|
|
115
|
+
ERROR: 4,
|
|
116
|
+
SILENT: 5
|
|
117
|
+
}, u.methodFactory = g || b, u.getLevel = function() {
|
|
118
|
+
return P ?? H ?? O;
|
|
119
|
+
}, u.setLevel = function(d, m) {
|
|
120
|
+
return P = U(d), m !== !1 && ke(P), p.call(u);
|
|
121
|
+
}, u.setDefaultLevel = function(d) {
|
|
122
|
+
H = U(d), ee() || u.setLevel(d, !1);
|
|
123
|
+
}, u.resetLevel = function() {
|
|
124
|
+
P = null, Ee(), p.call(u);
|
|
125
|
+
}, u.enableAll = function(d) {
|
|
126
|
+
u.setLevel(u.levels.TRACE, d);
|
|
127
|
+
}, u.disableAll = function(d) {
|
|
128
|
+
u.setLevel(u.levels.SILENT, d);
|
|
129
|
+
}, u.rebuild = function() {
|
|
130
|
+
if (i !== u && (O = U(i.getLevel())), p.call(u), i === u)
|
|
131
|
+
for (var d in r)
|
|
132
|
+
r[d].rebuild();
|
|
133
|
+
}, O = U(
|
|
134
|
+
i ? i.getLevel() : "WARN"
|
|
135
|
+
);
|
|
136
|
+
var te = ee();
|
|
137
|
+
te != null && (P = U(te)), p.call(u);
|
|
107
138
|
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
}, c.disableAll = function(d) {
|
|
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) {
|
|
139
|
+
i = new h(), i.getLogger = function(g) {
|
|
140
|
+
if (typeof g != "symbol" && typeof g != "string" || g === "")
|
|
141
|
+
throw new TypeError("You must supply a name when creating a logger.");
|
|
142
|
+
var u = r[g];
|
|
143
|
+
return u || (u = r[g] = new h(
|
|
144
|
+
g,
|
|
145
|
+
i.methodFactory
|
|
146
|
+
)), u;
|
|
147
|
+
};
|
|
148
|
+
var R = typeof window !== n ? window.log : void 0;
|
|
149
|
+
return i.noConflict = function() {
|
|
150
|
+
return typeof window !== n && window.log === i && (window.log = R), i;
|
|
151
|
+
}, i.getLoggers = function() {
|
|
152
|
+
return r;
|
|
153
|
+
}, i.default = i, i;
|
|
154
|
+
});
|
|
155
|
+
}(J)), J.exports;
|
|
156
|
+
}
|
|
157
|
+
var We = Ne();
|
|
158
|
+
const oe = /* @__PURE__ */ Pe(We);
|
|
159
|
+
let B;
|
|
160
|
+
(typeof navigator > "u" || !navigator.userAgent?.startsWith?.("Mozilla/5.0 ")) && (B = "oauth4webapi/v2.17.0");
|
|
161
|
+
function V(t, e) {
|
|
166
162
|
if (t == null)
|
|
167
163
|
return !1;
|
|
168
164
|
try {
|
|
@@ -171,78 +167,76 @@ function Q(t, e) {
|
|
|
171
167
|
return !1;
|
|
172
168
|
}
|
|
173
169
|
}
|
|
174
|
-
const
|
|
175
|
-
function
|
|
170
|
+
const N = Symbol(), Ke = Symbol(), G = Symbol(), He = Symbol(), $e = Symbol(), Fe = Symbol(), Me = new TextEncoder(), Be = new TextDecoder();
|
|
171
|
+
function k(t) {
|
|
176
172
|
return typeof t == "string" ? Me.encode(t) : Be.decode(t);
|
|
177
173
|
}
|
|
178
|
-
const
|
|
174
|
+
const ie = 32768;
|
|
179
175
|
function qe(t) {
|
|
180
176
|
t instanceof ArrayBuffer && (t = new Uint8Array(t));
|
|
181
177
|
const e = [];
|
|
182
|
-
for (let
|
|
183
|
-
e.push(String.fromCharCode.apply(null, t.subarray(
|
|
178
|
+
for (let n = 0; n < t.byteLength; n += ie)
|
|
179
|
+
e.push(String.fromCharCode.apply(null, t.subarray(n, n + ie)));
|
|
184
180
|
return btoa(e.join("")).replace(/=/g, "").replace(/\+/g, "-").replace(/\//g, "_");
|
|
185
181
|
}
|
|
186
|
-
function
|
|
182
|
+
function Ve(t) {
|
|
187
183
|
try {
|
|
188
|
-
const e = atob(t.replace(/-/g, "+").replace(/_/g, "/").replace(/\s/g, "")),
|
|
184
|
+
const e = atob(t.replace(/-/g, "+").replace(/_/g, "/").replace(/\s/g, "")), n = new Uint8Array(e.length);
|
|
189
185
|
for (let o = 0; o < e.length; o++)
|
|
190
|
-
|
|
191
|
-
return
|
|
186
|
+
n[o] = e.charCodeAt(o);
|
|
187
|
+
return n;
|
|
192
188
|
} catch (e) {
|
|
193
189
|
throw new a("The input to be decoded is not correctly encoded.", { cause: e });
|
|
194
190
|
}
|
|
195
191
|
}
|
|
196
|
-
function
|
|
197
|
-
return typeof t == "string" ?
|
|
192
|
+
function T(t) {
|
|
193
|
+
return typeof t == "string" ? Ve(t) : qe(t);
|
|
198
194
|
}
|
|
199
|
-
class
|
|
195
|
+
class Ge {
|
|
200
196
|
constructor(e) {
|
|
201
197
|
this.cache = /* @__PURE__ */ new Map(), this._cache = /* @__PURE__ */ new Map(), this.maxSize = e;
|
|
202
198
|
}
|
|
203
199
|
get(e) {
|
|
204
|
-
let
|
|
205
|
-
if (
|
|
206
|
-
return
|
|
207
|
-
if (
|
|
208
|
-
return this.update(e,
|
|
200
|
+
let n = this.cache.get(e);
|
|
201
|
+
if (n)
|
|
202
|
+
return n;
|
|
203
|
+
if (n = this._cache.get(e))
|
|
204
|
+
return this.update(e, n), n;
|
|
209
205
|
}
|
|
210
206
|
has(e) {
|
|
211
207
|
return this.cache.has(e) || this._cache.has(e);
|
|
212
208
|
}
|
|
213
|
-
set(e,
|
|
214
|
-
return this.cache.has(e) ? this.cache.set(e,
|
|
209
|
+
set(e, n) {
|
|
210
|
+
return this.cache.has(e) ? this.cache.set(e, n) : this.update(e, n), this;
|
|
215
211
|
}
|
|
216
212
|
delete(e) {
|
|
217
213
|
return this.cache.has(e) ? this.cache.delete(e) : this._cache.has(e) ? this._cache.delete(e) : !1;
|
|
218
214
|
}
|
|
219
|
-
update(e,
|
|
220
|
-
this.cache.set(e,
|
|
215
|
+
update(e, n) {
|
|
216
|
+
this.cache.set(e, n), this.cache.size >= this.maxSize && (this._cache = this.cache, this.cache = /* @__PURE__ */ new Map());
|
|
221
217
|
}
|
|
222
218
|
}
|
|
223
|
-
class
|
|
219
|
+
class v extends Error {
|
|
224
220
|
constructor(e) {
|
|
225
|
-
|
|
226
|
-
super(e ?? "operation not supported"), this.name = this.constructor.name, (r = Error.captureStackTrace) == null || r.call(Error, this, this.constructor);
|
|
221
|
+
super(e ?? "operation not supported"), this.name = this.constructor.name, Error.captureStackTrace?.(this, this.constructor);
|
|
227
222
|
}
|
|
228
223
|
}
|
|
229
|
-
class
|
|
230
|
-
constructor(e,
|
|
231
|
-
|
|
232
|
-
super(e, r), this.name = this.constructor.name, (o = Error.captureStackTrace) == null || o.call(Error, this, this.constructor);
|
|
224
|
+
class Ze extends Error {
|
|
225
|
+
constructor(e, n) {
|
|
226
|
+
super(e, n), this.name = this.constructor.name, Error.captureStackTrace?.(this, this.constructor);
|
|
233
227
|
}
|
|
234
228
|
}
|
|
235
|
-
const a =
|
|
229
|
+
const a = Ze, pe = new Ge(100);
|
|
236
230
|
function we(t) {
|
|
237
231
|
return t instanceof CryptoKey;
|
|
238
232
|
}
|
|
239
|
-
function
|
|
233
|
+
function Ye(t) {
|
|
240
234
|
return we(t) && t.type === "private";
|
|
241
235
|
}
|
|
242
|
-
function
|
|
236
|
+
function Qe(t) {
|
|
243
237
|
return we(t) && t.type === "public";
|
|
244
238
|
}
|
|
245
|
-
function
|
|
239
|
+
function Z(t) {
|
|
246
240
|
try {
|
|
247
241
|
const e = t.headers.get("dpop-nonce");
|
|
248
242
|
e && pe.set(new URL(t.url).origin, e);
|
|
@@ -253,101 +247,92 @@ function ee(t) {
|
|
|
253
247
|
function C(t) {
|
|
254
248
|
return !(t === null || typeof t != "object" || Array.isArray(t));
|
|
255
249
|
}
|
|
256
|
-
function
|
|
257
|
-
|
|
250
|
+
function W(t) {
|
|
251
|
+
V(t, Headers) && (t = Object.fromEntries(t.entries()));
|
|
258
252
|
const e = new Headers(t);
|
|
259
|
-
if (
|
|
253
|
+
if (B && !e.has("user-agent") && e.set("user-agent", B), e.has("authorization"))
|
|
260
254
|
throw new TypeError('"options.headers" must not include the "authorization" header name');
|
|
261
255
|
if (e.has("dpop"))
|
|
262
256
|
throw new TypeError('"options.headers" must not include the "dpop" header name');
|
|
263
257
|
return e;
|
|
264
258
|
}
|
|
265
|
-
function
|
|
259
|
+
function Xe(t) {
|
|
266
260
|
if (typeof t == "function" && (t = t()), !(t instanceof AbortSignal))
|
|
267
261
|
throw new TypeError('"options.signal" must return or be an instance of AbortSignal');
|
|
268
262
|
return t;
|
|
269
263
|
}
|
|
270
|
-
async function
|
|
264
|
+
async function et(t, e) {
|
|
271
265
|
if (!(t instanceof URL))
|
|
272
266
|
throw new TypeError('"issuerIdentifier" must be an instance of URL');
|
|
273
267
|
if (t.protocol !== "https:" && t.protocol !== "http:")
|
|
274
268
|
throw new TypeError('"issuer.protocol" must be "https:" or "http:"');
|
|
275
|
-
const
|
|
276
|
-
switch (e
|
|
269
|
+
const n = new URL(t.href);
|
|
270
|
+
switch (e?.algorithm) {
|
|
277
271
|
case void 0:
|
|
278
272
|
case "oidc":
|
|
279
|
-
|
|
273
|
+
n.pathname = `${n.pathname}/.well-known/openid-configuration`.replace("//", "/");
|
|
280
274
|
break;
|
|
281
275
|
case "oauth2":
|
|
282
|
-
|
|
276
|
+
n.pathname === "/" ? n.pathname = ".well-known/oauth-authorization-server" : n.pathname = `.well-known/oauth-authorization-server/${n.pathname}`.replace("//", "/");
|
|
283
277
|
break;
|
|
284
278
|
default:
|
|
285
279
|
throw new TypeError('"options.algorithm" must be "oidc" (default), or "oauth2"');
|
|
286
280
|
}
|
|
287
|
-
const o =
|
|
288
|
-
return o.set("accept", "application/json"), (
|
|
281
|
+
const o = W(e?.headers);
|
|
282
|
+
return o.set("accept", "application/json"), (e?.[G] || fetch)(n.href, {
|
|
289
283
|
headers: Object.fromEntries(o.entries()),
|
|
290
284
|
method: "GET",
|
|
291
285
|
redirect: "manual",
|
|
292
|
-
signal:
|
|
293
|
-
}).then(
|
|
286
|
+
signal: null
|
|
287
|
+
}).then(Z);
|
|
294
288
|
}
|
|
295
|
-
function
|
|
289
|
+
function w(t) {
|
|
296
290
|
return typeof t == "string" && t.length !== 0;
|
|
297
291
|
}
|
|
298
|
-
async function
|
|
292
|
+
async function tt(t, e) {
|
|
299
293
|
if (!(t instanceof URL))
|
|
300
294
|
throw new TypeError('"expectedIssuer" must be an instance of URL');
|
|
301
|
-
if (!
|
|
295
|
+
if (!V(e, Response))
|
|
302
296
|
throw new TypeError('"response" must be an instance of Response');
|
|
303
297
|
if (e.status !== 200)
|
|
304
298
|
throw new a('"response" is not a conform Authorization Server Metadata response');
|
|
305
|
-
|
|
306
|
-
let
|
|
299
|
+
X(e);
|
|
300
|
+
let n;
|
|
307
301
|
try {
|
|
308
|
-
|
|
302
|
+
n = await e.json();
|
|
309
303
|
} catch (o) {
|
|
310
304
|
throw new a('failed to parse "response" body as JSON', { cause: o });
|
|
311
305
|
}
|
|
312
|
-
if (!C(
|
|
306
|
+
if (!C(n))
|
|
313
307
|
throw new a('"response" body must be a top level object');
|
|
314
|
-
if (!
|
|
308
|
+
if (!w(n.issuer))
|
|
315
309
|
throw new a('"response" body "issuer" property must be a non-empty string');
|
|
316
|
-
if (new URL(
|
|
310
|
+
if (new URL(n.issuer).href !== t.href)
|
|
317
311
|
throw new a('"response" body "issuer" does not match "expectedIssuer"');
|
|
318
|
-
return
|
|
312
|
+
return n;
|
|
319
313
|
}
|
|
320
|
-
function
|
|
321
|
-
return
|
|
314
|
+
function Y() {
|
|
315
|
+
return T(crypto.getRandomValues(new Uint8Array(32)));
|
|
322
316
|
}
|
|
323
|
-
function
|
|
324
|
-
return
|
|
317
|
+
function nt() {
|
|
318
|
+
return Y();
|
|
325
319
|
}
|
|
326
|
-
function
|
|
327
|
-
return
|
|
320
|
+
function rt() {
|
|
321
|
+
return Y();
|
|
328
322
|
}
|
|
329
|
-
async function
|
|
330
|
-
if (!
|
|
323
|
+
async function ot(t) {
|
|
324
|
+
if (!w(t))
|
|
331
325
|
throw new TypeError('"codeVerifier" must be a non-empty string');
|
|
332
|
-
return
|
|
333
|
-
}
|
|
334
|
-
function nt(t) {
|
|
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 };
|
|
326
|
+
return T(await crypto.subtle.digest("SHA-256", k(t)));
|
|
342
327
|
}
|
|
343
|
-
function
|
|
328
|
+
function se(t) {
|
|
344
329
|
return encodeURIComponent(t).replace(/%20/g, "+");
|
|
345
330
|
}
|
|
346
|
-
function
|
|
347
|
-
const
|
|
348
|
-
return `Basic ${btoa(`${
|
|
331
|
+
function it(t, e) {
|
|
332
|
+
const n = se(t), o = se(e);
|
|
333
|
+
return `Basic ${btoa(`${n}:${o}`)}`;
|
|
349
334
|
}
|
|
350
|
-
function
|
|
335
|
+
function st(t) {
|
|
351
336
|
switch (t.algorithm.hash.name) {
|
|
352
337
|
case "SHA-256":
|
|
353
338
|
return "PS256";
|
|
@@ -356,10 +341,10 @@ function it(t) {
|
|
|
356
341
|
case "SHA-512":
|
|
357
342
|
return "PS512";
|
|
358
343
|
default:
|
|
359
|
-
throw new
|
|
344
|
+
throw new v("unsupported RsaHashedKeyAlgorithm hash name");
|
|
360
345
|
}
|
|
361
346
|
}
|
|
362
|
-
function
|
|
347
|
+
function at(t) {
|
|
363
348
|
switch (t.algorithm.hash.name) {
|
|
364
349
|
case "SHA-256":
|
|
365
350
|
return "RS256";
|
|
@@ -368,10 +353,10 @@ function st(t) {
|
|
|
368
353
|
case "SHA-512":
|
|
369
354
|
return "RS512";
|
|
370
355
|
default:
|
|
371
|
-
throw new
|
|
356
|
+
throw new v("unsupported RsaHashedKeyAlgorithm hash name");
|
|
372
357
|
}
|
|
373
358
|
}
|
|
374
|
-
function
|
|
359
|
+
function ct(t) {
|
|
375
360
|
switch (t.algorithm.namedCurve) {
|
|
376
361
|
case "P-256":
|
|
377
362
|
return "ES256";
|
|
@@ -380,257 +365,235 @@ function at(t) {
|
|
|
380
365
|
case "P-521":
|
|
381
366
|
return "ES512";
|
|
382
367
|
default:
|
|
383
|
-
throw new
|
|
368
|
+
throw new v("unsupported EcKeyAlgorithm namedCurve");
|
|
384
369
|
}
|
|
385
370
|
}
|
|
386
|
-
function
|
|
371
|
+
function ut(t) {
|
|
387
372
|
switch (t.algorithm.name) {
|
|
388
373
|
case "RSA-PSS":
|
|
389
|
-
return it(t);
|
|
390
|
-
case "RSASSA-PKCS1-v1_5":
|
|
391
374
|
return st(t);
|
|
392
|
-
case "
|
|
375
|
+
case "RSASSA-PKCS1-v1_5":
|
|
393
376
|
return at(t);
|
|
377
|
+
case "ECDSA":
|
|
378
|
+
return ct(t);
|
|
394
379
|
case "Ed25519":
|
|
395
380
|
case "Ed448":
|
|
396
381
|
return "EdDSA";
|
|
397
382
|
default:
|
|
398
|
-
throw new
|
|
383
|
+
throw new v("unsupported CryptoKey algorithm name");
|
|
399
384
|
}
|
|
400
385
|
}
|
|
401
|
-
function
|
|
402
|
-
const e = t
|
|
386
|
+
function K(t) {
|
|
387
|
+
const e = t?.[N];
|
|
403
388
|
return typeof e == "number" && Number.isFinite(e) ? e : 0;
|
|
404
389
|
}
|
|
405
|
-
function
|
|
406
|
-
const e = t
|
|
390
|
+
function ge(t) {
|
|
391
|
+
const e = t?.[Ke];
|
|
407
392
|
return typeof e == "number" && Number.isFinite(e) && Math.sign(e) !== -1 ? e : 30;
|
|
408
393
|
}
|
|
409
|
-
function
|
|
394
|
+
function Q() {
|
|
410
395
|
return Math.floor(Date.now() / 1e3);
|
|
411
396
|
}
|
|
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) {
|
|
397
|
+
function I(t) {
|
|
431
398
|
if (typeof t != "object" || t === null)
|
|
432
399
|
throw new TypeError('"as" must be an object');
|
|
433
|
-
if (!
|
|
400
|
+
if (!w(t.issuer))
|
|
434
401
|
throw new TypeError('"as.issuer" property must be a non-empty string');
|
|
435
402
|
return !0;
|
|
436
403
|
}
|
|
437
|
-
function
|
|
404
|
+
function j(t) {
|
|
438
405
|
if (typeof t != "object" || t === null)
|
|
439
406
|
throw new TypeError('"client" must be an object');
|
|
440
|
-
if (!
|
|
407
|
+
if (!w(t.client_id))
|
|
441
408
|
throw new TypeError('"client.client_id" property must be a non-empty string');
|
|
442
409
|
return !0;
|
|
443
410
|
}
|
|
444
|
-
function
|
|
445
|
-
if (!
|
|
411
|
+
function ae(t) {
|
|
412
|
+
if (!w(t))
|
|
446
413
|
throw new TypeError('"client.client_secret" property must be a non-empty string');
|
|
447
414
|
return t;
|
|
448
415
|
}
|
|
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) {
|
|
416
|
+
function ce(t, e) {
|
|
454
417
|
if (e !== void 0)
|
|
455
418
|
throw new TypeError(`"client.client_secret" property must not be provided when ${t} client authentication method is used.`);
|
|
456
419
|
}
|
|
457
|
-
async function lt(t, e,
|
|
458
|
-
switch (
|
|
420
|
+
async function lt(t, e, n, o, s) {
|
|
421
|
+
switch (n.delete("client_secret"), n.delete("client_assertion_type"), n.delete("client_assertion"), e.token_endpoint_auth_method) {
|
|
459
422
|
case void 0:
|
|
460
423
|
case "client_secret_basic": {
|
|
461
|
-
|
|
424
|
+
o.set("authorization", it(e.client_id, ae(e.client_secret)));
|
|
462
425
|
break;
|
|
463
426
|
}
|
|
464
427
|
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));
|
|
428
|
+
n.set("client_id", e.client_id), n.set("client_secret", ae(e.client_secret));
|
|
475
429
|
break;
|
|
476
430
|
}
|
|
431
|
+
case "private_key_jwt":
|
|
432
|
+
throw ce("private_key_jwt", e.client_secret), new TypeError('"options.clientPrivateKey" must be provided when "client.token_endpoint_auth_method" is "private_key_jwt"');
|
|
477
433
|
case "tls_client_auth":
|
|
478
434
|
case "self_signed_tls_client_auth":
|
|
479
435
|
case "none": {
|
|
480
|
-
|
|
436
|
+
ce(e.token_endpoint_auth_method, e.client_secret), e.token_endpoint_auth_method, n.set("client_id", e.client_id);
|
|
481
437
|
break;
|
|
482
438
|
}
|
|
483
439
|
default:
|
|
484
|
-
throw new
|
|
440
|
+
throw new v("unsupported client token_endpoint_auth_method");
|
|
485
441
|
}
|
|
486
442
|
}
|
|
487
|
-
async function
|
|
488
|
-
if (!
|
|
443
|
+
async function dt(t, e, n) {
|
|
444
|
+
if (!n.usages.includes("sign"))
|
|
489
445
|
throw new TypeError('CryptoKey instances used for signing assertions must include "sign" in their "usages"');
|
|
490
|
-
const o = `${k(
|
|
446
|
+
const o = `${T(k(JSON.stringify(t)))}.${T(k(JSON.stringify(e)))}`, s = T(await crypto.subtle.sign(Te(n), n, k(o)));
|
|
491
447
|
return `${o}.${s}`;
|
|
492
448
|
}
|
|
493
|
-
async function
|
|
494
|
-
const { privateKey: i, publicKey:
|
|
495
|
-
if (!
|
|
449
|
+
async function ht(t, e, n, o, s, r) {
|
|
450
|
+
const { privateKey: i, publicKey: c, nonce: f = pe.get(n.origin) } = e;
|
|
451
|
+
if (!Ye(i))
|
|
496
452
|
throw new TypeError('"DPoP.privateKey" must be a private CryptoKey');
|
|
497
|
-
if (!
|
|
453
|
+
if (!Qe(c))
|
|
498
454
|
throw new TypeError('"DPoP.publicKey" must be a public CryptoKey');
|
|
499
|
-
if (f !== void 0 && !
|
|
455
|
+
if (f !== void 0 && !w(f))
|
|
500
456
|
throw new TypeError('"DPoP.nonce" must be a non-empty string or undefined');
|
|
501
|
-
if (!
|
|
457
|
+
if (!c.extractable)
|
|
502
458
|
throw new TypeError('"DPoP.publicKey.extractable" must be true');
|
|
503
|
-
const
|
|
504
|
-
alg:
|
|
459
|
+
const y = Q() + s, p = {
|
|
460
|
+
alg: ut(i),
|
|
505
461
|
typ: "dpop+jwt",
|
|
506
|
-
jwk: await
|
|
507
|
-
}, {
|
|
508
|
-
iat:
|
|
509
|
-
jti:
|
|
462
|
+
jwk: await pt(c)
|
|
463
|
+
}, A = {
|
|
464
|
+
iat: y,
|
|
465
|
+
jti: Y(),
|
|
510
466
|
htm: o,
|
|
511
467
|
nonce: f,
|
|
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;
|
|
468
|
+
htu: `${n.origin}${n.pathname}`,
|
|
469
|
+
ath: r ? T(await crypto.subtle.digest("SHA-256", k(r))) : void 0
|
|
470
|
+
};
|
|
471
|
+
e[He]?.(p, A), t.set("dpop", await dt(p, A, i));
|
|
521
472
|
}
|
|
473
|
+
let D;
|
|
522
474
|
async function ft(t) {
|
|
523
|
-
|
|
475
|
+
const { kty: e, e: n, n: o, x: s, y: r, crv: i } = await crypto.subtle.exportKey("jwk", t), c = { kty: e, e: n, n: o, x: s, y: r, crv: i };
|
|
476
|
+
return D.set(t, c), c;
|
|
524
477
|
}
|
|
525
|
-
function pt(t
|
|
478
|
+
async function pt(t) {
|
|
479
|
+
return D || (D = /* @__PURE__ */ new WeakMap()), D.get(t) || ft(t);
|
|
480
|
+
}
|
|
481
|
+
function ue(t, e, n) {
|
|
526
482
|
if (typeof t != "string")
|
|
527
|
-
throw new TypeError(`"as.${e}" must be a string`);
|
|
483
|
+
throw n ? new TypeError(`"as.mtls_endpoint_aliases.${e}" must be a string`) : new TypeError(`"as.${e}" must be a string`);
|
|
528
484
|
return new URL(t);
|
|
529
485
|
}
|
|
530
|
-
function
|
|
531
|
-
return
|
|
486
|
+
function me(t, e, n = !1) {
|
|
487
|
+
return n && t.mtls_endpoint_aliases && e in t.mtls_endpoint_aliases ? ue(t.mtls_endpoint_aliases[e], e, n) : ue(t[e], e, n);
|
|
532
488
|
}
|
|
533
|
-
function
|
|
489
|
+
function ye(t, e) {
|
|
490
|
+
return !!(t.use_mtls_endpoint_aliases || e?.[Fe]);
|
|
491
|
+
}
|
|
492
|
+
function q(t) {
|
|
534
493
|
const e = t;
|
|
535
494
|
return typeof e != "object" || Array.isArray(e) || e === null ? !1 : e.error !== void 0;
|
|
536
495
|
}
|
|
537
|
-
async function wt(t, e,
|
|
538
|
-
if (!
|
|
496
|
+
async function wt(t, e, n, o, s, r) {
|
|
497
|
+
if (!w(t))
|
|
539
498
|
throw new TypeError('"accessToken" must be a non-empty string');
|
|
540
|
-
if (!(
|
|
499
|
+
if (!(n instanceof URL))
|
|
541
500
|
throw new TypeError('"url" must be an instance of URL');
|
|
542
|
-
return o =
|
|
501
|
+
return o = W(o), r?.DPoP === void 0 ? o.set("authorization", `Bearer ${t}`) : (await ht(o, r.DPoP, n, e.toUpperCase(), K({ [N]: r?.[N] }), t), o.set("authorization", `DPoP ${t}`)), (r?.[G] || fetch)(n.href, {
|
|
543
502
|
body: s,
|
|
544
503
|
headers: Object.fromEntries(o.entries()),
|
|
545
504
|
method: e,
|
|
546
505
|
redirect: "manual",
|
|
547
|
-
signal:
|
|
548
|
-
}).then(
|
|
506
|
+
signal: r?.signal ? Xe(r.signal) : null
|
|
507
|
+
}).then(Z);
|
|
549
508
|
}
|
|
550
|
-
async function gt(t, e,
|
|
551
|
-
|
|
552
|
-
const s =
|
|
553
|
-
return e.userinfo_signed_response_alg ?
|
|
509
|
+
async function gt(t, e, n, o) {
|
|
510
|
+
I(t), j(e);
|
|
511
|
+
const s = me(t, "userinfo_endpoint", ye(e, o)), r = W(o?.headers);
|
|
512
|
+
return e.userinfo_signed_response_alg ? r.set("accept", "application/jwt") : (r.set("accept", "application/json"), r.append("accept", "application/jwt")), wt(n, "GET", s, r, null, {
|
|
554
513
|
...o,
|
|
555
|
-
[
|
|
514
|
+
[N]: K(e)
|
|
556
515
|
});
|
|
557
516
|
}
|
|
558
|
-
async function mt(t, e,
|
|
559
|
-
return await lt(t, e, s,
|
|
517
|
+
async function mt(t, e, n, o, s, r, i) {
|
|
518
|
+
return await lt(t, e, s, r), r.set("content-type", "application/x-www-form-urlencoded;charset=UTF-8"), (i?.[G] || fetch)(o.href, {
|
|
560
519
|
body: s,
|
|
561
|
-
headers: Object.fromEntries(
|
|
562
|
-
method:
|
|
520
|
+
headers: Object.fromEntries(r.entries()),
|
|
521
|
+
method: n,
|
|
563
522
|
redirect: "manual",
|
|
564
|
-
signal:
|
|
565
|
-
}).then(
|
|
523
|
+
signal: null
|
|
524
|
+
}).then(Z);
|
|
566
525
|
}
|
|
567
|
-
async function
|
|
568
|
-
const
|
|
569
|
-
o.set("grant_type",
|
|
570
|
-
const i =
|
|
571
|
-
return i.set("accept", "application/json"), mt(t, e, "POST",
|
|
526
|
+
async function be(t, e, n, o, s) {
|
|
527
|
+
const r = me(t, "token_endpoint", ye(e, s));
|
|
528
|
+
o.set("grant_type", n);
|
|
529
|
+
const i = W(s?.headers);
|
|
530
|
+
return i.set("accept", "application/json"), mt(t, e, "POST", r, o, i, s);
|
|
572
531
|
}
|
|
573
|
-
async function yt(t, e,
|
|
574
|
-
if (
|
|
532
|
+
async function yt(t, e, n, o) {
|
|
533
|
+
if (I(t), j(e), !w(n))
|
|
575
534
|
throw new TypeError('"refreshToken" must be a non-empty string');
|
|
576
|
-
const s = new URLSearchParams(o
|
|
577
|
-
return s.set("refresh_token",
|
|
535
|
+
const s = new URLSearchParams(o?.additionalParameters);
|
|
536
|
+
return s.set("refresh_token", n), be(t, e, "refresh_token", s, o);
|
|
578
537
|
}
|
|
579
|
-
const
|
|
538
|
+
const _e = /* @__PURE__ */ new WeakMap();
|
|
580
539
|
function bt(t) {
|
|
581
540
|
if (!t.id_token)
|
|
582
541
|
return;
|
|
583
|
-
const e =
|
|
542
|
+
const e = _e.get(t);
|
|
584
543
|
if (!e)
|
|
585
544
|
throw new TypeError('"ref" was already garbage collected or did not resolve from the proper sources');
|
|
586
|
-
return e;
|
|
545
|
+
return e[0];
|
|
587
546
|
}
|
|
588
|
-
async function
|
|
589
|
-
if (
|
|
547
|
+
async function ve(t, e, n, o = !1, s = !1) {
|
|
548
|
+
if (I(t), j(e), !V(n, Response))
|
|
590
549
|
throw new TypeError('"response" must be an instance of Response');
|
|
591
|
-
if (
|
|
550
|
+
if (n.status !== 200) {
|
|
592
551
|
let i;
|
|
593
|
-
if (i = await
|
|
552
|
+
if (i = await Lt(n))
|
|
594
553
|
return i;
|
|
595
554
|
throw new a('"response" is not a conform Token Endpoint response');
|
|
596
555
|
}
|
|
597
|
-
|
|
598
|
-
let
|
|
556
|
+
X(n);
|
|
557
|
+
let r;
|
|
599
558
|
try {
|
|
600
|
-
|
|
559
|
+
r = await n.json();
|
|
601
560
|
} catch (i) {
|
|
602
561
|
throw new a('failed to parse "response" body as JSON', { cause: i });
|
|
603
562
|
}
|
|
604
|
-
if (!C(
|
|
563
|
+
if (!C(r))
|
|
605
564
|
throw new a('"response" body must be a top level object');
|
|
606
|
-
if (!
|
|
565
|
+
if (!w(r.access_token))
|
|
607
566
|
throw new a('"response" body "access_token" property must be a non-empty string');
|
|
608
|
-
if (!
|
|
567
|
+
if (!w(r.token_type))
|
|
609
568
|
throw new a('"response" body "token_type" property must be a non-empty string');
|
|
610
|
-
if (
|
|
611
|
-
throw new
|
|
612
|
-
if (
|
|
569
|
+
if (r.token_type = r.token_type.toLowerCase(), r.token_type !== "dpop" && r.token_type !== "bearer")
|
|
570
|
+
throw new v("unsupported `token_type` value");
|
|
571
|
+
if (r.expires_in !== void 0 && (typeof r.expires_in != "number" || r.expires_in <= 0))
|
|
613
572
|
throw new a('"response" body "expires_in" property must be a positive number');
|
|
614
|
-
if (!s &&
|
|
573
|
+
if (!s && r.refresh_token !== void 0 && !w(r.refresh_token))
|
|
615
574
|
throw new a('"response" body "refresh_token" property must be a non-empty string');
|
|
616
|
-
if (
|
|
575
|
+
if (r.scope !== void 0 && typeof r.scope != "string")
|
|
617
576
|
throw new a('"response" body "scope" property must be a string');
|
|
618
577
|
if (!o) {
|
|
619
|
-
if (
|
|
578
|
+
if (r.id_token !== void 0 && !w(r.id_token))
|
|
620
579
|
throw new a('"response" body "id_token" property must be a non-empty string');
|
|
621
|
-
if (
|
|
622
|
-
const { claims: i } = await
|
|
623
|
-
if (Array.isArray(i.aud) && i.aud.length !== 1
|
|
624
|
-
|
|
580
|
+
if (r.id_token) {
|
|
581
|
+
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), Ae, K(e), ge(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));
|
|
582
|
+
if (Array.isArray(i.aud) && i.aud.length !== 1) {
|
|
583
|
+
if (i.azp === void 0)
|
|
584
|
+
throw new a('ID Token "aud" (audience) claim includes additional untrusted audiences');
|
|
585
|
+
if (i.azp !== e.client_id)
|
|
586
|
+
throw new a('unexpected ID Token "azp" (authorized party) claim value');
|
|
587
|
+
}
|
|
625
588
|
if (i.auth_time !== void 0 && (!Number.isFinite(i.auth_time) || Math.sign(i.auth_time) !== 1))
|
|
626
589
|
throw new a('ID Token "auth_time" (authentication time) must be a positive number');
|
|
627
|
-
|
|
590
|
+
_e.set(r, [i, c]);
|
|
628
591
|
}
|
|
629
592
|
}
|
|
630
|
-
return
|
|
593
|
+
return r;
|
|
631
594
|
}
|
|
632
|
-
async function _t(t, e,
|
|
633
|
-
return
|
|
595
|
+
async function _t(t, e, n) {
|
|
596
|
+
return ve(t, e, n);
|
|
634
597
|
}
|
|
635
598
|
function vt(t, e) {
|
|
636
599
|
if (Array.isArray(e.claims.aud)) {
|
|
@@ -645,24 +608,24 @@ function St(t, e) {
|
|
|
645
608
|
throw new a('unexpected JWT "iss" (issuer) claim value');
|
|
646
609
|
return e;
|
|
647
610
|
}
|
|
648
|
-
const
|
|
611
|
+
const Se = /* @__PURE__ */ new WeakSet();
|
|
649
612
|
function Tt(t) {
|
|
650
|
-
return
|
|
613
|
+
return Se.add(t), t;
|
|
651
614
|
}
|
|
652
|
-
async function
|
|
653
|
-
if (
|
|
615
|
+
async function At(t, e, n, o, s, r) {
|
|
616
|
+
if (I(t), j(e), !Se.has(n))
|
|
654
617
|
throw new TypeError('"callbackParameters" must be an instance of URLSearchParams obtained from "validateAuthResponse()", or "validateJwtAuthResponse()');
|
|
655
|
-
if (!
|
|
618
|
+
if (!w(o))
|
|
656
619
|
throw new TypeError('"redirectUri" must be a non-empty string');
|
|
657
|
-
if (!
|
|
620
|
+
if (!w(s))
|
|
658
621
|
throw new TypeError('"codeVerifier" must be a non-empty string');
|
|
659
|
-
const i =
|
|
622
|
+
const i = S(n, "code");
|
|
660
623
|
if (!i)
|
|
661
624
|
throw new a('no authorization code in "callbackParameters"');
|
|
662
|
-
const
|
|
663
|
-
return
|
|
625
|
+
const c = new URLSearchParams(r?.additionalParameters);
|
|
626
|
+
return c.set("redirect_uri", o), c.set("code_verifier", s), c.set("code", i), be(t, e, "authorization_code", c, r);
|
|
664
627
|
}
|
|
665
|
-
const
|
|
628
|
+
const kt = {
|
|
666
629
|
aud: "audience",
|
|
667
630
|
c_hash: "code hash",
|
|
668
631
|
client_id: "client id",
|
|
@@ -678,28 +641,28 @@ const Et = {
|
|
|
678
641
|
htu: "http uri",
|
|
679
642
|
cnf: "confirmation"
|
|
680
643
|
};
|
|
681
|
-
function
|
|
682
|
-
for (const
|
|
683
|
-
if (e.claims[
|
|
684
|
-
throw new a(`JWT "${
|
|
644
|
+
function Et(t, e) {
|
|
645
|
+
for (const n of t)
|
|
646
|
+
if (e.claims[n] === void 0)
|
|
647
|
+
throw new a(`JWT "${n}" (${kt[n]}) claim missing`);
|
|
685
648
|
return e;
|
|
686
649
|
}
|
|
687
|
-
const Rt = Symbol(),
|
|
688
|
-
async function Pt(t, e,
|
|
689
|
-
const
|
|
690
|
-
if (
|
|
691
|
-
return
|
|
692
|
-
if (!
|
|
650
|
+
const Rt = Symbol(), $ = Symbol();
|
|
651
|
+
async function Pt(t, e, n, o, s) {
|
|
652
|
+
const r = await ve(t, e, n);
|
|
653
|
+
if (q(r))
|
|
654
|
+
return r;
|
|
655
|
+
if (!w(r.id_token))
|
|
693
656
|
throw new a('"response" body "id_token" property must be a non-empty string');
|
|
694
|
-
s ?? (s = e.default_max_age ??
|
|
695
|
-
const i = bt(
|
|
696
|
-
if ((e.require_auth_time || s !==
|
|
657
|
+
s ?? (s = e.default_max_age ?? $);
|
|
658
|
+
const i = bt(r);
|
|
659
|
+
if ((e.require_auth_time || s !== $) && i.auth_time === void 0)
|
|
697
660
|
throw new a('ID Token "auth_time" (authentication time) claim missing');
|
|
698
|
-
if (s !==
|
|
661
|
+
if (s !== $) {
|
|
699
662
|
if (typeof s != "number" || s < 0)
|
|
700
663
|
throw new TypeError('"maxAge" must be a non-negative number');
|
|
701
|
-
const
|
|
702
|
-
if (i.auth_time + s <
|
|
664
|
+
const c = Q() + K(e), f = ge(e);
|
|
665
|
+
if (i.auth_time + s < c - f)
|
|
703
666
|
throw new a("too much time has elapsed since the last End-User authentication");
|
|
704
667
|
}
|
|
705
668
|
switch (o) {
|
|
@@ -709,22 +672,22 @@ async function Pt(t, e, r, o, s) {
|
|
|
709
672
|
throw new a('unexpected ID Token "nonce" claim value');
|
|
710
673
|
break;
|
|
711
674
|
default:
|
|
712
|
-
if (!
|
|
675
|
+
if (!w(o))
|
|
713
676
|
throw new TypeError('"expectedNonce" must be a non-empty string');
|
|
714
677
|
if (i.nonce === void 0)
|
|
715
678
|
throw new a('ID Token "nonce" claim missing');
|
|
716
679
|
if (i.nonce !== o)
|
|
717
680
|
throw new a('unexpected ID Token "nonce" claim value');
|
|
718
681
|
}
|
|
719
|
-
return
|
|
682
|
+
return r;
|
|
720
683
|
}
|
|
721
|
-
function
|
|
684
|
+
function X(t) {
|
|
722
685
|
if (t.bodyUsed)
|
|
723
686
|
throw new TypeError('"response" body has been used already');
|
|
724
687
|
}
|
|
725
|
-
async function
|
|
688
|
+
async function Lt(t) {
|
|
726
689
|
if (t.status > 399 && t.status < 500) {
|
|
727
|
-
|
|
690
|
+
X(t);
|
|
728
691
|
try {
|
|
729
692
|
const e = await t.json();
|
|
730
693
|
if (C(e) && typeof e.error == "string" && e.error.length)
|
|
@@ -746,10 +709,10 @@ function Ut(t) {
|
|
|
746
709
|
case "P-521":
|
|
747
710
|
return "SHA-512";
|
|
748
711
|
default:
|
|
749
|
-
throw new
|
|
712
|
+
throw new v();
|
|
750
713
|
}
|
|
751
714
|
}
|
|
752
|
-
function
|
|
715
|
+
function Te(t) {
|
|
753
716
|
switch (t.algorithm.name) {
|
|
754
717
|
case "ECDSA":
|
|
755
718
|
return {
|
|
@@ -766,7 +729,7 @@ function Ee(t) {
|
|
|
766
729
|
saltLength: parseInt(t.algorithm.hash.name.slice(-3), 10) >> 3
|
|
767
730
|
};
|
|
768
731
|
default:
|
|
769
|
-
throw new
|
|
732
|
+
throw new v();
|
|
770
733
|
}
|
|
771
734
|
case "RSASSA-PKCS1-v1_5":
|
|
772
735
|
return le(t.algorithm), t.algorithm.name;
|
|
@@ -774,42 +737,45 @@ function Ee(t) {
|
|
|
774
737
|
case "Ed25519":
|
|
775
738
|
return t.algorithm.name;
|
|
776
739
|
}
|
|
777
|
-
throw new
|
|
740
|
+
throw new v();
|
|
778
741
|
}
|
|
779
742
|
const Ae = Symbol();
|
|
780
|
-
async function
|
|
781
|
-
const
|
|
782
|
-
if (
|
|
783
|
-
throw new
|
|
784
|
-
|
|
743
|
+
async function xt(t, e, n, o) {
|
|
744
|
+
const s = `${t}.${e}`;
|
|
745
|
+
if (!await crypto.subtle.verify(Te(n), n, o, k(s)))
|
|
746
|
+
throw new a("JWT signature verification failed");
|
|
747
|
+
}
|
|
748
|
+
async function Ct(t, e, n, o, s, r) {
|
|
749
|
+
let { 0: i, 1: c, 2: f, length: y } = t.split(".");
|
|
750
|
+
if (y === 5)
|
|
751
|
+
if (r !== void 0)
|
|
752
|
+
t = await r(t), { 0: i, 1: c, 2: f, length: y } = t.split(".");
|
|
753
|
+
else
|
|
754
|
+
throw new v("JWE structure JWTs are not supported");
|
|
755
|
+
if (y !== 3)
|
|
785
756
|
throw new a("Invalid JWT");
|
|
786
|
-
let
|
|
757
|
+
let p;
|
|
787
758
|
try {
|
|
788
|
-
|
|
789
|
-
} catch (
|
|
790
|
-
throw new a("failed to parse JWT Header body as base64url encoded JSON", { cause:
|
|
759
|
+
p = JSON.parse(k(T(i)));
|
|
760
|
+
} catch (l) {
|
|
761
|
+
throw new a("failed to parse JWT Header body as base64url encoded JSON", { cause: l });
|
|
791
762
|
}
|
|
792
|
-
if (!C(
|
|
763
|
+
if (!C(p))
|
|
793
764
|
throw new a("JWT Header must be a top level object");
|
|
794
|
-
if (e(
|
|
765
|
+
if (e(p), p.crit !== void 0)
|
|
795
766
|
throw new a('unexpected JWT "crit" header parameter');
|
|
796
|
-
const
|
|
767
|
+
const A = T(f);
|
|
797
768
|
let b;
|
|
798
|
-
|
|
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");
|
|
803
|
-
}
|
|
769
|
+
n !== Ae && (b = await n(p), await xt(i, c, b, A));
|
|
804
770
|
let h;
|
|
805
771
|
try {
|
|
806
|
-
h = JSON.parse(
|
|
807
|
-
} catch (
|
|
808
|
-
throw new a("failed to parse JWT Payload body as base64url encoded JSON", { cause:
|
|
772
|
+
h = JSON.parse(k(T(c)));
|
|
773
|
+
} catch (l) {
|
|
774
|
+
throw new a("failed to parse JWT Payload body as base64url encoded JSON", { cause: l });
|
|
809
775
|
}
|
|
810
776
|
if (!C(h))
|
|
811
777
|
throw new a("JWT Payload must be a top level object");
|
|
812
|
-
const R =
|
|
778
|
+
const R = Q() + o;
|
|
813
779
|
if (h.exp !== void 0) {
|
|
814
780
|
if (typeof h.exp != "number")
|
|
815
781
|
throw new a('unexpected JWT "exp" (expiration time) claim type');
|
|
@@ -828,209 +794,173 @@ async function Lt(t, e, r, o, s) {
|
|
|
828
794
|
}
|
|
829
795
|
if (h.aud !== void 0 && typeof h.aud != "string" && !Array.isArray(h.aud))
|
|
830
796
|
throw new a('unexpected JWT "aud" (audience) claim type');
|
|
831
|
-
return { header:
|
|
797
|
+
return { header: p, claims: h, signature: A, key: b, jwt: t };
|
|
832
798
|
}
|
|
833
|
-
function
|
|
799
|
+
function It(t, e, n) {
|
|
834
800
|
if (t !== void 0) {
|
|
835
|
-
if (
|
|
801
|
+
if (n.alg !== t)
|
|
836
802
|
throw new a('unexpected JWT "alg" header parameter');
|
|
837
803
|
return;
|
|
838
804
|
}
|
|
839
805
|
if (Array.isArray(e)) {
|
|
840
|
-
if (!e.includes(
|
|
806
|
+
if (!e.includes(n.alg))
|
|
841
807
|
throw new a('unexpected JWT "alg" header parameter');
|
|
842
808
|
return;
|
|
843
809
|
}
|
|
844
|
-
if (
|
|
810
|
+
if (n.alg !== "RS256")
|
|
845
811
|
throw new a('unexpected JWT "alg" header parameter');
|
|
846
812
|
}
|
|
847
|
-
function
|
|
848
|
-
const { 0:
|
|
813
|
+
function S(t, e) {
|
|
814
|
+
const { 0: n, length: o } = t.getAll(e);
|
|
849
815
|
if (o > 1)
|
|
850
816
|
throw new a(`"${e}" parameter must be provided only once`);
|
|
851
|
-
return
|
|
817
|
+
return n;
|
|
852
818
|
}
|
|
853
|
-
const
|
|
854
|
-
function
|
|
855
|
-
if (
|
|
819
|
+
const jt = Symbol(), Ot = Symbol();
|
|
820
|
+
function zt(t, e, n, o) {
|
|
821
|
+
if (I(t), j(e), n instanceof URL && (n = n.searchParams), !(n instanceof URLSearchParams))
|
|
856
822
|
throw new TypeError('"parameters" must be an instance of URLSearchParams, or URL');
|
|
857
|
-
if (
|
|
823
|
+
if (S(n, "response"))
|
|
858
824
|
throw new a('"parameters" contains a JARM response, use validateJwtAuthResponse() instead of validateAuthResponse()');
|
|
859
|
-
const s =
|
|
825
|
+
const s = S(n, "iss"), r = S(n, "state");
|
|
860
826
|
if (!s && t.authorization_response_iss_parameter_supported)
|
|
861
827
|
throw new a('response parameter "iss" (issuer) missing');
|
|
862
828
|
if (s && s !== t.issuer)
|
|
863
829
|
throw new a('unexpected "iss" (issuer) response parameter value');
|
|
864
830
|
switch (o) {
|
|
865
831
|
case void 0:
|
|
866
|
-
case
|
|
867
|
-
if (
|
|
832
|
+
case Ot:
|
|
833
|
+
if (r !== void 0)
|
|
868
834
|
throw new a('unexpected "state" response parameter encountered');
|
|
869
835
|
break;
|
|
870
|
-
case
|
|
836
|
+
case jt:
|
|
871
837
|
break;
|
|
872
838
|
default:
|
|
873
|
-
if (!
|
|
839
|
+
if (!w(o))
|
|
874
840
|
throw new a('"expectedState" must be a non-empty string');
|
|
875
|
-
if (
|
|
841
|
+
if (r === void 0)
|
|
876
842
|
throw new a('response parameter "state" missing');
|
|
877
|
-
if (
|
|
843
|
+
if (r !== o)
|
|
878
844
|
throw new a('unexpected "state" response parameter value');
|
|
879
845
|
}
|
|
880
|
-
const i =
|
|
846
|
+
const i = S(n, "error");
|
|
881
847
|
if (i)
|
|
882
848
|
return {
|
|
883
849
|
error: i,
|
|
884
|
-
error_description:
|
|
885
|
-
error_uri:
|
|
850
|
+
error_description: S(n, "error_description"),
|
|
851
|
+
error_uri: S(n, "error_uri")
|
|
886
852
|
};
|
|
887
|
-
const
|
|
888
|
-
if (
|
|
889
|
-
throw new
|
|
890
|
-
return Tt(new URLSearchParams(
|
|
891
|
-
}
|
|
892
|
-
function Ot({
|
|
893
|
-
handleCallback: t
|
|
894
|
-
}) {
|
|
895
|
-
const [e, r] = Je(null), o = He(), s = Oe(!1);
|
|
896
|
-
return Ne(() => {
|
|
897
|
-
s.current || (s.current = !0, t().then((n) => {
|
|
898
|
-
o(n);
|
|
899
|
-
}).catch((n) => {
|
|
900
|
-
K.error(n), r(n);
|
|
901
|
-
}));
|
|
902
|
-
}, [o, t]), e ? /* @__PURE__ */ E.jsx(
|
|
903
|
-
De,
|
|
904
|
-
{
|
|
905
|
-
category: "Error",
|
|
906
|
-
title: "Authentication Error",
|
|
907
|
-
message: /* @__PURE__ */ E.jsxs(E.Fragment, { children: [
|
|
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
|
-
] })
|
|
912
|
-
}
|
|
913
|
-
) : /* @__PURE__ */ E.jsx("div", { className: "grid h-full place-items-center", children: /* @__PURE__ */ E.jsx(Ke, {}) });
|
|
914
|
-
}
|
|
915
|
-
class U extends Error {
|
|
853
|
+
const c = S(n, "id_token"), f = S(n, "token");
|
|
854
|
+
if (c !== void 0 || f !== void 0)
|
|
855
|
+
throw new v("implicit and hybrid flows are not supported");
|
|
856
|
+
return Tt(new URLSearchParams(n));
|
|
916
857
|
}
|
|
917
|
-
class
|
|
918
|
-
|
|
919
|
-
|
|
858
|
+
class Jt {
|
|
859
|
+
getRoutes() {
|
|
860
|
+
return [
|
|
861
|
+
{
|
|
862
|
+
path: "/signout",
|
|
863
|
+
element: /* @__PURE__ */ L.jsx(Ie, {})
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
path: "/signin",
|
|
867
|
+
element: /* @__PURE__ */ L.jsx(je, {})
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
path: "/signup",
|
|
871
|
+
element: /* @__PURE__ */ L.jsx(Oe, {})
|
|
872
|
+
}
|
|
873
|
+
];
|
|
920
874
|
}
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
875
|
+
async getSidebar(e) {
|
|
876
|
+
return e.startsWith("/settings") ? [
|
|
877
|
+
{
|
|
878
|
+
type: "link",
|
|
879
|
+
label: "Logout",
|
|
880
|
+
href: "/signout"
|
|
881
|
+
}
|
|
882
|
+
] : [];
|
|
926
883
|
}
|
|
927
|
-
|
|
884
|
+
getProfileMenuItems() {
|
|
928
885
|
return [
|
|
929
|
-
...super.getRoutes(),
|
|
930
886
|
{
|
|
931
|
-
|
|
932
|
-
|
|
887
|
+
label: "Logout",
|
|
888
|
+
path: "/signout",
|
|
889
|
+
category: "bottom",
|
|
890
|
+
icon: Ce
|
|
933
891
|
}
|
|
934
892
|
];
|
|
935
893
|
}
|
|
936
894
|
}
|
|
937
|
-
|
|
895
|
+
function Dt(t, e, n = "/") {
|
|
896
|
+
return t.startsWith(e) ? n !== "/" && t.startsWith(e + n) ? t.slice(e.length + n.length) : t.slice(e.length) : t;
|
|
897
|
+
}
|
|
898
|
+
function Nt({
|
|
899
|
+
handleCallback: t
|
|
900
|
+
}) {
|
|
901
|
+
const { options: e } = Je(), n = xe({
|
|
902
|
+
retry: !1,
|
|
903
|
+
queryKey: ["oauth-callback"],
|
|
904
|
+
queryFn: async () => {
|
|
905
|
+
try {
|
|
906
|
+
return fe(
|
|
907
|
+
Dt(
|
|
908
|
+
await t(),
|
|
909
|
+
window.location.origin,
|
|
910
|
+
e.basePath
|
|
911
|
+
)
|
|
912
|
+
);
|
|
913
|
+
} catch (o) {
|
|
914
|
+
throw new Le("Could not validate user", {
|
|
915
|
+
cause: o,
|
|
916
|
+
title: "Authentication Error",
|
|
917
|
+
developerHint: "Check the configuration of your authorization provider and ensure all settings such as the callback URL are configured correctly."
|
|
918
|
+
});
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
});
|
|
922
|
+
return /* @__PURE__ */ L.jsx(ze, { to: n.data });
|
|
923
|
+
}
|
|
924
|
+
class E extends Error {
|
|
925
|
+
}
|
|
926
|
+
class de extends E {
|
|
927
|
+
constructor(e, n, o) {
|
|
928
|
+
super(e, o), this.error = n;
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
const F = "code-verifier", M = "oauth-state", he = "/oauth/callback";
|
|
932
|
+
class Wt extends Jt {
|
|
933
|
+
client;
|
|
934
|
+
issuer;
|
|
935
|
+
authorizationServer;
|
|
936
|
+
callbackUrlPath;
|
|
937
|
+
onAuthorizationUrl;
|
|
938
|
+
redirectToAfterSignUp;
|
|
939
|
+
redirectToAfterSignIn;
|
|
940
|
+
redirectToAfterSignOut;
|
|
941
|
+
audience;
|
|
942
|
+
scopes;
|
|
938
943
|
constructor({
|
|
939
944
|
issuer: e,
|
|
940
|
-
audience:
|
|
945
|
+
audience: n,
|
|
941
946
|
clientId: o,
|
|
942
947
|
redirectToAfterSignUp: s,
|
|
943
|
-
redirectToAfterSignIn:
|
|
944
|
-
redirectToAfterSignOut: i
|
|
948
|
+
redirectToAfterSignIn: r,
|
|
949
|
+
redirectToAfterSignOut: i = "/",
|
|
950
|
+
basePath: c,
|
|
951
|
+
scopes: f
|
|
945
952
|
}) {
|
|
946
|
-
|
|
947
|
-
_(this, "issuer");
|
|
948
|
-
_(this, "authorizationServer");
|
|
949
|
-
_(this, "callbackUrlPath", "/oauth/callback");
|
|
950
|
-
_(this, "logoutRedirectUrlPath", "/");
|
|
951
|
-
_(this, "onAuthorizationUrl");
|
|
952
|
-
_(this, "redirectToAfterSignUp");
|
|
953
|
-
_(this, "redirectToAfterSignIn");
|
|
954
|
-
_(this, "redirectToAfterSignOut");
|
|
955
|
-
_(this, "audience");
|
|
956
|
-
_(this, "signOut", async () => {
|
|
957
|
-
z.setState({
|
|
958
|
-
isAuthenticated: !1,
|
|
959
|
-
isPending: !1,
|
|
960
|
-
profile: void 0
|
|
961
|
-
}), sessionStorage.clear();
|
|
962
|
-
const e = await this.getAuthServer(), r = new URL(
|
|
963
|
-
window.location.origin + this.redirectToAfterSignOut
|
|
964
|
-
);
|
|
965
|
-
r.pathname = this.logoutRedirectUrlPath;
|
|
966
|
-
let o;
|
|
967
|
-
e.end_session_endpoint ? (o = new URL(e.end_session_endpoint), o.searchParams.set(
|
|
968
|
-
"post_logout_redirect_uri",
|
|
969
|
-
r.toString()
|
|
970
|
-
)) : o = r;
|
|
971
|
-
});
|
|
972
|
-
_(this, "handleCallback", async () => {
|
|
973
|
-
const e = new URL(window.location.href), r = e.searchParams.get("state"), o = sessionStorage.getItem(V);
|
|
974
|
-
if (sessionStorage.removeItem(V), !o)
|
|
975
|
-
throw new U("No code verifier found in state.");
|
|
976
|
-
const s = await this.getAuthServer(), n = Jt(
|
|
977
|
-
s,
|
|
978
|
-
this.client,
|
|
979
|
-
e.searchParams,
|
|
980
|
-
r ?? void 0
|
|
981
|
-
);
|
|
982
|
-
if (Z(n))
|
|
983
|
-
throw K.error("Error validating OAuth response", n), new de(
|
|
984
|
-
"Error validating OAuth response",
|
|
985
|
-
n
|
|
986
|
-
);
|
|
987
|
-
const i = new URL(e);
|
|
988
|
-
i.pathname = this.redirectToAfterSignIn, i.search = "";
|
|
989
|
-
const u = await kt(
|
|
990
|
-
s,
|
|
991
|
-
this.client,
|
|
992
|
-
n,
|
|
993
|
-
i.toString(),
|
|
994
|
-
o
|
|
995
|
-
), f = await Pt(
|
|
996
|
-
s,
|
|
997
|
-
this.client,
|
|
998
|
-
u
|
|
999
|
-
);
|
|
1000
|
-
this.setTokensFromResponse(f);
|
|
1001
|
-
const m = await this.getAccessToken(), b = await (await gt(
|
|
1002
|
-
s,
|
|
1003
|
-
this.client,
|
|
1004
|
-
m
|
|
1005
|
-
)).json(), h = {
|
|
1006
|
-
sub: b.sub,
|
|
1007
|
-
email: b.email,
|
|
1008
|
-
name: b.name,
|
|
1009
|
-
emailVerified: b.email_verified ?? !1,
|
|
1010
|
-
pictureUrl: b.picture
|
|
1011
|
-
};
|
|
1012
|
-
z.setState({
|
|
1013
|
-
isAuthenticated: !0,
|
|
1014
|
-
isPending: !1,
|
|
1015
|
-
profile: h
|
|
1016
|
-
}), sessionStorage.setItem(
|
|
1017
|
-
"profile-state",
|
|
1018
|
-
JSON.stringify(z.getState().profile)
|
|
1019
|
-
);
|
|
1020
|
-
const R = sessionStorage.getItem("redirect-to") ?? "/";
|
|
1021
|
-
return sessionStorage.removeItem("redirect-to"), R;
|
|
1022
|
-
});
|
|
1023
|
-
this.client = {
|
|
953
|
+
super(), this.client = {
|
|
1024
954
|
client_id: o,
|
|
1025
955
|
token_endpoint_auth_method: "none"
|
|
1026
|
-
}, this.audience =
|
|
956
|
+
}, this.audience = n, this.issuer = e, this.callbackUrlPath = fe(c, he), this.scopes = f ?? ["openid", "profile", "email"], this.redirectToAfterSignUp = s, this.redirectToAfterSignIn = r, this.redirectToAfterSignOut = i;
|
|
1027
957
|
}
|
|
1028
958
|
async getAuthServer() {
|
|
1029
959
|
if (!this.authorizationServer) {
|
|
1030
|
-
const e = new URL(this.issuer),
|
|
1031
|
-
this.authorizationServer = await
|
|
960
|
+
const e = new URL(this.issuer), n = await et(e);
|
|
961
|
+
this.authorizationServer = await tt(
|
|
1032
962
|
e,
|
|
1033
|
-
|
|
963
|
+
n
|
|
1034
964
|
);
|
|
1035
965
|
}
|
|
1036
966
|
return this.authorizationServer;
|
|
@@ -1040,100 +970,170 @@ class zt {
|
|
|
1040
970
|
* @param response
|
|
1041
971
|
*/
|
|
1042
972
|
setTokensFromResponse(e) {
|
|
1043
|
-
if (
|
|
1044
|
-
throw
|
|
973
|
+
if (q(e))
|
|
974
|
+
throw oe.error("Bad Token Response", e), new de("Bad Token Response", e);
|
|
1045
975
|
if (!e.expires_in)
|
|
1046
|
-
throw new
|
|
1047
|
-
const
|
|
976
|
+
throw new E("No expires_in in response");
|
|
977
|
+
const n = {
|
|
1048
978
|
accessToken: e.access_token,
|
|
1049
979
|
refreshToken: e.refresh_token,
|
|
980
|
+
idToken: e.id_token,
|
|
1050
981
|
expiresOn: new Date(Date.now() + e.expires_in * 1e3),
|
|
1051
982
|
tokenType: e.token_type
|
|
1052
983
|
};
|
|
1053
|
-
|
|
984
|
+
x.setState({
|
|
985
|
+
providerData: n
|
|
986
|
+
});
|
|
1054
987
|
}
|
|
1055
988
|
async signUp({ redirectTo: e } = {}) {
|
|
1056
989
|
return this.authorize({
|
|
1057
|
-
redirectTo: e ??
|
|
990
|
+
redirectTo: this.redirectToAfterSignUp ?? e ?? "/",
|
|
1058
991
|
isSignUp: !0
|
|
1059
992
|
});
|
|
1060
993
|
}
|
|
1061
994
|
async signIn({ redirectTo: e } = {}) {
|
|
1062
995
|
return this.authorize({
|
|
1063
|
-
redirectTo: e ??
|
|
996
|
+
redirectTo: this.redirectToAfterSignIn ?? e ?? "/"
|
|
1064
997
|
});
|
|
1065
998
|
}
|
|
1066
999
|
async authorize({
|
|
1067
1000
|
redirectTo: e,
|
|
1068
|
-
isSignUp:
|
|
1001
|
+
isSignUp: n = !1
|
|
1069
1002
|
}) {
|
|
1070
|
-
var m, y;
|
|
1071
1003
|
const o = "S256", s = await this.getAuthServer();
|
|
1072
1004
|
if (!s.authorization_endpoint)
|
|
1073
|
-
throw new
|
|
1074
|
-
const
|
|
1075
|
-
sessionStorage.setItem(
|
|
1076
|
-
const
|
|
1005
|
+
throw new E("No authorization endpoint");
|
|
1006
|
+
const r = nt(), i = await ot(r);
|
|
1007
|
+
sessionStorage.setItem(F, r);
|
|
1008
|
+
const c = new URL(
|
|
1077
1009
|
s.authorization_endpoint
|
|
1078
1010
|
);
|
|
1079
1011
|
sessionStorage.setItem("redirect-to", e);
|
|
1080
1012
|
const f = new URL(window.location.origin);
|
|
1081
|
-
|
|
1013
|
+
f.pathname = this.callbackUrlPath, f.search = "", c.searchParams.set("client_id", this.client.client_id), c.searchParams.set("redirect_uri", f.toString()), c.searchParams.set("response_type", "code"), c.searchParams.set("scope", this.scopes.join(" ")), c.searchParams.set("code_challenge", i), c.searchParams.set(
|
|
1082
1014
|
"code_challenge_method",
|
|
1083
1015
|
o
|
|
1084
|
-
), this.audience &&
|
|
1085
|
-
isSignIn: !
|
|
1086
|
-
isSignUp:
|
|
1087
|
-
})
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
}
|
|
1091
|
-
location.href = u.href;
|
|
1016
|
+
), this.audience && c.searchParams.set("audience", this.audience), this.onAuthorizationUrl?.(c, {
|
|
1017
|
+
isSignIn: !n,
|
|
1018
|
+
isSignUp: n
|
|
1019
|
+
});
|
|
1020
|
+
const y = rt();
|
|
1021
|
+
sessionStorage.setItem(M, y), c.searchParams.set("state", y), location.href = c.href;
|
|
1092
1022
|
}
|
|
1093
1023
|
async getAccessToken() {
|
|
1094
|
-
const e = await this.getAuthServer(),
|
|
1095
|
-
if (!
|
|
1096
|
-
throw new
|
|
1097
|
-
const o =
|
|
1098
|
-
if (o.expiresOn < /* @__PURE__ */ new Date()) {
|
|
1024
|
+
const e = await this.getAuthServer(), { providerData: n } = x.getState();
|
|
1025
|
+
if (!n)
|
|
1026
|
+
throw new E("User is not authenticated");
|
|
1027
|
+
const o = n;
|
|
1028
|
+
if (new Date(o.expiresOn) < /* @__PURE__ */ new Date()) {
|
|
1099
1029
|
if (!o.refreshToken)
|
|
1100
|
-
return
|
|
1030
|
+
return x.setState({
|
|
1031
|
+
isAuthenticated: !1,
|
|
1032
|
+
isPending: !1,
|
|
1033
|
+
profile: null,
|
|
1034
|
+
providerData: null
|
|
1035
|
+
}), "";
|
|
1101
1036
|
const s = await yt(
|
|
1102
1037
|
e,
|
|
1103
1038
|
this.client,
|
|
1104
1039
|
o.refreshToken
|
|
1105
|
-
),
|
|
1040
|
+
), r = await _t(
|
|
1106
1041
|
e,
|
|
1107
1042
|
this.client,
|
|
1108
1043
|
s
|
|
1109
1044
|
);
|
|
1110
|
-
if (!
|
|
1111
|
-
throw new
|
|
1112
|
-
return this.setTokensFromResponse(
|
|
1045
|
+
if (!r.access_token)
|
|
1046
|
+
throw new E("No access token in response");
|
|
1047
|
+
return this.setTokensFromResponse(r), r.access_token.toString();
|
|
1113
1048
|
} else
|
|
1114
1049
|
return o.accessToken;
|
|
1115
1050
|
}
|
|
1116
|
-
|
|
1117
|
-
const
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1051
|
+
signRequest = async (e) => {
|
|
1052
|
+
const n = await this.getAccessToken();
|
|
1053
|
+
return e.headers.set("Authorization", `Bearer ${n}`), e;
|
|
1054
|
+
};
|
|
1055
|
+
signOut = async () => {
|
|
1056
|
+
x.setState({
|
|
1057
|
+
isAuthenticated: !1,
|
|
1058
|
+
isPending: !1,
|
|
1059
|
+
profile: void 0,
|
|
1060
|
+
providerData: void 0
|
|
1061
|
+
});
|
|
1062
|
+
const e = await this.getAuthServer(), n = new URL(
|
|
1063
|
+
window.location.origin + this.redirectToAfterSignOut
|
|
1064
|
+
);
|
|
1065
|
+
n.pathname = this.callbackUrlPath;
|
|
1066
|
+
let o;
|
|
1067
|
+
e.end_session_endpoint ? (o = new URL(e.end_session_endpoint), o.searchParams.set(
|
|
1068
|
+
"post_logout_redirect_uri",
|
|
1069
|
+
n.toString()
|
|
1070
|
+
)) : o = n;
|
|
1071
|
+
};
|
|
1072
|
+
handleCallback = async () => {
|
|
1073
|
+
const e = new URL(window.location.href), n = e.searchParams.get("state"), o = sessionStorage.getItem(M);
|
|
1074
|
+
if (sessionStorage.removeItem(M), n !== o)
|
|
1075
|
+
throw new E("Invalid state parameter");
|
|
1076
|
+
const s = sessionStorage.getItem(F);
|
|
1077
|
+
if (sessionStorage.removeItem(F), !s)
|
|
1078
|
+
throw new E("No code verifier found in state.");
|
|
1079
|
+
const r = await this.getAuthServer(), i = zt(
|
|
1080
|
+
r,
|
|
1081
|
+
this.client,
|
|
1082
|
+
e.searchParams,
|
|
1083
|
+
n ?? void 0
|
|
1084
|
+
);
|
|
1085
|
+
if (q(i))
|
|
1086
|
+
throw oe.error("Error validating OAuth response", i), new de(
|
|
1087
|
+
"Error validating OAuth response",
|
|
1088
|
+
i
|
|
1089
|
+
);
|
|
1090
|
+
const c = new URL(e);
|
|
1091
|
+
c.pathname = this.callbackUrlPath, c.search = "";
|
|
1092
|
+
const f = await At(
|
|
1093
|
+
r,
|
|
1094
|
+
this.client,
|
|
1095
|
+
i,
|
|
1096
|
+
c.toString(),
|
|
1097
|
+
s
|
|
1098
|
+
), y = await Pt(
|
|
1099
|
+
r,
|
|
1100
|
+
this.client,
|
|
1101
|
+
f
|
|
1102
|
+
);
|
|
1103
|
+
this.setTokensFromResponse(y);
|
|
1104
|
+
const p = await this.getAccessToken(), b = await (await gt(
|
|
1105
|
+
r,
|
|
1106
|
+
this.client,
|
|
1107
|
+
p
|
|
1108
|
+
)).json(), h = {
|
|
1109
|
+
sub: b.sub,
|
|
1110
|
+
email: b.email,
|
|
1111
|
+
name: b.name,
|
|
1112
|
+
emailVerified: b.email_verified ?? !1,
|
|
1113
|
+
pictureUrl: b.picture
|
|
1114
|
+
};
|
|
1115
|
+
x.setState({
|
|
1116
|
+
isAuthenticated: !0,
|
|
1117
|
+
isPending: !1,
|
|
1118
|
+
profile: h
|
|
1119
|
+
});
|
|
1120
|
+
const R = sessionStorage.getItem("redirect-to") ?? "/";
|
|
1121
|
+
return sessionStorage.removeItem("redirect-to"), R;
|
|
1122
|
+
};
|
|
1123
|
+
getRoutes() {
|
|
1124
|
+
return [
|
|
1125
|
+
...super.getRoutes(),
|
|
1126
|
+
{
|
|
1127
|
+
path: he,
|
|
1128
|
+
element: /* @__PURE__ */ L.jsx(Ue, { children: /* @__PURE__ */ L.jsx(Nt, { handleCallback: this.handleCallback }) })
|
|
1128
1129
|
}
|
|
1129
|
-
|
|
1130
|
-
getAuthenticationPlugin() {
|
|
1131
|
-
return new Nt(this.callbackUrlPath, this.handleCallback);
|
|
1130
|
+
];
|
|
1132
1131
|
}
|
|
1133
1132
|
}
|
|
1134
|
-
const
|
|
1133
|
+
const Gt = (t) => new Wt(t);
|
|
1135
1134
|
export {
|
|
1136
|
-
|
|
1137
|
-
|
|
1135
|
+
he as OPENID_CALLBACK_PATH,
|
|
1136
|
+
Wt as OpenIDAuthenticationProvider,
|
|
1137
|
+
Gt as default
|
|
1138
1138
|
};
|
|
1139
1139
|
//# sourceMappingURL=zudoku.auth-openid.js.map
|