@zuplo/cli 6.73.30 → 6.73.31
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/dist/test/invoke-test.d.ts.map +1 -1
- package/dist/test/invoke-test.js +4 -3
- package/dist/test/invoke-test.js.map +1 -1
- package/dist/test/invoke-test.test.d.ts +2 -0
- package/dist/test/invoke-test.test.d.ts.map +1 -0
- package/dist/test/invoke-test.test.js +57 -0
- package/dist/test/invoke-test.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.js +18 -1
- package/node_modules/@posthog/core/dist/posthog-core.mjs +18 -1
- package/node_modules/@posthog/core/package.json +1 -1
- package/node_modules/@posthog/core/src/posthog-core.ts +28 -1
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/editor/node_modules/hono/LICENSE +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/README.md +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/handler.js +364 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/index.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/server.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/websocket.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/index.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/websocket.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/handler.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/index.js +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/mod.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +395 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +49 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/index.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/server.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/ssg.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/websocket.js +98 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +63 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/ssg.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/websocket.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/handler.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/index.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/mod.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/handler.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/client.js +204 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/fetch-result-please.js +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/utils.js +105 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/compose.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/context.js +435 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/accepts.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/adapter/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/cookie/index.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/common.js +273 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/index.js +157 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/dev/index.js +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/factory/index.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/html/index.js +64 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/proxy/index.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/route/index.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/index.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/middleware.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/plugins.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/ssg.js +320 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/utils.js +93 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/sse.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/stream.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/text.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/testing/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/websocket/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono-base.js +405 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/http-exception.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/base.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/children.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/components.js +221 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/constants.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/context.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/client.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/components.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/context.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/css.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/index.js +181 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +399 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/render.js +641 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/server.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/utils.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/hooks/index.js +370 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/index.js +138 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +50 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/streaming.js +179 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/utils.js +200 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/body-limit/index.js +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cache/index.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/combine/index.js +101 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/compress/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/context-storage/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cors/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/csrf/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/digest.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/index.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +176 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/language.js +199 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/logger/index.js +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/method-override/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/powered-by/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +195 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/path.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timeout/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/timing.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/quick.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/tiny.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request.js +344 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/router.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/router.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +166 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +208 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/router.js +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/node.js +210 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/types.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/accept.js +245 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/basic-auth.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/body.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/buffer.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/color.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/compress.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/concurrent.js +61 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/cookie.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/crypto.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/encode.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/filepath.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/handler.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/headers.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/html.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/http-status.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/ipaddr.js +318 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/index.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwa.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jws.js +215 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwt.js +219 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/types.js +161 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/utf8.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/mime.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/stream.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/url.js +256 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/utils.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/validator.js +108 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/client.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/fetch-result-please.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/index.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/utils.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/compose.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/context.js +412 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/adapter/index.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/cookie/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/common.js +236 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/index.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/dev/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/factory/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/html/index.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/proxy/index.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/route/index.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/index.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/plugins.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/ssg.js +297 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/utils.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/sse.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/stream.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/text.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/utils.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/testing/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/websocket/index.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono-base.js +383 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/http-exception.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/base.js +342 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/children.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/components.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/constants.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/context.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/client.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/components.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/context.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/css.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/index.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/render.js +617 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/server.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/utils.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/hooks/index.js +328 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/index.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/common.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/components.js +165 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-runtime.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/streaming.js +155 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/utils.js +175 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/basic-auth/index.js +66 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/bearer-auth/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/body-limit/index.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cache/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/combine/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/compress/index.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cors/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/csrf/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/digest.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/index.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/ip-restriction/index.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jsx-renderer/index.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/language.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/logger/index.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/method-override/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +172 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timeout/index.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/timing.js +104 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/trailing-slash/index.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/quick.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/tiny.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request.js +321 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/router.js +118 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/router.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/node.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/router.js +26 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +153 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/index.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/server.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/client.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/types.d.ts +229 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/utils.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/compose.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/context.d.ts +455 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/common.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/index.d.ts +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/utils.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono-base.d.ts +220 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono.d.ts +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/http-exception.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/index.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/base.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/context.d.ts +51 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/css.d.ts +83 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/utils.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cache/index.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/compress/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/language.d.ts +120 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +94 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request/constants.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request.d.ts +324 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router.d.ts +97 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/types.d.ts +573 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/accept.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/body.d.ts +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/buffer.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/color.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/html.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/ipaddr.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/types.d.ts +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/url.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/accept.js +223 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/basic-auth.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/body.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/buffer.js +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/color.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/compress.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/concurrent.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/cookie.js +173 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/crypto.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/encode.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/filepath.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/handler.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/headers.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/html.js +123 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/http-status.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/ipaddr.js +288 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jws.js +192 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwt.js +207 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/types.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/mime.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/stream.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/url.js +222 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/utils.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/validator.js +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/package.json +699 -0
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js +26 -0
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js.map +1 -0
- package/node_modules/@zuplo/otel/out/esm/index.js +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js +405 -0
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js.map +1 -0
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +18 -0
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/fast-uri/index.js +37 -1
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/fast-uri/test/security.test.js +136 -0
- package/node_modules/hono/dist/cjs/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/cjs/utils/cookie.js +2 -1
- package/node_modules/hono/dist/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/utils/cookie.js +2 -1
- package/node_modules/hono/package.json +2 -3
- package/node_modules/ip-address/README.md +142 -128
- package/node_modules/ip-address/dist/common.d.ts +6 -0
- package/node_modules/ip-address/dist/common.js +17 -1
- package/node_modules/ip-address/dist/common.js.map +1 -1
- package/node_modules/ip-address/dist/ipv4.js +3 -12
- package/node_modules/ip-address/dist/ipv4.js.map +1 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +9 -2
- package/node_modules/ip-address/dist/ipv6.js +35 -16
- package/node_modules/ip-address/dist/ipv6.js.map +1 -1
- package/node_modules/ip-address/package.json +5 -3
- package/package.json +6 -6
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js +0 -26
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js.map +0 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js +0 -405
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-6E46244D.js.LEGAL.txt → chunk-TOMTVLZA.js.LEGAL.txt} +0 -0
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
// src/utils/ipaddr.ts
|
|
2
|
+
var expandIPv6 = (ipV6) => {
|
|
3
|
+
const sections = ipV6.split(":");
|
|
4
|
+
if (IPV4_REGEX.test(sections.at(-1))) {
|
|
5
|
+
sections.splice(
|
|
6
|
+
-1,
|
|
7
|
+
1,
|
|
8
|
+
...convertIPv6BinaryToString(convertIPv4ToBinary(sections.at(-1))).substring(2).split(":")
|
|
9
|
+
// => ['7f00', '0001']
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
for (let i = 0; i < sections.length; i++) {
|
|
13
|
+
const node = sections[i];
|
|
14
|
+
if (node !== "") {
|
|
15
|
+
sections[i] = node.padStart(4, "0");
|
|
16
|
+
} else {
|
|
17
|
+
while (sections[i + 1] === "") {
|
|
18
|
+
sections.splice(i + 1, 1);
|
|
19
|
+
}
|
|
20
|
+
sections[i] = new Array(8 - sections.length + 1).fill("0000").join(":");
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return sections.join(":");
|
|
24
|
+
};
|
|
25
|
+
var IPV4_OCTET_PART = "(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])";
|
|
26
|
+
var IPV4_REGEX = new RegExp(`^(?:${IPV4_OCTET_PART}\\.){3}${IPV4_OCTET_PART}$`);
|
|
27
|
+
var INVALID_IP_ADDRESS_ERROR_CODE = "ERR_INVALID_IP_ADDRESS";
|
|
28
|
+
var CHAR_CODE_0 = 48;
|
|
29
|
+
var CHAR_CODE_9 = 57;
|
|
30
|
+
var CHAR_CODE_A = 65;
|
|
31
|
+
var CHAR_CODE_F = 70;
|
|
32
|
+
var CHAR_CODE_a = 97;
|
|
33
|
+
var CHAR_CODE_f = 102;
|
|
34
|
+
var CHAR_CODE_DOT = 46;
|
|
35
|
+
var CHAR_CODE_COLON = 58;
|
|
36
|
+
var CHAR_CODE_PERCENT = 37;
|
|
37
|
+
var distinctRemoteAddr = (remoteAddr) => {
|
|
38
|
+
if (IPV4_REGEX.test(remoteAddr)) {
|
|
39
|
+
return "IPv4";
|
|
40
|
+
}
|
|
41
|
+
if (remoteAddr.includes(":")) {
|
|
42
|
+
return "IPv6";
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
var createInvalidIPAddressError = (message) => {
|
|
46
|
+
const error = new TypeError(message);
|
|
47
|
+
error.code = INVALID_IP_ADDRESS_ERROR_CODE;
|
|
48
|
+
return error;
|
|
49
|
+
};
|
|
50
|
+
var throwInvalidIPv4Address = (ipv4) => {
|
|
51
|
+
throw createInvalidIPAddressError(`Invalid IPv4 address: ${ipv4}`);
|
|
52
|
+
};
|
|
53
|
+
var throwInvalidIPv6Address = (ipv6) => {
|
|
54
|
+
throw createInvalidIPAddressError(`Invalid IPv6 address: ${ipv6}`);
|
|
55
|
+
};
|
|
56
|
+
var parseIPv4ToBinary = (ipv4, start, end, onInvalid) => {
|
|
57
|
+
let result = 0n;
|
|
58
|
+
let octets = 0;
|
|
59
|
+
let octet = 0;
|
|
60
|
+
let digits = 0;
|
|
61
|
+
let firstDigit = 0;
|
|
62
|
+
for (let i = start; i <= end; i++) {
|
|
63
|
+
const code = i < end ? ipv4.charCodeAt(i) : CHAR_CODE_DOT;
|
|
64
|
+
if (code >= CHAR_CODE_0 && code <= CHAR_CODE_9) {
|
|
65
|
+
if (digits === 0) {
|
|
66
|
+
firstDigit = code;
|
|
67
|
+
} else if (firstDigit === CHAR_CODE_0) {
|
|
68
|
+
onInvalid();
|
|
69
|
+
}
|
|
70
|
+
octet = octet * 10 + code - CHAR_CODE_0;
|
|
71
|
+
if (octet > 255) {
|
|
72
|
+
onInvalid();
|
|
73
|
+
}
|
|
74
|
+
digits++;
|
|
75
|
+
continue;
|
|
76
|
+
}
|
|
77
|
+
if (code !== CHAR_CODE_DOT || digits === 0 || octets === 4) {
|
|
78
|
+
onInvalid();
|
|
79
|
+
}
|
|
80
|
+
result = (result << 8n) + BigInt(octet);
|
|
81
|
+
octets++;
|
|
82
|
+
octet = 0;
|
|
83
|
+
digits = 0;
|
|
84
|
+
}
|
|
85
|
+
if (octets !== 4) {
|
|
86
|
+
onInvalid();
|
|
87
|
+
}
|
|
88
|
+
return result;
|
|
89
|
+
};
|
|
90
|
+
var parseIPv6HexCode = (code) => {
|
|
91
|
+
if (code >= CHAR_CODE_0 && code <= CHAR_CODE_9) {
|
|
92
|
+
return code - CHAR_CODE_0;
|
|
93
|
+
}
|
|
94
|
+
if (code >= CHAR_CODE_A && code <= CHAR_CODE_F) {
|
|
95
|
+
return code - CHAR_CODE_A + 10;
|
|
96
|
+
}
|
|
97
|
+
if (code >= CHAR_CODE_a && code <= CHAR_CODE_f) {
|
|
98
|
+
return code - CHAR_CODE_a + 10;
|
|
99
|
+
}
|
|
100
|
+
return -1;
|
|
101
|
+
};
|
|
102
|
+
var isIPv6LinkLocal = (ipv6binary) => ipv6binary >> 118n === 0x3fan;
|
|
103
|
+
var convertIPv4ToBinary = (ipv4) => {
|
|
104
|
+
return parseIPv4ToBinary(ipv4, 0, ipv4.length, () => throwInvalidIPv4Address(ipv4));
|
|
105
|
+
};
|
|
106
|
+
var convertIPv6ToBinary = (ipv6) => {
|
|
107
|
+
const length = ipv6.length;
|
|
108
|
+
const sections = [];
|
|
109
|
+
let hasZoneId = false;
|
|
110
|
+
let compressAt = -1;
|
|
111
|
+
let index = 0;
|
|
112
|
+
if (length === 0) {
|
|
113
|
+
throwInvalidIPv6Address(ipv6);
|
|
114
|
+
}
|
|
115
|
+
while (index < length) {
|
|
116
|
+
if (sections.length > 8) {
|
|
117
|
+
throwInvalidIPv6Address(ipv6);
|
|
118
|
+
}
|
|
119
|
+
let code = ipv6.charCodeAt(index);
|
|
120
|
+
if (code === CHAR_CODE_PERCENT) {
|
|
121
|
+
if (index + 1 === length) {
|
|
122
|
+
throwInvalidIPv6Address(ipv6);
|
|
123
|
+
}
|
|
124
|
+
hasZoneId = true;
|
|
125
|
+
break;
|
|
126
|
+
}
|
|
127
|
+
if (code === CHAR_CODE_COLON) {
|
|
128
|
+
if (index + 1 < length && ipv6.charCodeAt(index + 1) === CHAR_CODE_COLON) {
|
|
129
|
+
if (compressAt !== -1) {
|
|
130
|
+
throwInvalidIPv6Address(ipv6);
|
|
131
|
+
}
|
|
132
|
+
compressAt = sections.length;
|
|
133
|
+
index += 2;
|
|
134
|
+
continue;
|
|
135
|
+
}
|
|
136
|
+
throwInvalidIPv6Address(ipv6);
|
|
137
|
+
}
|
|
138
|
+
let value = 0;
|
|
139
|
+
let digits = 0;
|
|
140
|
+
const sectionStart = index;
|
|
141
|
+
while (index < length) {
|
|
142
|
+
code = ipv6.charCodeAt(index);
|
|
143
|
+
const hex = parseIPv6HexCode(code);
|
|
144
|
+
if (hex === -1) {
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
if (digits === 4) {
|
|
148
|
+
throwInvalidIPv6Address(ipv6);
|
|
149
|
+
}
|
|
150
|
+
value = value << 4 | hex;
|
|
151
|
+
digits++;
|
|
152
|
+
index++;
|
|
153
|
+
}
|
|
154
|
+
if (index < length && ipv6.charCodeAt(index) === CHAR_CODE_DOT) {
|
|
155
|
+
let ipv4End = length;
|
|
156
|
+
for (let i = index; i < length; i++) {
|
|
157
|
+
if (ipv6.charCodeAt(i) === CHAR_CODE_PERCENT) {
|
|
158
|
+
if (i + 1 === length) {
|
|
159
|
+
throwInvalidIPv6Address(ipv6);
|
|
160
|
+
}
|
|
161
|
+
hasZoneId = true;
|
|
162
|
+
ipv4End = i;
|
|
163
|
+
break;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
const ipv4 = parseIPv4ToBinary(
|
|
167
|
+
ipv6,
|
|
168
|
+
sectionStart,
|
|
169
|
+
ipv4End,
|
|
170
|
+
() => throwInvalidIPv6Address(ipv6)
|
|
171
|
+
);
|
|
172
|
+
sections.push(Number(ipv4 >> 16n & 0xffffn), Number(ipv4 & 0xffffn));
|
|
173
|
+
index = length;
|
|
174
|
+
break;
|
|
175
|
+
}
|
|
176
|
+
if (digits === 0) {
|
|
177
|
+
throwInvalidIPv6Address(ipv6);
|
|
178
|
+
}
|
|
179
|
+
sections.push(value);
|
|
180
|
+
if (index === length) {
|
|
181
|
+
break;
|
|
182
|
+
}
|
|
183
|
+
code = ipv6.charCodeAt(index);
|
|
184
|
+
if (code === CHAR_CODE_PERCENT) {
|
|
185
|
+
if (index + 1 === length) {
|
|
186
|
+
throwInvalidIPv6Address(ipv6);
|
|
187
|
+
}
|
|
188
|
+
hasZoneId = true;
|
|
189
|
+
break;
|
|
190
|
+
}
|
|
191
|
+
if (code !== CHAR_CODE_COLON) {
|
|
192
|
+
throwInvalidIPv6Address(ipv6);
|
|
193
|
+
}
|
|
194
|
+
if (index + 1 < length && ipv6.charCodeAt(index + 1) === CHAR_CODE_COLON) {
|
|
195
|
+
if (compressAt !== -1) {
|
|
196
|
+
throwInvalidIPv6Address(ipv6);
|
|
197
|
+
}
|
|
198
|
+
compressAt = sections.length;
|
|
199
|
+
index += 2;
|
|
200
|
+
continue;
|
|
201
|
+
}
|
|
202
|
+
index++;
|
|
203
|
+
if (index === length) {
|
|
204
|
+
throwInvalidIPv6Address(ipv6);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
if (compressAt === -1 ? sections.length !== 8 : sections.length >= 8) {
|
|
208
|
+
throwInvalidIPv6Address(ipv6);
|
|
209
|
+
}
|
|
210
|
+
let result = 0n;
|
|
211
|
+
const zeros = compressAt === -1 ? 0 : 8 - sections.length;
|
|
212
|
+
const firstSectionEnd = compressAt === -1 ? sections.length : compressAt;
|
|
213
|
+
for (let i = 0; i < firstSectionEnd; i++) {
|
|
214
|
+
result <<= 16n;
|
|
215
|
+
result += BigInt(sections[i]);
|
|
216
|
+
}
|
|
217
|
+
for (let i = 0; i < zeros; i++) {
|
|
218
|
+
result <<= 16n;
|
|
219
|
+
}
|
|
220
|
+
for (let i = firstSectionEnd; i < sections.length; i++) {
|
|
221
|
+
result <<= 16n;
|
|
222
|
+
result += BigInt(sections[i]);
|
|
223
|
+
}
|
|
224
|
+
if (hasZoneId && !isIPv6LinkLocal(result)) {
|
|
225
|
+
throwInvalidIPv6Address(ipv6);
|
|
226
|
+
}
|
|
227
|
+
return result;
|
|
228
|
+
};
|
|
229
|
+
var convertIPv4BinaryToString = (ipV4) => {
|
|
230
|
+
const sections = [];
|
|
231
|
+
for (let i = 0; i < 4; i++) {
|
|
232
|
+
sections.push(ipV4 >> BigInt(8 * (3 - i)) & 0xffn);
|
|
233
|
+
}
|
|
234
|
+
return sections.join(".");
|
|
235
|
+
};
|
|
236
|
+
var isIPv4MappedIPv6 = (ipv6binary) => ipv6binary >> 32n === 0xffffn;
|
|
237
|
+
var convertIPv4MappedIPv6ToIPv4 = (ipv6binary) => ipv6binary & 0xffffffffn;
|
|
238
|
+
var convertIPv6BinaryToString = (ipV6) => {
|
|
239
|
+
if (ipV6 === 0n) {
|
|
240
|
+
return "::";
|
|
241
|
+
}
|
|
242
|
+
if (isIPv4MappedIPv6(ipV6)) {
|
|
243
|
+
return `::ffff:${convertIPv4BinaryToString(convertIPv4MappedIPv6ToIPv4(ipV6))}`;
|
|
244
|
+
}
|
|
245
|
+
const sections = [];
|
|
246
|
+
for (let i = 0; i < 8; i++) {
|
|
247
|
+
sections.push((ipV6 >> BigInt(16 * (7 - i)) & 0xffffn).toString(16));
|
|
248
|
+
}
|
|
249
|
+
let currentZeroStart = -1;
|
|
250
|
+
let maxZeroStart = -1;
|
|
251
|
+
let maxZeroEnd = -1;
|
|
252
|
+
for (let i = 0; i < 8; i++) {
|
|
253
|
+
if (sections[i] === "0") {
|
|
254
|
+
if (currentZeroStart === -1) {
|
|
255
|
+
currentZeroStart = i;
|
|
256
|
+
}
|
|
257
|
+
} else {
|
|
258
|
+
if (currentZeroStart > -1) {
|
|
259
|
+
if (i - currentZeroStart > maxZeroEnd - maxZeroStart) {
|
|
260
|
+
maxZeroStart = currentZeroStart;
|
|
261
|
+
maxZeroEnd = i;
|
|
262
|
+
}
|
|
263
|
+
currentZeroStart = -1;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
if (currentZeroStart > -1) {
|
|
268
|
+
if (8 - currentZeroStart > maxZeroEnd - maxZeroStart) {
|
|
269
|
+
maxZeroStart = currentZeroStart;
|
|
270
|
+
maxZeroEnd = 8;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
if (maxZeroStart !== -1 && maxZeroEnd - maxZeroStart > 1) {
|
|
274
|
+
sections.splice(maxZeroStart, maxZeroEnd - maxZeroStart, ":");
|
|
275
|
+
}
|
|
276
|
+
return sections.join(":").replace(/:{2,}/g, "::");
|
|
277
|
+
};
|
|
278
|
+
export {
|
|
279
|
+
INVALID_IP_ADDRESS_ERROR_CODE,
|
|
280
|
+
convertIPv4BinaryToString,
|
|
281
|
+
convertIPv4MappedIPv6ToIPv4,
|
|
282
|
+
convertIPv4ToBinary,
|
|
283
|
+
convertIPv6BinaryToString,
|
|
284
|
+
convertIPv6ToBinary,
|
|
285
|
+
distinctRemoteAddr,
|
|
286
|
+
expandIPv6,
|
|
287
|
+
isIPv4MappedIPv6
|
|
288
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// src/utils/jwt/jwa.ts
|
|
2
|
+
var AlgorithmTypes = /* @__PURE__ */ ((AlgorithmTypes2) => {
|
|
3
|
+
AlgorithmTypes2["HS256"] = "HS256";
|
|
4
|
+
AlgorithmTypes2["HS384"] = "HS384";
|
|
5
|
+
AlgorithmTypes2["HS512"] = "HS512";
|
|
6
|
+
AlgorithmTypes2["RS256"] = "RS256";
|
|
7
|
+
AlgorithmTypes2["RS384"] = "RS384";
|
|
8
|
+
AlgorithmTypes2["RS512"] = "RS512";
|
|
9
|
+
AlgorithmTypes2["PS256"] = "PS256";
|
|
10
|
+
AlgorithmTypes2["PS384"] = "PS384";
|
|
11
|
+
AlgorithmTypes2["PS512"] = "PS512";
|
|
12
|
+
AlgorithmTypes2["ES256"] = "ES256";
|
|
13
|
+
AlgorithmTypes2["ES384"] = "ES384";
|
|
14
|
+
AlgorithmTypes2["ES512"] = "ES512";
|
|
15
|
+
AlgorithmTypes2["EdDSA"] = "EdDSA";
|
|
16
|
+
return AlgorithmTypes2;
|
|
17
|
+
})(AlgorithmTypes || {});
|
|
18
|
+
export {
|
|
19
|
+
AlgorithmTypes
|
|
20
|
+
};
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
// src/utils/jwt/jws.ts
|
|
2
|
+
import { getRuntimeKey } from "../../helper/adapter/index.js";
|
|
3
|
+
import { decodeBase64 } from "../encode.js";
|
|
4
|
+
import { CryptoKeyUsage, JwtAlgorithmNotImplemented } from "./types.js";
|
|
5
|
+
import { utf8Encoder } from "./utf8.js";
|
|
6
|
+
async function signing(privateKey, alg, data) {
|
|
7
|
+
const algorithm = getKeyAlgorithm(alg);
|
|
8
|
+
const cryptoKey = await importPrivateKey(privateKey, algorithm);
|
|
9
|
+
return await crypto.subtle.sign(algorithm, cryptoKey, data);
|
|
10
|
+
}
|
|
11
|
+
async function verifying(publicKey, alg, signature, data) {
|
|
12
|
+
const algorithm = getKeyAlgorithm(alg);
|
|
13
|
+
const cryptoKey = await importPublicKey(publicKey, algorithm);
|
|
14
|
+
return await crypto.subtle.verify(algorithm, cryptoKey, signature, data);
|
|
15
|
+
}
|
|
16
|
+
function pemToBinary(pem) {
|
|
17
|
+
return decodeBase64(pem.replace(/-+(BEGIN|END).*?-+/g, "").replace(/\s/g, ""));
|
|
18
|
+
}
|
|
19
|
+
async function importPrivateKey(key, alg) {
|
|
20
|
+
if (!crypto.subtle || !crypto.subtle.importKey) {
|
|
21
|
+
throw new Error("`crypto.subtle.importKey` is undefined. JWT auth middleware requires it.");
|
|
22
|
+
}
|
|
23
|
+
if (isCryptoKey(key)) {
|
|
24
|
+
if (key.type !== "private" && key.type !== "secret") {
|
|
25
|
+
throw new Error(
|
|
26
|
+
`unexpected key type: CryptoKey.type is ${key.type}, expected private or secret`
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
return key;
|
|
30
|
+
}
|
|
31
|
+
const usages = [CryptoKeyUsage.Sign];
|
|
32
|
+
if (typeof key === "object") {
|
|
33
|
+
return await crypto.subtle.importKey("jwk", key, alg, false, usages);
|
|
34
|
+
}
|
|
35
|
+
if (key.includes("PRIVATE")) {
|
|
36
|
+
return await crypto.subtle.importKey("pkcs8", pemToBinary(key), alg, false, usages);
|
|
37
|
+
}
|
|
38
|
+
return await crypto.subtle.importKey("raw", utf8Encoder.encode(key), alg, false, usages);
|
|
39
|
+
}
|
|
40
|
+
async function importPublicKey(key, alg) {
|
|
41
|
+
if (!crypto.subtle || !crypto.subtle.importKey) {
|
|
42
|
+
throw new Error("`crypto.subtle.importKey` is undefined. JWT auth middleware requires it.");
|
|
43
|
+
}
|
|
44
|
+
if (isCryptoKey(key)) {
|
|
45
|
+
if (key.type === "public" || key.type === "secret") {
|
|
46
|
+
return key;
|
|
47
|
+
}
|
|
48
|
+
key = await exportPublicJwkFrom(key);
|
|
49
|
+
}
|
|
50
|
+
if (typeof key === "string" && key.includes("PRIVATE")) {
|
|
51
|
+
const privateKey = await crypto.subtle.importKey("pkcs8", pemToBinary(key), alg, true, [
|
|
52
|
+
CryptoKeyUsage.Sign
|
|
53
|
+
]);
|
|
54
|
+
key = await exportPublicJwkFrom(privateKey);
|
|
55
|
+
}
|
|
56
|
+
const usages = [CryptoKeyUsage.Verify];
|
|
57
|
+
if (typeof key === "object") {
|
|
58
|
+
return await crypto.subtle.importKey("jwk", key, alg, false, usages);
|
|
59
|
+
}
|
|
60
|
+
if (key.includes("PUBLIC")) {
|
|
61
|
+
return await crypto.subtle.importKey("spki", pemToBinary(key), alg, false, usages);
|
|
62
|
+
}
|
|
63
|
+
return await crypto.subtle.importKey("raw", utf8Encoder.encode(key), alg, false, usages);
|
|
64
|
+
}
|
|
65
|
+
async function exportPublicJwkFrom(privateKey) {
|
|
66
|
+
if (privateKey.type !== "private") {
|
|
67
|
+
throw new Error(`unexpected key type: ${privateKey.type}`);
|
|
68
|
+
}
|
|
69
|
+
if (!privateKey.extractable) {
|
|
70
|
+
throw new Error("unexpected private key is unextractable");
|
|
71
|
+
}
|
|
72
|
+
const jwk = await crypto.subtle.exportKey("jwk", privateKey);
|
|
73
|
+
const { kty } = jwk;
|
|
74
|
+
const { alg, e, n } = jwk;
|
|
75
|
+
const { crv, x, y } = jwk;
|
|
76
|
+
return { kty, alg, e, n, crv, x, y, key_ops: [CryptoKeyUsage.Verify] };
|
|
77
|
+
}
|
|
78
|
+
function getKeyAlgorithm(name) {
|
|
79
|
+
switch (name) {
|
|
80
|
+
case "HS256":
|
|
81
|
+
return {
|
|
82
|
+
name: "HMAC",
|
|
83
|
+
hash: {
|
|
84
|
+
name: "SHA-256"
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
case "HS384":
|
|
88
|
+
return {
|
|
89
|
+
name: "HMAC",
|
|
90
|
+
hash: {
|
|
91
|
+
name: "SHA-384"
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
case "HS512":
|
|
95
|
+
return {
|
|
96
|
+
name: "HMAC",
|
|
97
|
+
hash: {
|
|
98
|
+
name: "SHA-512"
|
|
99
|
+
}
|
|
100
|
+
};
|
|
101
|
+
case "RS256":
|
|
102
|
+
return {
|
|
103
|
+
name: "RSASSA-PKCS1-v1_5",
|
|
104
|
+
hash: {
|
|
105
|
+
name: "SHA-256"
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
case "RS384":
|
|
109
|
+
return {
|
|
110
|
+
name: "RSASSA-PKCS1-v1_5",
|
|
111
|
+
hash: {
|
|
112
|
+
name: "SHA-384"
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
case "RS512":
|
|
116
|
+
return {
|
|
117
|
+
name: "RSASSA-PKCS1-v1_5",
|
|
118
|
+
hash: {
|
|
119
|
+
name: "SHA-512"
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
case "PS256":
|
|
123
|
+
return {
|
|
124
|
+
name: "RSA-PSS",
|
|
125
|
+
hash: {
|
|
126
|
+
name: "SHA-256"
|
|
127
|
+
},
|
|
128
|
+
saltLength: 32
|
|
129
|
+
// 256 >> 3
|
|
130
|
+
};
|
|
131
|
+
case "PS384":
|
|
132
|
+
return {
|
|
133
|
+
name: "RSA-PSS",
|
|
134
|
+
hash: {
|
|
135
|
+
name: "SHA-384"
|
|
136
|
+
},
|
|
137
|
+
saltLength: 48
|
|
138
|
+
// 384 >> 3
|
|
139
|
+
};
|
|
140
|
+
case "PS512":
|
|
141
|
+
return {
|
|
142
|
+
name: "RSA-PSS",
|
|
143
|
+
hash: {
|
|
144
|
+
name: "SHA-512"
|
|
145
|
+
},
|
|
146
|
+
saltLength: 64
|
|
147
|
+
// 512 >> 3,
|
|
148
|
+
};
|
|
149
|
+
case "ES256":
|
|
150
|
+
return {
|
|
151
|
+
name: "ECDSA",
|
|
152
|
+
hash: {
|
|
153
|
+
name: "SHA-256"
|
|
154
|
+
},
|
|
155
|
+
namedCurve: "P-256"
|
|
156
|
+
};
|
|
157
|
+
case "ES384":
|
|
158
|
+
return {
|
|
159
|
+
name: "ECDSA",
|
|
160
|
+
hash: {
|
|
161
|
+
name: "SHA-384"
|
|
162
|
+
},
|
|
163
|
+
namedCurve: "P-384"
|
|
164
|
+
};
|
|
165
|
+
case "ES512":
|
|
166
|
+
return {
|
|
167
|
+
name: "ECDSA",
|
|
168
|
+
hash: {
|
|
169
|
+
name: "SHA-512"
|
|
170
|
+
},
|
|
171
|
+
namedCurve: "P-521"
|
|
172
|
+
};
|
|
173
|
+
case "EdDSA":
|
|
174
|
+
return {
|
|
175
|
+
name: "Ed25519",
|
|
176
|
+
namedCurve: "Ed25519"
|
|
177
|
+
};
|
|
178
|
+
default:
|
|
179
|
+
throw new JwtAlgorithmNotImplemented(name);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
function isCryptoKey(key) {
|
|
183
|
+
const runtime = getRuntimeKey();
|
|
184
|
+
if (runtime === "node" && !!crypto.webcrypto) {
|
|
185
|
+
return key instanceof crypto.webcrypto.CryptoKey;
|
|
186
|
+
}
|
|
187
|
+
return key instanceof CryptoKey;
|
|
188
|
+
}
|
|
189
|
+
export {
|
|
190
|
+
signing,
|
|
191
|
+
verifying
|
|
192
|
+
};
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
// src/utils/jwt/jwt.ts
|
|
2
|
+
import { decodeBase64Url, encodeBase64Url } from "../../utils/encode.js";
|
|
3
|
+
import { AlgorithmTypes } from "./jwa.js";
|
|
4
|
+
import { signing, verifying } from "./jws.js";
|
|
5
|
+
import {
|
|
6
|
+
JwtAlgorithmMismatch,
|
|
7
|
+
JwtAlgorithmNotAllowed,
|
|
8
|
+
JwtAlgorithmRequired,
|
|
9
|
+
JwtHeaderInvalid,
|
|
10
|
+
JwtHeaderRequiresKid,
|
|
11
|
+
JwtPayloadRequiresAud,
|
|
12
|
+
JwtSymmetricAlgorithmNotAllowed,
|
|
13
|
+
JwtTokenAudience,
|
|
14
|
+
JwtTokenExpired,
|
|
15
|
+
JwtTokenInvalid,
|
|
16
|
+
JwtTokenIssuedAt,
|
|
17
|
+
JwtTokenIssuer,
|
|
18
|
+
JwtTokenNotBefore,
|
|
19
|
+
JwtTokenSignatureMismatched
|
|
20
|
+
} from "./types.js";
|
|
21
|
+
import { utf8Decoder, utf8Encoder } from "./utf8.js";
|
|
22
|
+
var encodeJwtPart = (part) => encodeBase64Url(utf8Encoder.encode(JSON.stringify(part)).buffer).replace(/=/g, "");
|
|
23
|
+
var encodeSignaturePart = (buf) => encodeBase64Url(buf).replace(/=/g, "");
|
|
24
|
+
var decodeJwtPart = (part) => JSON.parse(utf8Decoder.decode(decodeBase64Url(part)));
|
|
25
|
+
function isTokenHeader(obj) {
|
|
26
|
+
if (typeof obj === "object" && obj !== null) {
|
|
27
|
+
const objWithAlg = obj;
|
|
28
|
+
return "alg" in objWithAlg && Object.values(AlgorithmTypes).includes(objWithAlg.alg) && (!("typ" in objWithAlg) || objWithAlg.typ === "JWT");
|
|
29
|
+
}
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
var sign = async (payload, privateKey, alg = "HS256") => {
|
|
33
|
+
const encodedPayload = encodeJwtPart(payload);
|
|
34
|
+
let encodedHeader;
|
|
35
|
+
if (typeof privateKey === "object" && "alg" in privateKey) {
|
|
36
|
+
alg = privateKey.alg;
|
|
37
|
+
encodedHeader = encodeJwtPart({ alg, typ: "JWT", kid: privateKey.kid });
|
|
38
|
+
} else {
|
|
39
|
+
encodedHeader = encodeJwtPart({ alg, typ: "JWT" });
|
|
40
|
+
}
|
|
41
|
+
const partialToken = `${encodedHeader}.${encodedPayload}`;
|
|
42
|
+
const signaturePart = await signing(privateKey, alg, utf8Encoder.encode(partialToken));
|
|
43
|
+
const signature = encodeSignaturePart(signaturePart);
|
|
44
|
+
return `${partialToken}.${signature}`;
|
|
45
|
+
};
|
|
46
|
+
var verify = async (token, publicKey, algOrOptions) => {
|
|
47
|
+
if (!algOrOptions) {
|
|
48
|
+
throw new JwtAlgorithmRequired();
|
|
49
|
+
}
|
|
50
|
+
const {
|
|
51
|
+
alg,
|
|
52
|
+
iss,
|
|
53
|
+
nbf = true,
|
|
54
|
+
exp = true,
|
|
55
|
+
iat = true,
|
|
56
|
+
aud
|
|
57
|
+
} = typeof algOrOptions === "string" ? { alg: algOrOptions } : algOrOptions;
|
|
58
|
+
if (!alg) {
|
|
59
|
+
throw new JwtAlgorithmRequired();
|
|
60
|
+
}
|
|
61
|
+
const tokenParts = token.split(".");
|
|
62
|
+
if (tokenParts.length !== 3) {
|
|
63
|
+
throw new JwtTokenInvalid(token);
|
|
64
|
+
}
|
|
65
|
+
const { header, payload } = decode(token);
|
|
66
|
+
if (!isTokenHeader(header)) {
|
|
67
|
+
throw new JwtHeaderInvalid(header);
|
|
68
|
+
}
|
|
69
|
+
if (header.alg !== alg) {
|
|
70
|
+
throw new JwtAlgorithmMismatch(alg, header.alg);
|
|
71
|
+
}
|
|
72
|
+
const now = Math.floor(Date.now() / 1e3);
|
|
73
|
+
if (nbf && payload.nbf !== void 0) {
|
|
74
|
+
if (typeof payload.nbf !== "number" || !Number.isFinite(payload.nbf) || payload.nbf > now) {
|
|
75
|
+
throw new JwtTokenNotBefore(token);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
if (exp && payload.exp !== void 0) {
|
|
79
|
+
if (typeof payload.exp !== "number" || !Number.isFinite(payload.exp) || payload.exp <= now) {
|
|
80
|
+
throw new JwtTokenExpired(token);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
if (iat && payload.iat !== void 0) {
|
|
84
|
+
if (typeof payload.iat !== "number" || !Number.isFinite(payload.iat) || now < payload.iat) {
|
|
85
|
+
throw new JwtTokenIssuedAt(now, payload.iat);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
if (iss) {
|
|
89
|
+
if (!payload.iss) {
|
|
90
|
+
throw new JwtTokenIssuer(iss, null);
|
|
91
|
+
}
|
|
92
|
+
if (typeof iss === "string" && payload.iss !== iss) {
|
|
93
|
+
throw new JwtTokenIssuer(iss, payload.iss);
|
|
94
|
+
}
|
|
95
|
+
if (iss instanceof RegExp && !iss.test(payload.iss)) {
|
|
96
|
+
throw new JwtTokenIssuer(iss, payload.iss);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
if (aud) {
|
|
100
|
+
if (!payload.aud) {
|
|
101
|
+
throw new JwtPayloadRequiresAud(payload);
|
|
102
|
+
}
|
|
103
|
+
const audiences = Array.isArray(payload.aud) ? payload.aud : [payload.aud];
|
|
104
|
+
const matched = audiences.some(
|
|
105
|
+
(payloadAud) => aud instanceof RegExp ? aud.test(payloadAud) : typeof aud === "string" ? payloadAud === aud : Array.isArray(aud) && aud.includes(payloadAud)
|
|
106
|
+
);
|
|
107
|
+
if (!matched) {
|
|
108
|
+
throw new JwtTokenAudience(aud, payload.aud);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
const headerPayload = token.substring(0, token.lastIndexOf("."));
|
|
112
|
+
const verified = await verifying(
|
|
113
|
+
publicKey,
|
|
114
|
+
alg,
|
|
115
|
+
decodeBase64Url(tokenParts[2]),
|
|
116
|
+
utf8Encoder.encode(headerPayload)
|
|
117
|
+
);
|
|
118
|
+
if (!verified) {
|
|
119
|
+
throw new JwtTokenSignatureMismatched(token);
|
|
120
|
+
}
|
|
121
|
+
return payload;
|
|
122
|
+
};
|
|
123
|
+
var symmetricAlgorithms = [
|
|
124
|
+
AlgorithmTypes.HS256,
|
|
125
|
+
AlgorithmTypes.HS384,
|
|
126
|
+
AlgorithmTypes.HS512
|
|
127
|
+
];
|
|
128
|
+
var verifyWithJwks = async (token, options, init) => {
|
|
129
|
+
const verifyOpts = options.verification || {};
|
|
130
|
+
const header = decodeHeader(token);
|
|
131
|
+
if (!isTokenHeader(header)) {
|
|
132
|
+
throw new JwtHeaderInvalid(header);
|
|
133
|
+
}
|
|
134
|
+
if (!header.kid) {
|
|
135
|
+
throw new JwtHeaderRequiresKid(header);
|
|
136
|
+
}
|
|
137
|
+
if (symmetricAlgorithms.includes(header.alg)) {
|
|
138
|
+
throw new JwtSymmetricAlgorithmNotAllowed(header.alg);
|
|
139
|
+
}
|
|
140
|
+
if (!options.allowedAlgorithms.includes(header.alg)) {
|
|
141
|
+
throw new JwtAlgorithmNotAllowed(header.alg, options.allowedAlgorithms);
|
|
142
|
+
}
|
|
143
|
+
let verifyKeys = options.keys ? [...options.keys] : void 0;
|
|
144
|
+
if (options.jwks_uri) {
|
|
145
|
+
const response = await fetch(options.jwks_uri, init);
|
|
146
|
+
if (!response.ok) {
|
|
147
|
+
throw new Error(`failed to fetch JWKS from ${options.jwks_uri}`);
|
|
148
|
+
}
|
|
149
|
+
const data = await response.json();
|
|
150
|
+
if (!data.keys) {
|
|
151
|
+
throw new Error('invalid JWKS response. "keys" field is missing');
|
|
152
|
+
}
|
|
153
|
+
if (!Array.isArray(data.keys)) {
|
|
154
|
+
throw new Error('invalid JWKS response. "keys" field is not an array');
|
|
155
|
+
}
|
|
156
|
+
verifyKeys ??= [];
|
|
157
|
+
verifyKeys.push(...data.keys);
|
|
158
|
+
} else if (!verifyKeys) {
|
|
159
|
+
throw new Error('verifyWithJwks requires options for either "keys" or "jwks_uri" or both');
|
|
160
|
+
}
|
|
161
|
+
const matchingKey = verifyKeys.find((key) => key.kid === header.kid);
|
|
162
|
+
if (!matchingKey) {
|
|
163
|
+
throw new JwtTokenInvalid(token);
|
|
164
|
+
}
|
|
165
|
+
if (matchingKey.alg && matchingKey.alg !== header.alg) {
|
|
166
|
+
throw new JwtAlgorithmMismatch(matchingKey.alg, header.alg);
|
|
167
|
+
}
|
|
168
|
+
return await verify(token, matchingKey, {
|
|
169
|
+
alg: header.alg,
|
|
170
|
+
...verifyOpts
|
|
171
|
+
});
|
|
172
|
+
};
|
|
173
|
+
var decode = (token) => {
|
|
174
|
+
const parts = token.split(".");
|
|
175
|
+
if (parts.length !== 3) {
|
|
176
|
+
throw new JwtTokenInvalid(token);
|
|
177
|
+
}
|
|
178
|
+
try {
|
|
179
|
+
const header = decodeJwtPart(parts[0]);
|
|
180
|
+
const payload = decodeJwtPart(parts[1]);
|
|
181
|
+
return {
|
|
182
|
+
header,
|
|
183
|
+
payload
|
|
184
|
+
};
|
|
185
|
+
} catch {
|
|
186
|
+
throw new JwtTokenInvalid(token);
|
|
187
|
+
}
|
|
188
|
+
};
|
|
189
|
+
var decodeHeader = (token) => {
|
|
190
|
+
const parts = token.split(".");
|
|
191
|
+
if (parts.length !== 3) {
|
|
192
|
+
throw new JwtTokenInvalid(token);
|
|
193
|
+
}
|
|
194
|
+
try {
|
|
195
|
+
return decodeJwtPart(parts[0]);
|
|
196
|
+
} catch {
|
|
197
|
+
throw new JwtTokenInvalid(token);
|
|
198
|
+
}
|
|
199
|
+
};
|
|
200
|
+
export {
|
|
201
|
+
decode,
|
|
202
|
+
decodeHeader,
|
|
203
|
+
isTokenHeader,
|
|
204
|
+
sign,
|
|
205
|
+
verify,
|
|
206
|
+
verifyWithJwks
|
|
207
|
+
};
|