@zuplo/cli 6.74.8 → 6.74.12

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.
Files changed (92) hide show
  1. package/node_modules/@hono/node-server/README.md +47 -1
  2. package/node_modules/@hono/node-server/dist/early-hints.cjs +35 -0
  3. package/node_modules/@hono/node-server/dist/early-hints.d.cts +16 -0
  4. package/node_modules/@hono/node-server/dist/early-hints.d.mts +16 -0
  5. package/node_modules/@hono/node-server/dist/early-hints.mjs +33 -0
  6. package/node_modules/@hono/node-server/dist/index.cjs +4 -1
  7. package/node_modules/@hono/node-server/dist/index.mjs +4 -1
  8. package/node_modules/@hono/node-server/package.json +14 -1
  9. package/node_modules/@zuplo/core/customer.cli.minified.js +245 -245
  10. package/node_modules/@zuplo/core/index.minified.js +234 -234
  11. package/node_modules/@zuplo/core/package.json +1 -1
  12. package/node_modules/@zuplo/graphql/out/esm/index.js +12 -12
  13. package/node_modules/@zuplo/graphql/package.json +1 -1
  14. package/node_modules/@zuplo/openapi-tools/package.json +2 -2
  15. package/node_modules/@zuplo/otel/out/esm/chunk-AHNBOCFU.js +26 -0
  16. package/node_modules/@zuplo/otel/out/esm/chunk-AHNBOCFU.js.map +1 -0
  17. package/node_modules/@zuplo/otel/out/esm/index.js +1 -1
  18. package/node_modules/@zuplo/otel/package.json +1 -1
  19. package/node_modules/@zuplo/runtime/out/esm/chunk-AVDTZRWM.js +26 -0
  20. package/node_modules/@zuplo/runtime/out/esm/chunk-AVDTZRWM.js.map +1 -0
  21. package/node_modules/@zuplo/runtime/out/esm/{chunk-3E6DNHTO.js → chunk-VVVYHDCV.js} +94 -92
  22. package/node_modules/@zuplo/runtime/out/esm/chunk-VVVYHDCV.js.map +1 -0
  23. package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
  24. package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
  25. package/node_modules/@zuplo/runtime/out/esm/internal/index.js +1 -1
  26. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
  27. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
  28. package/node_modules/@zuplo/runtime/out/types/index.d.ts +231 -0
  29. package/node_modules/@zuplo/runtime/package.json +1 -1
  30. package/node_modules/hono/dist/cjs/context.js +28 -13
  31. package/node_modules/hono/dist/cjs/hono-base.js +3 -2
  32. package/node_modules/hono/dist/cjs/jsx/base.js +26 -14
  33. package/node_modules/hono/dist/cjs/jsx/hooks/index.js +2 -2
  34. package/node_modules/hono/dist/cjs/middleware/cache/index.js +103 -8
  35. package/node_modules/hono/dist/cjs/middleware/compress/index.js +5 -0
  36. package/node_modules/hono/dist/cjs/middleware/cors/index.js +1 -1
  37. package/node_modules/hono/dist/cjs/middleware/etag/index.js +1 -1
  38. package/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +9 -4
  39. package/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +9 -4
  40. package/node_modules/hono/dist/cjs/middleware/method-not-allowed/index.js +90 -0
  41. package/node_modules/hono/dist/cjs/request.js +6 -8
  42. package/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +55 -56
  43. package/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +64 -85
  44. package/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +13 -5
  45. package/node_modules/hono/dist/cjs/router.js +1 -1
  46. package/node_modules/hono/dist/cjs/utils/cookie.js +1 -1
  47. package/node_modules/hono/dist/cjs/utils/url.js +7 -7
  48. package/node_modules/hono/dist/context.js +28 -13
  49. package/node_modules/hono/dist/hono-base.js +3 -2
  50. package/node_modules/hono/dist/jsx/base.js +26 -14
  51. package/node_modules/hono/dist/jsx/hooks/index.js +2 -2
  52. package/node_modules/hono/dist/middleware/cache/index.js +103 -8
  53. package/node_modules/hono/dist/middleware/compress/index.js +5 -0
  54. package/node_modules/hono/dist/middleware/cors/index.js +1 -1
  55. package/node_modules/hono/dist/middleware/etag/index.js +1 -1
  56. package/node_modules/hono/dist/middleware/jwk/jwk.js +9 -4
  57. package/node_modules/hono/dist/middleware/jwt/jwt.js +9 -4
  58. package/node_modules/hono/dist/middleware/method-not-allowed/index.js +68 -0
  59. package/node_modules/hono/dist/request.js +7 -9
  60. package/node_modules/hono/dist/router/reg-exp-router/node.js +55 -56
  61. package/node_modules/hono/dist/router/reg-exp-router/router.js +64 -85
  62. package/node_modules/hono/dist/router/reg-exp-router/trie.js +13 -5
  63. package/node_modules/hono/dist/router.js +1 -1
  64. package/node_modules/hono/dist/types/client/types.d.ts +1 -1
  65. package/node_modules/hono/dist/types/hono-base.d.ts +4 -3
  66. package/node_modules/hono/dist/types/jsx/base.d.ts +4 -2
  67. package/node_modules/hono/dist/types/jsx/dom/index.d.ts +5 -5
  68. package/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +2 -2
  69. package/node_modules/hono/dist/types/jsx/dom/server.d.ts +5 -5
  70. package/node_modules/hono/dist/types/jsx/hooks/index.d.ts +8 -6
  71. package/node_modules/hono/dist/types/jsx/index.d.ts +5 -5
  72. package/node_modules/hono/dist/types/middleware/cache/index.d.ts +6 -4
  73. package/node_modules/hono/dist/types/middleware/cors/index.d.ts +1 -1
  74. package/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +2 -2
  75. package/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +2 -0
  76. package/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +2 -0
  77. package/node_modules/hono/dist/types/middleware/method-not-allowed/index.d.ts +49 -0
  78. package/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +1 -1
  79. package/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +2 -1
  80. package/node_modules/hono/dist/types/router.d.ts +1 -1
  81. package/node_modules/hono/dist/types/utils/headers.d.ts +2 -2
  82. package/node_modules/hono/dist/types/utils/url.d.ts +1 -0
  83. package/node_modules/hono/dist/utils/cookie.js +2 -2
  84. package/node_modules/hono/dist/utils/url.js +5 -6
  85. package/node_modules/hono/package.json +9 -1
  86. package/package.json +6 -6
  87. package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js +0 -26
  88. package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js.map +0 -1
  89. package/node_modules/@zuplo/runtime/out/esm/chunk-3E6DNHTO.js.map +0 -1
  90. package/node_modules/@zuplo/runtime/out/esm/chunk-ZB7PAWBM.js +0 -26
  91. package/node_modules/@zuplo/runtime/out/esm/chunk-ZB7PAWBM.js.map +0 -1
  92. /package/node_modules/@zuplo/runtime/out/esm/{chunk-3E6DNHTO.js.LEGAL.txt → chunk-VVVYHDCV.js.LEGAL.txt} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.