From 3dd48e2960f97ff6eb95af75cad76559730427ea Mon Sep 17 00:00:00 2001 From: Thang Vu Date: Sat, 8 Feb 2025 15:57:28 +0700 Subject: [PATCH] docs: exclude inherits --- docs/package.json | 7 +- ...pedoc-nextauth.cjs => typedoc-nextauth.js} | 8 +- docs/typedoc.config.cjs | 4 +- packages/core/src/errors.ts | 41 ++++- pnpm-lock.yaml | 169 ++++++++++++++---- 5 files changed, 183 insertions(+), 46 deletions(-) rename docs/{typedoc-nextauth.cjs => typedoc-nextauth.js} (95%) diff --git a/docs/package.json b/docs/package.json index 2a104a746a..b9593651d3 100644 --- a/docs/package.json +++ b/docs/package.json @@ -49,8 +49,9 @@ "postcss": "^8.4.47", "shiki": "^1.22.0", "tailwindcss": "^3.4.13", - "typedoc": "^0.25.13", - "typedoc-plugin-markdown": "4.0.0-next.54", - "typedoc-plugin-mdn-links": "^3.3.2" + "typedoc": "^0.27.6", + "typedoc-plugin-markdown": "4.4.1", + "typedoc-plugin-mdn-links": "4.0.11", + "typedoc-plugin-no-inherit": "^1.5.0" } } diff --git a/docs/typedoc-nextauth.cjs b/docs/typedoc-nextauth.js similarity index 95% rename from docs/typedoc-nextauth.cjs rename to docs/typedoc-nextauth.js index 64c5a7471f..5e182143f5 100644 --- a/docs/typedoc-nextauth.cjs +++ b/docs/typedoc-nextauth.js @@ -1,15 +1,15 @@ // @ts-check -const { MarkdownPageEvent } = require("typedoc-plugin-markdown") -const path = require("path") -const fs = require("fs") +import { MarkdownPageEvent } from "typedoc-plugin-markdown" +import path from "path" +import fs from "fs" /** * Local plugin to tweak TypeDoc output for nextra docs * * @param {import("typedoc-plugin-markdown").MarkdownApplication} app */ -module.exports.load = (app) => { +export function load(app) { injectNextraCalloutImport(app) parseOutput(app) writeMetaJsFiles(app) diff --git a/docs/typedoc.config.cjs b/docs/typedoc.config.cjs index c84463d38d..09e2b89845 100644 --- a/docs/typedoc.config.cjs +++ b/docs/typedoc.config.cjs @@ -24,8 +24,9 @@ module.exports = { tsconfig: "./tsconfig.json", plugin: [ "typedoc-plugin-markdown", - require.resolve("./typedoc-nextauth.cjs"), + require.resolve("./typedoc-nextauth.js"), "typedoc-plugin-mdn-links", + "typedoc-plugin-no-inherit", ], disableSources: true, excludeNotDocumented: true, @@ -33,6 +34,7 @@ module.exports = { excludeInternal: true, excludePrivate: true, excludeProtected: true, + excludeReferences: true, cleanOutputDir: false, gitRevision: "main", githubPages: false, diff --git a/packages/core/src/errors.ts b/packages/core/src/errors.ts index 2a2f8eb408..4185453003 100644 --- a/packages/core/src/errors.ts +++ b/packages/core/src/errors.ts @@ -48,7 +48,9 @@ export class AuthError extends Error { * @internal */ kind?: "signIn" | "error" + cause?: Record & { err?: Error } + constructor( message?: string | Error | ErrorOptions, errorOptions?: ErrorOptions @@ -77,11 +79,15 @@ export class AuthError extends Error { } } +/** + * @noInheritDoc + */ export class SignInError extends AuthError { static kind = "signIn" } /** + * @noInheritDoc * One of the database [`Adapter` methods](https://authjs.dev/reference/core/adapters#methods) * failed during execution. * @@ -99,6 +105,7 @@ export class AdapterError extends AuthError { } /** + * @noInheritDoc * Thrown when the execution of the [`signIn` callback](https://authjs.dev/reference/core/types#signin) fails * or if it returns `false`. */ @@ -107,6 +114,7 @@ export class AccessDenied extends AuthError { } /** + * @noInheritDoc * This error occurs when the user cannot finish login. * Depending on the provider type, this could have happened for multiple reasons. * @@ -150,6 +158,7 @@ export class CallbackRouteError extends AuthError { } /** + * @noInheritDoc * Thrown when Auth.js is misconfigured and accidentally tried to require authentication on a custom error page. * To prevent an infinite loop, Auth.js will instead render its default error page. * @@ -162,6 +171,7 @@ export class ErrorPageLoop extends AuthError { } /** + * @noInheritDoc * One of the [`events` methods](https://authjs.dev/reference/core/types#eventcallbacks) * failed during execution. * @@ -174,6 +184,7 @@ export class EventError extends AuthError { } /** + * @noInheritDoc * Thrown when Auth.js is unable to verify a `callbackUrl` value. * The browser either disabled cookies or the `callbackUrl` is not a valid URL. * @@ -188,6 +199,7 @@ export class InvalidCallbackUrl extends AuthError { } /** + * @noInheritDoc * Can be thrown from the `authorize` callback of the Credentials provider. * When an error occurs during the `authorize` callback, two things can happen: * 1. The user is redirected to the signin page, with `error=CredentialsSignin&code=credentials` in the URL. `code` is configurable. @@ -210,6 +222,7 @@ export class CredentialsSignin extends SignInError { } /** + * @noInheritDoc * One of the configured OAuth or OIDC providers is missing the `authorization`, `token` or `userinfo`, or `issuer` configuration. * To perform OAuth or OIDC sign in, at least one of these endpoints is required. * @@ -220,6 +233,7 @@ export class InvalidEndpoints extends AuthError { } /** + * @noInheritDoc * Thrown when a PKCE, state or nonce OAuth check could not be performed. * This could happen if the OAuth provider is configured incorrectly or if the browser is blocking cookies. * @@ -230,6 +244,7 @@ export class InvalidCheck extends AuthError { } /** + * @noInheritDoc * Logged on the server when Auth.js could not decode or encode a JWT-based (`strategy: "jwt"`) session. * * Possible causes are either a misconfigured `secret` or a malformed JWT or `encode/decode` methods. @@ -245,6 +260,7 @@ export class JWTSessionError extends AuthError { } /** + * @noInheritDoc * Thrown if Auth.js is misconfigured. This could happen if you configured an Email provider but did not set up a database adapter, * or tried using a `strategy: "database"` session without a database adapter. * In both cases, make sure you either remove the configuration or add the missing adapter. @@ -256,6 +272,7 @@ export class MissingAdapter extends AuthError { } /** + * @noInheritDoc * Thrown similarily to [`MissingAdapter`](https://authjs.dev/reference/core/errors#missingadapter), but only some required methods were missing. * * Make sure you either remove the configuration or add the missing methods to the adapter. @@ -267,6 +284,7 @@ export class MissingAdapterMethods extends AuthError { } /** + * @noInheritDoc * Thrown when a Credentials provider is missing the `authorize` configuration. * To perform credentials sign in, the `authorize` method is required. * @@ -277,6 +295,7 @@ export class MissingAuthorize extends AuthError { } /** + * @noInheritDoc * Auth.js requires a secret or multiple secrets to be set, but none was not found. This is used to encrypt cookies, JWTs and other sensitive data. * * :::note @@ -294,6 +313,7 @@ export class MissingSecret extends AuthError { } /** + * @noInheritDoc * Thrown when an Email address is already associated with an account * but the user is trying an OAuth account that is not linked to it. * @@ -310,6 +330,7 @@ export class OAuthAccountNotLinked extends SignInError { } /** + * @noInheritDoc * Thrown when an OAuth provider returns an error during the sign in process. * This could happen for example if the user denied access to the application or there was a configuration error. * @@ -320,6 +341,7 @@ export class OAuthCallbackError extends SignInError { } /** + * @noInheritDoc * This error occurs during an OAuth sign in attempt when the provider's * response could not be parsed. This could for example happen if the provider's API * changed, or the [`OAuth2Config.profile`](https://authjs.dev/reference/core/providers#oauth2configprofile) method is not implemented correctly. @@ -329,6 +351,7 @@ export class OAuthProfileParseError extends AuthError { } /** + * @noInheritDoc * Logged on the server when Auth.js could not retrieve a session from the database (`strategy: "database"`). * * The database adapter might be misconfigured or the database is not reachable. @@ -340,6 +363,7 @@ export class SessionTokenError extends AuthError { } /** + * @noInheritDoc * Happens when login by [OAuth](https://authjs.dev/getting-started/authentication/oauth) could not be started. * * Possible causes are: @@ -359,6 +383,7 @@ export class OAuthSignInError extends SignInError { } /** + * @noInheritDoc * Happens when the login by an [Email provider](https://authjs.dev/getting-started/authentication/email) could not be started. * * Possible causes are: @@ -373,6 +398,7 @@ export class EmailSignInError extends SignInError { } /** + * @noInheritDoc * Represents an error that occurs during the sign-out process. This error * is logged when there are issues in terminating a user's session, either * by failing to delete the session from the database (in database session @@ -387,6 +413,7 @@ export class SignOutError extends AuthError { } /** + * @noInheritDoc * Auth.js was requested to handle an operation that it does not support. * * See [`AuthAction`](https://authjs.dev/reference/core/types#authaction) for the supported actions. @@ -396,6 +423,7 @@ export class UnknownAction extends AuthError { } /** + * @noInheritDoc * Thrown when a Credentials provider is present but the JWT strategy (`strategy: "jwt"`) is not enabled. * * Learn more at [`strategy`](https://authjs.dev/reference/core#strategy) or [Credentials provider](https://authjs.dev/getting-started/authentication/credentials) @@ -404,12 +432,16 @@ export class UnsupportedStrategy extends AuthError { static type = "UnsupportedStrategy" } -/** Thrown when an endpoint was incorrectly called without a provider, or with an unsupported provider. */ +/** + * @noInheritDoc + * Thrown when an endpoint was incorrectly called without a provider, or with an unsupported provider. + */ export class InvalidProvider extends AuthError { static type = "InvalidProvider" } /** + * @noInheritDoc * Thrown when the `trustHost` option was not set to `true`. * * Auth.js requires the `trustHost` option to be set to `true` since it's relying on the request headers' `host` value. @@ -425,6 +457,7 @@ export class UntrustedHost extends AuthError { } /** + * @noInheritDoc * The user's email/token combination was invalid. * This could be because the email/token combination was not found in the database, * or because the token has expired. Ask the user to log in again. @@ -434,6 +467,7 @@ export class Verification extends AuthError { } /** + * @noInheritDoc * Error for missing CSRF tokens in client-side actions (`signIn`, `signOut`, `useSession#update`). * Thrown when actions lack the double submit cookie, essential for CSRF protection. * @@ -469,6 +503,7 @@ export function isClientError(error: Error): error is AuthError { return false } /** + * @noInheritDoc * Thrown when multiple providers have `enableConditionalUI` set to `true`. * Only one provider can have this option enabled at a time. */ @@ -477,6 +512,7 @@ export class DuplicateConditionalUI extends AuthError { } /** + * @noInheritDoc * Thrown when a WebAuthn provider has `enableConditionalUI` set to `true` but no formField has `webauthn` in its autocomplete param. * * The `webauthn` autocomplete param is required for conditional UI to work. @@ -486,6 +522,7 @@ export class MissingWebAuthnAutocomplete extends AuthError { } /** + * @noInheritDoc * Thrown when a WebAuthn provider fails to verify a client response. */ export class WebAuthnVerificationError extends AuthError { @@ -493,6 +530,7 @@ export class WebAuthnVerificationError extends AuthError { } /** + * @noInheritDoc * Thrown when an Email address is already associated with an account * but the user is trying an account that is not linked to it. * @@ -503,6 +541,7 @@ export class AccountNotLinked extends SignInError { } /** + * @noInheritDoc * Thrown when an experimental feature is used but not enabled. */ export class ExperimentalFeatureNotEnabled extends AuthError { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index df2a2c1d41..29f21e610a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -249,7 +249,7 @@ importers: version: 3.8.3(@algolia/client-search@5.20.0)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2) '@inkeep/widgets': specifier: ^0.2.289 - version: 0.2.289(@internationalized/date@3.5.6)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + version: 0.2.289(@internationalized/date@3.5.2)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@next/third-parties': specifier: ^14.2.15 version: 14.2.15(next@14.2.21(@opentelemetry/api@1.7.0)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.70.0))(react@18.3.1) @@ -312,14 +312,17 @@ importers: specifier: ^3.4.13 version: 3.4.13(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.6.3)) typedoc: - specifier: ^0.25.13 - version: 0.25.13(typescript@5.6.3) + specifier: ^0.27.6 + version: 0.27.6(typescript@5.6.3) typedoc-plugin-markdown: - specifier: 4.0.0-next.54 - version: 4.0.0-next.54(typedoc@0.25.13(typescript@5.6.3)) + specifier: 4.4.1 + version: 4.4.1(typedoc@0.27.6(typescript@5.6.3)) typedoc-plugin-mdn-links: - specifier: ^3.3.2 - version: 3.3.2(typedoc@0.25.13(typescript@5.6.3)) + specifier: 4.0.11 + version: 4.0.11(typedoc@0.27.6(typescript@5.6.3)) + typedoc-plugin-no-inherit: + specifier: ^1.5.0 + version: 1.5.0(typedoc@0.27.6(typescript@5.6.3)) packages/adapter-azure-tables: dependencies: @@ -2891,6 +2894,9 @@ packages: '@gar/promisify@1.1.3': resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + '@gerrit0/mini-shiki@1.27.2': + resolution: {integrity: sha512-GeWyHz8ao2gBiUW4OJnQDxXQnFgZQwwQk05t/CVVgNBN7/rK8XZ7xY6YhLVv9tH3VppWWmr9DCl3MwemB/i+Og==} + '@google-cloud/firestore@7.9.0': resolution: {integrity: sha512-c4ALHT3G08rV7Zwv8Z2KG63gZh66iKdhCBeDfCpIkLrjX6EAjTD/szMdj14M+FnQuClZLFfW5bAgoOjfNmLtJg==} engines: {node: '>=14.0.0'} @@ -4532,12 +4538,21 @@ packages: '@shikijs/engine-oniguruma@1.22.0': resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==} + '@shikijs/engine-oniguruma@1.29.2': + resolution: {integrity: sha512-7iiOx3SG8+g1MnlzZVDYiaeHe7Ez2Kf2HrJzdmGwkRisT7r4rak0e655AcM/tF9JG/kg5fMNYlLLKglbN7gBqA==} + '@shikijs/twoslash@1.2.4': resolution: {integrity: sha512-4F2gNlCFN9HY0jV3J/IBfqkI7w2HBwycwUBx9fLYGYxzbfu0gYRJdQYWtvJC/sG2rYTYlJrS5BpWdXYoMHwbXw==} '@shikijs/types@1.22.0': resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==} + '@shikijs/types@1.29.2': + resolution: {integrity: sha512-VJjK0eIijTZf0QSTODEXCqinjBn0joAHQ+aPSBzrv4O2d/QSbsMw+ZeSRx03kV34Hy7NzUvV/7NqfYGRLrASmw==} + + '@shikijs/vscode-textmate@10.0.1': + resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} + '@shikijs/vscode-textmate@9.3.0': resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} @@ -9664,6 +9679,10 @@ packages: resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} engines: {node: '>=16'} + markdown-it@14.1.0: + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + hasBin: true + markdown-table@3.0.3: resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} @@ -9755,6 +9774,9 @@ packages: mdn-data@2.0.30: resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} @@ -11295,6 +11317,10 @@ packages: pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} + punycode@1.4.1: resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} @@ -12833,15 +12859,21 @@ packages: peerDependencies: typedoc: 0.25.x - typedoc-plugin-markdown@4.0.0-next.54: - resolution: {integrity: sha512-Irb0AxXqRZCpXAcZpGGb3pqG4SP0DzT3Q88rI3ak4K37rJ4jgfNOf/jCTHhD/B2iFty9DKNlssia2ytXDdCOSA==} + typedoc-plugin-markdown@4.4.1: + resolution: {integrity: sha512-fx23nSCvewI9IR8lzIYtzDphETcgTDuxKcmHKGD4lo36oexC+B1k4NaCOY58Snqb4OlE8OXDAGVcQXYYuLRCNw==} + engines: {node: '>= 18'} peerDependencies: - typedoc: 0.25.x + typedoc: 0.27.x + + typedoc-plugin-mdn-links@4.0.11: + resolution: {integrity: sha512-xx9at8P8ABWYG9CLi04Y/uMcy3URIIzA+vy/JGN15Hn/VqDeapRIglwStS1MaQKwCixwZzoUpIoDaGcHdcoFWg==} + peerDependencies: + typedoc: 0.26.x || 0.27.x - typedoc-plugin-mdn-links@3.3.2: - resolution: {integrity: sha512-5CGxkdfsG4Yki6UsFOvVN8vWXXDb25SozOlyThk9Dq8JvKcUgY+Ra+cZvkFWs3hLlO4W8xpFbYQxNngCLf9MMA==} + typedoc-plugin-no-inherit@1.5.0: + resolution: {integrity: sha512-iy8oxL+K2hlMzM8gtmjKbWf8qQ9MqY3x6WC5hR7Wf7AQv3B9sBt4qvfd6WdVIOCWgBDU7Hqo1mvUhR1916Lw0Q==} peerDependencies: - typedoc: '>= 0.23.14 || 0.24.x || 0.25.x || 0.26.x' + typedoc: 0.26.x || 0.27.x typedoc@0.25.13: resolution: {integrity: sha512-pQqiwiJ+Z4pigfOnnysObszLiU3mVLWAExSPf+Mu06G/qsc3wzbuM56SZQvONhHLncLUhYzOVkjFFpFfL5AzhQ==} @@ -12850,6 +12882,13 @@ packages: peerDependencies: typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x + typedoc@0.27.6: + resolution: {integrity: sha512-oBFRoh2Px6jFx366db0lLlihcalq/JzyCVp7Vaq1yphL/tbgx2e+bkpkCgJPunaPvPwoTOXSwasfklWHm7GfAw==} + engines: {node: '>= 18'} + hasBin: true + peerDependencies: + typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x + typeorm-naming-strategies@4.1.0: resolution: {integrity: sha512-vPekJXzZOTZrdDvTl1YoM+w+sUIfQHG4kZTpbFYoTsufyv9NIBRe4Q+PdzhEAFA2std3D9LZHEb1EjE9zhRpiQ==} peerDependencies: @@ -12953,6 +12992,9 @@ packages: uc.micro@2.0.0: resolution: {integrity: sha512-DffL94LsNOccVn4hyfRe5rdKa273swqeA5DJpMOeFmEn1wCDc7nAbbB0gXlgBCL7TNzeTv6G7XVWzan7iJtfig==} + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + ufo@1.5.3: resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} @@ -13649,6 +13691,11 @@ packages: resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} engines: {node: '>= 14'} + yaml@2.7.0: + resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} + engines: {node: '>= 14'} + hasBin: true + yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} @@ -13996,7 +14043,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@ark-ui/anatomy@0.1.0(@internationalized/date@3.5.6)': + '@ark-ui/anatomy@0.1.0(@internationalized/date@3.5.2)': dependencies: '@zag-js/accordion': 0.20.0 '@zag-js/anatomy': 0.20.0 @@ -14007,7 +14054,7 @@ snapshots: '@zag-js/color-utils': 0.20.0 '@zag-js/combobox': 0.20.0 '@zag-js/date-picker': 0.20.0 - '@zag-js/date-utils': 0.20.0(@internationalized/date@3.5.6) + '@zag-js/date-utils': 0.20.0(@internationalized/date@3.5.2) '@zag-js/dialog': 0.20.0 '@zag-js/editable': 0.20.0 '@zag-js/hover-card': 0.20.0 @@ -14033,7 +14080,7 @@ snapshots: transitivePeerDependencies: - '@internationalized/date' - '@ark-ui/react@0.15.0(@internationalized/date@3.5.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@ark-ui/react@0.15.0(@internationalized/date@3.5.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@zag-js/accordion': 0.19.1 '@zag-js/anatomy': 0.19.1 @@ -14045,7 +14092,7 @@ snapshots: '@zag-js/combobox': 0.19.1 '@zag-js/core': 0.19.1 '@zag-js/date-picker': 0.19.1 - '@zag-js/date-utils': 0.19.1(@internationalized/date@3.5.6) + '@zag-js/date-utils': 0.19.1(@internationalized/date@3.5.2) '@zag-js/dialog': 0.19.1 '@zag-js/editable': 0.19.1 '@zag-js/hover-card': 0.19.1 @@ -16220,6 +16267,12 @@ snapshots: '@gar/promisify@1.1.3': optional: true + '@gerrit0/mini-shiki@1.27.2': + dependencies: + '@shikijs/engine-oniguruma': 1.29.2 + '@shikijs/types': 1.29.2 + '@shikijs/vscode-textmate': 10.0.1 + '@google-cloud/firestore@7.9.0(encoding@0.1.13)': dependencies: fast-deep-equal: 3.1.3 @@ -16835,11 +16888,11 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@inkeep/components@0.0.24(@ark-ui/react@0.15.0(@internationalized/date@3.5.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@internationalized/date@3.5.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': + '@inkeep/components@0.0.24(@ark-ui/react@0.15.0(@internationalized/date@3.5.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@internationalized/date@3.5.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@ark-ui/react': 0.15.0(@internationalized/date@3.5.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@inkeep/preset': 0.0.24(@internationalized/date@3.5.6)(typescript@5.6.3) - '@inkeep/preset-chakra': 0.0.24(@internationalized/date@3.5.6)(typescript@5.6.3) + '@ark-ui/react': 0.15.0(@internationalized/date@3.5.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@inkeep/preset': 0.0.24(@internationalized/date@3.5.2)(typescript@5.6.3) + '@inkeep/preset-chakra': 0.0.24(@internationalized/date@3.5.2)(typescript@5.6.3) '@inkeep/shared': 0.0.25 '@inkeep/styled-system': 0.0.44 '@pandacss/dev': 0.22.1(typescript@5.6.3) @@ -16851,9 +16904,9 @@ snapshots: - jsdom - typescript - '@inkeep/preset-chakra@0.0.24(@internationalized/date@3.5.6)(typescript@5.6.3)': + '@inkeep/preset-chakra@0.0.24(@internationalized/date@3.5.2)(typescript@5.6.3)': dependencies: - '@ark-ui/anatomy': 0.1.0(@internationalized/date@3.5.6) + '@ark-ui/anatomy': 0.1.0(@internationalized/date@3.5.2) '@inkeep/shared': 0.0.25 '@pandacss/dev': 0.22.1(typescript@5.6.3) transitivePeerDependencies: @@ -16861,10 +16914,10 @@ snapshots: - jsdom - typescript - '@inkeep/preset@0.0.24(@internationalized/date@3.5.6)(typescript@5.6.3)': + '@inkeep/preset@0.0.24(@internationalized/date@3.5.2)(typescript@5.6.3)': dependencies: - '@ark-ui/anatomy': 0.1.0(@internationalized/date@3.5.6) - '@inkeep/preset-chakra': 0.0.24(@internationalized/date@3.5.6)(typescript@5.6.3) + '@ark-ui/anatomy': 0.1.0(@internationalized/date@3.5.2) + '@inkeep/preset-chakra': 0.0.24(@internationalized/date@3.5.2)(typescript@5.6.3) '@inkeep/shared': 0.0.25 '@pandacss/dev': 0.22.1(typescript@5.6.3) colorjs.io: 0.4.5 @@ -16879,14 +16932,14 @@ snapshots: '@inkeep/styled-system@0.0.46': {} - '@inkeep/widgets@0.2.289(@internationalized/date@3.5.6)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': + '@inkeep/widgets@0.2.289(@internationalized/date@3.5.2)(@types/react@18.2.78)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: '@apollo/client': 3.9.5(@types/react@18.2.78)(graphql-ws@5.14.3(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@ark-ui/react': 0.15.0(@internationalized/date@3.5.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@ark-ui/react': 0.15.0(@internationalized/date@3.5.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@inkeep/color-mode': 0.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@inkeep/components': 0.0.24(@ark-ui/react@0.15.0(@internationalized/date@3.5.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@internationalized/date@3.5.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) - '@inkeep/preset': 0.0.24(@internationalized/date@3.5.6)(typescript@5.6.3) - '@inkeep/preset-chakra': 0.0.24(@internationalized/date@3.5.6)(typescript@5.6.3) + '@inkeep/components': 0.0.24(@ark-ui/react@0.15.0(@internationalized/date@3.5.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@internationalized/date@3.5.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@inkeep/preset': 0.0.24(@internationalized/date@3.5.2)(typescript@5.6.3) + '@inkeep/preset-chakra': 0.0.24(@internationalized/date@3.5.2)(typescript@5.6.3) '@inkeep/shared': 0.0.25 '@inkeep/styled-system': 0.0.46 '@types/lodash.isequal': 4.5.8 @@ -18331,6 +18384,11 @@ snapshots: '@shikijs/types': 1.22.0 '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/engine-oniguruma@1.29.2': + dependencies: + '@shikijs/types': 1.29.2 + '@shikijs/vscode-textmate': 10.0.1 + '@shikijs/twoslash@1.2.4(typescript@5.6.3)': dependencies: '@shikijs/core': 1.2.4 @@ -18344,6 +18402,13 @@ snapshots: '@shikijs/vscode-textmate': 9.3.0 '@types/hast': 3.0.4 + '@shikijs/types@1.29.2': + dependencies: + '@shikijs/vscode-textmate': 10.0.1 + '@types/hast': 3.0.4 + + '@shikijs/vscode-textmate@10.0.1': {} + '@shikijs/vscode-textmate@9.3.0': {} '@sideway/address@4.1.4': @@ -20212,9 +20277,9 @@ snapshots: dependencies: '@internationalized/date': 3.5.2 - '@zag-js/date-utils@0.19.1(@internationalized/date@3.5.6)': + '@zag-js/date-utils@0.20.0(@internationalized/date@3.5.2)': dependencies: - '@internationalized/date': 3.5.6 + '@internationalized/date': 3.5.2 '@zag-js/date-utils@0.20.0(@internationalized/date@3.5.6)': dependencies: @@ -25189,6 +25254,15 @@ snapshots: markdown-extensions@2.0.0: {} + markdown-it@14.1.0: + dependencies: + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 + markdown-table@3.0.3: {} marked@13.0.3: {} @@ -25442,6 +25516,8 @@ snapshots: mdn-data@2.0.30: {} + mdurl@2.0.0: {} + media-typer@0.3.0: {} memdown@1.4.1: @@ -27416,6 +27492,8 @@ snapshots: end-of-stream: 1.4.4 once: 1.4.0 + punycode.js@2.3.1: {} + punycode@1.4.1: {} punycode@2.3.1: {} @@ -29258,13 +29336,17 @@ snapshots: dependencies: typedoc: 0.25.13(typescript@5.6.3) - typedoc-plugin-markdown@4.0.0-next.54(typedoc@0.25.13(typescript@5.6.3)): + typedoc-plugin-markdown@4.4.1(typedoc@0.27.6(typescript@5.6.3)): dependencies: - typedoc: 0.25.13(typescript@5.6.3) + typedoc: 0.27.6(typescript@5.6.3) - typedoc-plugin-mdn-links@3.3.2(typedoc@0.25.13(typescript@5.6.3)): + typedoc-plugin-mdn-links@4.0.11(typedoc@0.27.6(typescript@5.6.3)): dependencies: - typedoc: 0.25.13(typescript@5.6.3) + typedoc: 0.27.6(typescript@5.6.3) + + typedoc-plugin-no-inherit@1.5.0(typedoc@0.27.6(typescript@5.6.3)): + dependencies: + typedoc: 0.27.6(typescript@5.6.3) typedoc@0.25.13(typescript@5.6.3): dependencies: @@ -29274,6 +29356,15 @@ snapshots: shiki: 0.14.7 typescript: 5.6.3 + typedoc@0.27.6(typescript@5.6.3): + dependencies: + '@gerrit0/mini-shiki': 1.27.2 + lunr: 2.3.9 + markdown-it: 14.1.0 + minimatch: 9.0.5 + typescript: 5.6.3 + yaml: 2.7.0 + typeorm-naming-strategies@4.1.0(typeorm@0.3.17(ioredis@5.4.1)(mssql@7.3.5(encoding@0.1.13))(mysql2@3.9.7)(pg@8.11.3)(redis@4.6.12)(sqlite3@5.1.6(encoding@0.1.13))(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))): dependencies: typeorm: 0.3.17(ioredis@5.4.1)(mssql@7.3.5(encoding@0.1.13))(mysql2@3.9.7)(pg@8.11.3)(redis@4.6.12)(sqlite3@5.1.6(encoding@0.1.13))(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) @@ -29331,6 +29422,8 @@ snapshots: uc.micro@2.0.0: {} + uc.micro@2.1.0: {} + ufo@1.5.3: {} ufo@1.5.4: {} @@ -30095,6 +30188,8 @@ snapshots: yaml@2.3.4: {} + yaml@2.7.0: {} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1