@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,364 @@
|
|
|
1
|
+
// src/adapter/aws-lambda/handler.ts
|
|
2
|
+
import { decodeBase64, encodeBase64 } from "../../utils/encode.js";
|
|
3
|
+
function sanitizeHeaderValue(value) {
|
|
4
|
+
const hasNonAscii = /[^\x00-\x7F]/.test(value);
|
|
5
|
+
if (!hasNonAscii) {
|
|
6
|
+
return value;
|
|
7
|
+
}
|
|
8
|
+
return encodeURIComponent(value);
|
|
9
|
+
}
|
|
10
|
+
var getRequestContext = (event) => {
|
|
11
|
+
return event.requestContext;
|
|
12
|
+
};
|
|
13
|
+
var streamToNodeStream = async (reader, writer) => {
|
|
14
|
+
let readResult = await reader.read();
|
|
15
|
+
while (!readResult.done) {
|
|
16
|
+
writer.write(readResult.value);
|
|
17
|
+
readResult = await reader.read();
|
|
18
|
+
}
|
|
19
|
+
writer.end();
|
|
20
|
+
};
|
|
21
|
+
var streamHandle = (app) => {
|
|
22
|
+
return awslambda.streamifyResponse(
|
|
23
|
+
async (event, responseStream, context) => {
|
|
24
|
+
const processor = getProcessor(event);
|
|
25
|
+
try {
|
|
26
|
+
const req = processor.createRequest(event);
|
|
27
|
+
const requestContext = getRequestContext(event);
|
|
28
|
+
const res = await app.fetch(req, {
|
|
29
|
+
event,
|
|
30
|
+
requestContext,
|
|
31
|
+
context
|
|
32
|
+
});
|
|
33
|
+
const headers = {};
|
|
34
|
+
const cookies = [];
|
|
35
|
+
res.headers.forEach((value, name) => {
|
|
36
|
+
if (name === "set-cookie") {
|
|
37
|
+
cookies.push(value);
|
|
38
|
+
} else {
|
|
39
|
+
headers[name] = value;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
const httpResponseMetadata = {
|
|
43
|
+
statusCode: res.status,
|
|
44
|
+
headers,
|
|
45
|
+
cookies
|
|
46
|
+
};
|
|
47
|
+
responseStream = awslambda.HttpResponseStream.from(responseStream, httpResponseMetadata);
|
|
48
|
+
if (res.body) {
|
|
49
|
+
await streamToNodeStream(res.body.getReader(), responseStream);
|
|
50
|
+
} else {
|
|
51
|
+
responseStream.write("");
|
|
52
|
+
}
|
|
53
|
+
} catch (error) {
|
|
54
|
+
console.error("Error processing request:", error);
|
|
55
|
+
responseStream.write("Internal Server Error");
|
|
56
|
+
} finally {
|
|
57
|
+
responseStream.end();
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
);
|
|
61
|
+
};
|
|
62
|
+
var handle = (app, { isContentTypeBinary } = { isContentTypeBinary: void 0 }) => {
|
|
63
|
+
return async (event, lambdaContext) => {
|
|
64
|
+
const processor = getProcessor(event);
|
|
65
|
+
let req, requestContext;
|
|
66
|
+
try {
|
|
67
|
+
req = processor.createRequest(event);
|
|
68
|
+
requestContext = getRequestContext(event);
|
|
69
|
+
} catch (error) {
|
|
70
|
+
console.error("Error processing request:", error);
|
|
71
|
+
const errorResponse = error instanceof TypeError ? new Response("Invalid request", { status: 400 }) : new Response("Internal Server Error", { status: 500 });
|
|
72
|
+
return processor.createResult(event, errorResponse, { isContentTypeBinary });
|
|
73
|
+
}
|
|
74
|
+
const res = await app.fetch(req, {
|
|
75
|
+
event,
|
|
76
|
+
requestContext,
|
|
77
|
+
lambdaContext
|
|
78
|
+
});
|
|
79
|
+
return processor.createResult(event, res, { isContentTypeBinary });
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
var EventProcessor = class {
|
|
83
|
+
getHeaderValue(headers, key) {
|
|
84
|
+
const value = headers ? Array.isArray(headers[key]) ? headers[key][0] : headers[key] : void 0;
|
|
85
|
+
return value;
|
|
86
|
+
}
|
|
87
|
+
getDomainName(event) {
|
|
88
|
+
if (event.requestContext && "domainName" in event.requestContext) {
|
|
89
|
+
return event.requestContext.domainName;
|
|
90
|
+
}
|
|
91
|
+
const hostFromHeaders = this.getHeaderValue(event.headers, "host");
|
|
92
|
+
if (hostFromHeaders) {
|
|
93
|
+
return hostFromHeaders;
|
|
94
|
+
}
|
|
95
|
+
const multiValueHeaders = "multiValueHeaders" in event ? event.multiValueHeaders : {};
|
|
96
|
+
const hostFromMultiValueHeaders = this.getHeaderValue(multiValueHeaders, "host");
|
|
97
|
+
return hostFromMultiValueHeaders;
|
|
98
|
+
}
|
|
99
|
+
createRequest(event) {
|
|
100
|
+
const queryString = this.getQueryString(event);
|
|
101
|
+
const domainName = this.getDomainName(event);
|
|
102
|
+
const path = this.getPath(event);
|
|
103
|
+
const urlPath = `https://${domainName}${path}`;
|
|
104
|
+
const url = queryString ? `${urlPath}?${queryString}` : urlPath;
|
|
105
|
+
const headers = this.getHeaders(event);
|
|
106
|
+
const method = this.getMethod(event);
|
|
107
|
+
const requestInit = {
|
|
108
|
+
headers,
|
|
109
|
+
method
|
|
110
|
+
};
|
|
111
|
+
if (event.body) {
|
|
112
|
+
const body = event.isBase64Encoded ? decodeBase64(event.body) : new TextEncoder().encode(event.body);
|
|
113
|
+
requestInit.body = body;
|
|
114
|
+
headers.set("content-length", body.length.toString());
|
|
115
|
+
}
|
|
116
|
+
return new Request(url, requestInit);
|
|
117
|
+
}
|
|
118
|
+
async createResult(event, res, options) {
|
|
119
|
+
const contentType = res.headers.get("content-type");
|
|
120
|
+
const isContentTypeBinary = options.isContentTypeBinary ?? defaultIsContentTypeBinary;
|
|
121
|
+
let isBase64Encoded = contentType && isContentTypeBinary(contentType) ? true : false;
|
|
122
|
+
if (!isBase64Encoded) {
|
|
123
|
+
const contentEncoding = res.headers.get("content-encoding");
|
|
124
|
+
isBase64Encoded = isContentEncodingBinary(contentEncoding);
|
|
125
|
+
}
|
|
126
|
+
const body = isBase64Encoded ? encodeBase64(await res.arrayBuffer()) : await res.text();
|
|
127
|
+
const result = {
|
|
128
|
+
body,
|
|
129
|
+
statusCode: res.status,
|
|
130
|
+
isBase64Encoded,
|
|
131
|
+
..."multiValueHeaders" in event && event.multiValueHeaders ? {
|
|
132
|
+
multiValueHeaders: {}
|
|
133
|
+
} : {
|
|
134
|
+
headers: {}
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
this.setCookies(event, res, result);
|
|
138
|
+
if (result.multiValueHeaders) {
|
|
139
|
+
res.headers.forEach((value, key) => {
|
|
140
|
+
result.multiValueHeaders[key] = [value];
|
|
141
|
+
});
|
|
142
|
+
} else {
|
|
143
|
+
res.headers.forEach((value, key) => {
|
|
144
|
+
result.headers[key] = value;
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
return result;
|
|
148
|
+
}
|
|
149
|
+
setCookies(_event, res, result) {
|
|
150
|
+
if (res.headers.has("set-cookie")) {
|
|
151
|
+
const cookies = res.headers.getSetCookie ? res.headers.getSetCookie() : Array.from(res.headers.entries()).filter(([k]) => k === "set-cookie").map(([, v]) => v);
|
|
152
|
+
if (Array.isArray(cookies)) {
|
|
153
|
+
this.setCookiesToResult(result, cookies);
|
|
154
|
+
res.headers.delete("set-cookie");
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
};
|
|
159
|
+
var EventV2Processor = class extends EventProcessor {
|
|
160
|
+
getPath(event) {
|
|
161
|
+
return event.rawPath;
|
|
162
|
+
}
|
|
163
|
+
getMethod(event) {
|
|
164
|
+
return event.requestContext.http.method;
|
|
165
|
+
}
|
|
166
|
+
getQueryString(event) {
|
|
167
|
+
return event.rawQueryString;
|
|
168
|
+
}
|
|
169
|
+
getCookies(event, headers) {
|
|
170
|
+
if (Array.isArray(event.cookies)) {
|
|
171
|
+
headers.set("Cookie", event.cookies.join("; "));
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
setCookiesToResult(result, cookies) {
|
|
175
|
+
result.cookies = cookies;
|
|
176
|
+
}
|
|
177
|
+
getHeaders(event) {
|
|
178
|
+
const headers = new Headers();
|
|
179
|
+
this.getCookies(event, headers);
|
|
180
|
+
if (event.headers) {
|
|
181
|
+
for (const [k, v] of Object.entries(event.headers)) {
|
|
182
|
+
if (v) {
|
|
183
|
+
headers.set(k, v);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
return headers;
|
|
188
|
+
}
|
|
189
|
+
};
|
|
190
|
+
var v2Processor = new EventV2Processor();
|
|
191
|
+
var EventV1Processor = class extends EventProcessor {
|
|
192
|
+
getPath(event) {
|
|
193
|
+
return event.path;
|
|
194
|
+
}
|
|
195
|
+
getMethod(event) {
|
|
196
|
+
return event.httpMethod;
|
|
197
|
+
}
|
|
198
|
+
getQueryString(event) {
|
|
199
|
+
if (event.multiValueQueryStringParameters) {
|
|
200
|
+
return Object.entries(event.multiValueQueryStringParameters || {}).filter(([, value]) => value).map(
|
|
201
|
+
([key, values]) => values.map((value) => `${encodeURIComponent(key)}=${encodeURIComponent(value)}`).join("&")
|
|
202
|
+
).join("&");
|
|
203
|
+
} else {
|
|
204
|
+
return Object.entries(event.queryStringParameters || {}).filter(([, value]) => value).map(([key, value]) => `${encodeURIComponent(key)}=${encodeURIComponent(value || "")}`).join("&");
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
getCookies(_event, _headers) {
|
|
208
|
+
}
|
|
209
|
+
getHeaders(event) {
|
|
210
|
+
const headers = new Headers();
|
|
211
|
+
this.getCookies(event, headers);
|
|
212
|
+
if (event.multiValueHeaders) {
|
|
213
|
+
for (const [k, values] of Object.entries(event.multiValueHeaders)) {
|
|
214
|
+
if (values) {
|
|
215
|
+
values.forEach((v) => headers.append(k, sanitizeHeaderValue(v)));
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
if (event.headers) {
|
|
220
|
+
for (const [k, v] of Object.entries(event.headers)) {
|
|
221
|
+
if (v && !headers.has(k)) {
|
|
222
|
+
headers.set(k, sanitizeHeaderValue(v));
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
return headers;
|
|
227
|
+
}
|
|
228
|
+
setCookiesToResult(result, cookies) {
|
|
229
|
+
result.multiValueHeaders = {
|
|
230
|
+
"set-cookie": cookies
|
|
231
|
+
};
|
|
232
|
+
}
|
|
233
|
+
};
|
|
234
|
+
var v1Processor = new EventV1Processor();
|
|
235
|
+
var ALBProcessor = class extends EventProcessor {
|
|
236
|
+
getHeaders(event) {
|
|
237
|
+
const headers = new Headers();
|
|
238
|
+
if (event.multiValueHeaders) {
|
|
239
|
+
for (const [key, values] of Object.entries(event.multiValueHeaders)) {
|
|
240
|
+
if (values && Array.isArray(values)) {
|
|
241
|
+
const sanitizedValue = sanitizeHeaderValue(values.join("; "));
|
|
242
|
+
headers.set(key, sanitizedValue);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
} else {
|
|
246
|
+
for (const [key, value] of Object.entries(event.headers ?? {})) {
|
|
247
|
+
if (value) {
|
|
248
|
+
headers.set(key, sanitizeHeaderValue(value));
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
return headers;
|
|
253
|
+
}
|
|
254
|
+
getPath(event) {
|
|
255
|
+
return event.path;
|
|
256
|
+
}
|
|
257
|
+
getMethod(event) {
|
|
258
|
+
return event.httpMethod;
|
|
259
|
+
}
|
|
260
|
+
getQueryString(event) {
|
|
261
|
+
if (event.multiValueQueryStringParameters) {
|
|
262
|
+
return Object.entries(event.multiValueQueryStringParameters || {}).filter(([, value]) => value).map(([key, value]) => `${key}=${value.join(`&${key}=`)}`).join("&");
|
|
263
|
+
} else {
|
|
264
|
+
return Object.entries(event.queryStringParameters || {}).filter(([, value]) => value).map(([key, value]) => `${key}=${value}`).join("&");
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
getCookies(event, headers) {
|
|
268
|
+
let cookie;
|
|
269
|
+
if (event.multiValueHeaders) {
|
|
270
|
+
cookie = event.multiValueHeaders["cookie"]?.join("; ");
|
|
271
|
+
} else {
|
|
272
|
+
cookie = event.headers ? event.headers["cookie"] : void 0;
|
|
273
|
+
}
|
|
274
|
+
if (cookie) {
|
|
275
|
+
headers.append("Cookie", cookie);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
setCookiesToResult(result, cookies) {
|
|
279
|
+
if (result.multiValueHeaders) {
|
|
280
|
+
result.multiValueHeaders["set-cookie"] = cookies;
|
|
281
|
+
} else {
|
|
282
|
+
result.headers["set-cookie"] = cookies[0];
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
};
|
|
286
|
+
var albProcessor = new ALBProcessor();
|
|
287
|
+
var LatticeV2Processor = class extends EventProcessor {
|
|
288
|
+
getPath(event) {
|
|
289
|
+
return event.path;
|
|
290
|
+
}
|
|
291
|
+
getMethod(event) {
|
|
292
|
+
return event.method;
|
|
293
|
+
}
|
|
294
|
+
getQueryString() {
|
|
295
|
+
return "";
|
|
296
|
+
}
|
|
297
|
+
getHeaders(event) {
|
|
298
|
+
const headers = new Headers();
|
|
299
|
+
if (event.headers) {
|
|
300
|
+
for (const [k, values] of Object.entries(event.headers)) {
|
|
301
|
+
if (values) {
|
|
302
|
+
values.forEach((v) => headers.append(k, sanitizeHeaderValue(v)));
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
return headers;
|
|
307
|
+
}
|
|
308
|
+
getCookies() {
|
|
309
|
+
}
|
|
310
|
+
setCookiesToResult(result, cookies) {
|
|
311
|
+
result.headers = {
|
|
312
|
+
...result.headers,
|
|
313
|
+
"set-cookie": cookies
|
|
314
|
+
};
|
|
315
|
+
}
|
|
316
|
+
};
|
|
317
|
+
var latticeV2Processor = new LatticeV2Processor();
|
|
318
|
+
var getProcessor = (event) => {
|
|
319
|
+
if (isProxyEventALB(event)) {
|
|
320
|
+
return albProcessor;
|
|
321
|
+
}
|
|
322
|
+
if (isProxyEventV2(event)) {
|
|
323
|
+
return v2Processor;
|
|
324
|
+
}
|
|
325
|
+
if (isLatticeEventV2(event)) {
|
|
326
|
+
return latticeV2Processor;
|
|
327
|
+
}
|
|
328
|
+
return v1Processor;
|
|
329
|
+
};
|
|
330
|
+
var isProxyEventALB = (event) => {
|
|
331
|
+
if (event.requestContext) {
|
|
332
|
+
return Object.hasOwn(event.requestContext, "elb");
|
|
333
|
+
}
|
|
334
|
+
return false;
|
|
335
|
+
};
|
|
336
|
+
var isProxyEventV2 = (event) => {
|
|
337
|
+
return Object.hasOwn(event, "rawPath") && Object.hasOwn(event.requestContext ?? {}, "http");
|
|
338
|
+
};
|
|
339
|
+
var isLatticeEventV2 = (event) => {
|
|
340
|
+
if (event.requestContext) {
|
|
341
|
+
return Object.hasOwn(event.requestContext, "serviceArn");
|
|
342
|
+
}
|
|
343
|
+
return false;
|
|
344
|
+
};
|
|
345
|
+
var defaultIsContentTypeBinary = (contentType) => {
|
|
346
|
+
return !/^text\/(?:plain|html|css|javascript|csv)|(?:\/|\+)(?:json|xml)\s*(?:;|$)/.test(
|
|
347
|
+
contentType
|
|
348
|
+
);
|
|
349
|
+
};
|
|
350
|
+
var isContentEncodingBinary = (contentEncoding) => {
|
|
351
|
+
return !!contentEncoding && !/^identity$/i.test(contentEncoding);
|
|
352
|
+
};
|
|
353
|
+
export {
|
|
354
|
+
ALBProcessor,
|
|
355
|
+
EventProcessor,
|
|
356
|
+
EventV1Processor,
|
|
357
|
+
EventV2Processor,
|
|
358
|
+
LatticeV2Processor,
|
|
359
|
+
defaultIsContentTypeBinary,
|
|
360
|
+
getProcessor,
|
|
361
|
+
handle,
|
|
362
|
+
isContentEncodingBinary,
|
|
363
|
+
streamHandle
|
|
364
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// src/adapter/bun/conninfo.ts
|
|
2
|
+
import { getBunServer } from "./server.js";
|
|
3
|
+
var getConnInfo = (c) => {
|
|
4
|
+
const server = getBunServer(c);
|
|
5
|
+
if (!server) {
|
|
6
|
+
throw new TypeError("env has to include the 2nd argument of fetch.");
|
|
7
|
+
}
|
|
8
|
+
if (typeof server.requestIP !== "function") {
|
|
9
|
+
throw new TypeError("server.requestIP is not a function.");
|
|
10
|
+
}
|
|
11
|
+
const info = server.requestIP(c.req.raw);
|
|
12
|
+
if (!info) {
|
|
13
|
+
return {
|
|
14
|
+
remote: {}
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
return {
|
|
18
|
+
remote: {
|
|
19
|
+
address: info.address,
|
|
20
|
+
addressType: info.family === "IPv6" || info.family === "IPv4" ? info.family : void 0,
|
|
21
|
+
port: info.port
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export {
|
|
26
|
+
getConnInfo
|
|
27
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// src/adapter/bun/index.ts
|
|
2
|
+
import { serveStatic } from "./serve-static.js";
|
|
3
|
+
import { bunFileSystemModule, toSSG } from "./ssg.js";
|
|
4
|
+
import { createBunWebSocket, upgradeWebSocket, websocket } from "./websocket.js";
|
|
5
|
+
import { getConnInfo } from "./conninfo.js";
|
|
6
|
+
import { getBunServer } from "./server.js";
|
|
7
|
+
export {
|
|
8
|
+
bunFileSystemModule,
|
|
9
|
+
createBunWebSocket,
|
|
10
|
+
getBunServer,
|
|
11
|
+
getConnInfo,
|
|
12
|
+
serveStatic,
|
|
13
|
+
toSSG,
|
|
14
|
+
upgradeWebSocket,
|
|
15
|
+
websocket
|
|
16
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// src/adapter/bun/serve-static.ts
|
|
2
|
+
import { stat } from "node:fs/promises";
|
|
3
|
+
import { join } from "node:path";
|
|
4
|
+
import { serveStatic as baseServeStatic } from "../../middleware/serve-static/index.js";
|
|
5
|
+
var serveStatic = (options = {}) => {
|
|
6
|
+
return async function serveStatic2(c, next) {
|
|
7
|
+
const getContent = async (path) => {
|
|
8
|
+
const file = Bun.file(path);
|
|
9
|
+
return await file.exists() ? file : null;
|
|
10
|
+
};
|
|
11
|
+
const isDir = async (path) => {
|
|
12
|
+
let isDir2;
|
|
13
|
+
try {
|
|
14
|
+
const stats = await stat(path);
|
|
15
|
+
isDir2 = stats.isDirectory();
|
|
16
|
+
} catch {
|
|
17
|
+
}
|
|
18
|
+
return isDir2;
|
|
19
|
+
};
|
|
20
|
+
return baseServeStatic({
|
|
21
|
+
...options,
|
|
22
|
+
getContent,
|
|
23
|
+
join,
|
|
24
|
+
isDir
|
|
25
|
+
})(c, next);
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export {
|
|
29
|
+
serveStatic
|
|
30
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// src/adapter/bun/ssg.ts
|
|
2
|
+
import { toSSG as baseToSSG } from "../../helper/ssg/index.js";
|
|
3
|
+
var { write } = Bun;
|
|
4
|
+
var bunFileSystemModule = {
|
|
5
|
+
writeFile: async (path, data) => {
|
|
6
|
+
await write(path, data);
|
|
7
|
+
},
|
|
8
|
+
mkdir: async () => {
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
var toSSG = async (app, options) => {
|
|
12
|
+
return baseToSSG(app, bunFileSystemModule, options);
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
bunFileSystemModule,
|
|
16
|
+
toSSG
|
|
17
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
// src/adapter/bun/websocket.ts
|
|
2
|
+
import { createWSMessageEvent, defineWebSocketHelper, WSContext } from "../../helper/websocket/index.js";
|
|
3
|
+
import { getBunServer } from "./server.js";
|
|
4
|
+
var createWSContext = (ws) => {
|
|
5
|
+
return new WSContext({
|
|
6
|
+
send: (source, options) => {
|
|
7
|
+
ws.send(source, options?.compress);
|
|
8
|
+
},
|
|
9
|
+
raw: ws,
|
|
10
|
+
readyState: ws.readyState,
|
|
11
|
+
url: ws.data.url,
|
|
12
|
+
protocol: ws.data.protocol,
|
|
13
|
+
close(code, reason) {
|
|
14
|
+
ws.close(code, reason);
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
};
|
|
18
|
+
var upgradeWebSocket = defineWebSocketHelper((c, events) => {
|
|
19
|
+
const server = getBunServer(c);
|
|
20
|
+
if (!server) {
|
|
21
|
+
throw new TypeError("env has to include the 2nd argument of fetch.");
|
|
22
|
+
}
|
|
23
|
+
const upgradeResult = server.upgrade(c.req.raw, {
|
|
24
|
+
data: {
|
|
25
|
+
events,
|
|
26
|
+
url: new URL(c.req.url),
|
|
27
|
+
// The first requested subprotocol, exposed via WSContext.protocol to
|
|
28
|
+
// match the deno and cloudflare adapters.
|
|
29
|
+
protocol: c.req.header("sec-websocket-protocol")?.split(",")[0]?.trim() ?? ""
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
if (upgradeResult) {
|
|
33
|
+
return new Response(null);
|
|
34
|
+
}
|
|
35
|
+
return;
|
|
36
|
+
});
|
|
37
|
+
var websocket = {
|
|
38
|
+
open(ws) {
|
|
39
|
+
const websocketListeners = ws.data.events;
|
|
40
|
+
if (websocketListeners.onOpen) {
|
|
41
|
+
websocketListeners.onOpen(new Event("open"), createWSContext(ws));
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
close(ws, code, reason) {
|
|
45
|
+
const websocketListeners = ws.data.events;
|
|
46
|
+
if (websocketListeners.onClose) {
|
|
47
|
+
websocketListeners.onClose(
|
|
48
|
+
new CloseEvent("close", {
|
|
49
|
+
code,
|
|
50
|
+
reason
|
|
51
|
+
}),
|
|
52
|
+
createWSContext(ws)
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
message(ws, message) {
|
|
57
|
+
const websocketListeners = ws.data.events;
|
|
58
|
+
if (websocketListeners.onMessage) {
|
|
59
|
+
const normalizedReceiveData = typeof message === "string" ? message : message.buffer;
|
|
60
|
+
websocketListeners.onMessage(createWSMessageEvent(normalizedReceiveData), createWSContext(ws));
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
var createBunWebSocket = () => ({
|
|
65
|
+
upgradeWebSocket,
|
|
66
|
+
websocket
|
|
67
|
+
});
|
|
68
|
+
export {
|
|
69
|
+
createBunWebSocket,
|
|
70
|
+
createWSContext,
|
|
71
|
+
upgradeWebSocket,
|
|
72
|
+
websocket
|
|
73
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
// src/adapter/cloudflare-pages/handler.ts
|
|
2
|
+
import { Context } from "../../context.js";
|
|
3
|
+
import { HTTPException } from "../../http-exception.js";
|
|
4
|
+
var handle = (app) => (eventContext) => {
|
|
5
|
+
return app.fetch(
|
|
6
|
+
eventContext.request,
|
|
7
|
+
{ ...eventContext.env, eventContext },
|
|
8
|
+
{
|
|
9
|
+
waitUntil: eventContext.waitUntil,
|
|
10
|
+
passThroughOnException: eventContext.passThroughOnException,
|
|
11
|
+
props: {}
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
};
|
|
15
|
+
function handleMiddleware(middleware) {
|
|
16
|
+
return async (executionCtx) => {
|
|
17
|
+
const context = new Context(executionCtx.request, {
|
|
18
|
+
env: { ...executionCtx.env, eventContext: executionCtx },
|
|
19
|
+
executionCtx
|
|
20
|
+
});
|
|
21
|
+
let response = void 0;
|
|
22
|
+
try {
|
|
23
|
+
response = await middleware(context, async () => {
|
|
24
|
+
try {
|
|
25
|
+
context.res = await executionCtx.next();
|
|
26
|
+
} catch (error) {
|
|
27
|
+
if (error instanceof Error) {
|
|
28
|
+
context.error = error;
|
|
29
|
+
} else {
|
|
30
|
+
throw error;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
} catch (error) {
|
|
35
|
+
if (error instanceof Error) {
|
|
36
|
+
context.error = error;
|
|
37
|
+
} else {
|
|
38
|
+
throw error;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
if (response) {
|
|
42
|
+
return response;
|
|
43
|
+
}
|
|
44
|
+
if (context.error instanceof HTTPException) {
|
|
45
|
+
return context.error.getResponse();
|
|
46
|
+
}
|
|
47
|
+
if (context.error) {
|
|
48
|
+
throw context.error;
|
|
49
|
+
}
|
|
50
|
+
return context.res;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
var serveStatic = () => {
|
|
54
|
+
return async (c) => {
|
|
55
|
+
const env = c.env;
|
|
56
|
+
const res = await env.ASSETS.fetch(c.req.raw);
|
|
57
|
+
if (res.status === 404) {
|
|
58
|
+
return c.notFound();
|
|
59
|
+
}
|
|
60
|
+
return res;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
export {
|
|
64
|
+
handle,
|
|
65
|
+
handleMiddleware,
|
|
66
|
+
serveStatic
|
|
67
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// src/adapter/cloudflare-workers/index.ts
|
|
2
|
+
import { serveStatic } from "./serve-static-module.js";
|
|
3
|
+
import { upgradeWebSocket } from "./websocket.js";
|
|
4
|
+
import { getConnInfo } from "./conninfo.js";
|
|
5
|
+
export {
|
|
6
|
+
getConnInfo,
|
|
7
|
+
serveStatic,
|
|
8
|
+
upgradeWebSocket
|
|
9
|
+
};
|
package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// src/adapter/cloudflare-workers/serve-static.ts
|
|
2
|
+
import { serveStatic as baseServeStatic } from "../../middleware/serve-static/index.js";
|
|
3
|
+
import { getContentFromKVAsset } from "./utils.js";
|
|
4
|
+
var serveStatic = (options = {}) => {
|
|
5
|
+
return async function serveStatic2(c, next) {
|
|
6
|
+
const getContent = async (path) => {
|
|
7
|
+
return getContentFromKVAsset(path, {
|
|
8
|
+
manifest: options.manifest,
|
|
9
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
10
|
+
// @ts-ignore
|
|
11
|
+
namespace: options.namespace ? options.namespace : c.env ? c.env.__STATIC_CONTENT : void 0
|
|
12
|
+
});
|
|
13
|
+
};
|
|
14
|
+
return baseServeStatic({
|
|
15
|
+
...options,
|
|
16
|
+
getContent
|
|
17
|
+
})(c, next);
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
serveStatic
|
|
22
|
+
};
|