@zuplo/cli 6.72.3 → 6.72.8

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 (117) hide show
  1. package/node_modules/@fastify/reply-from/.github/dependabot.yml +42 -2
  2. package/node_modules/@fastify/reply-from/README.md +3 -3
  3. package/node_modules/@fastify/reply-from/index.js +6 -1
  4. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/.gitattributes +2 -0
  5. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/.github/dependabot.yml +53 -0
  6. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/.github/workflows/ci.yml +33 -0
  7. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/.github/workflows/lock-threads.yml +19 -0
  8. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/LICENSE +21 -0
  9. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/README.md +188 -0
  10. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/eslint.config.js +6 -0
  11. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/index.js +67 -0
  12. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/lib/getPluginName.js +25 -0
  13. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/lib/toCamelCase.js +10 -0
  14. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/package.json +70 -0
  15. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/bundlers.test.js +110 -0
  16. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/checkVersion.test.js +67 -0
  17. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/composite.test.js +14 -0
  18. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/esm/esm.mjs +11 -0
  19. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/esm/index.test.js +11 -0
  20. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/extractPluginName.test.js +49 -0
  21. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/mu1tip1e.composite.test.js +15 -0
  22. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/test.js +396 -0
  23. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/test/toCamelCase.test.js +24 -0
  24. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/types/example-async.tst.ts +19 -0
  25. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/types/example-callback.tst.ts +19 -0
  26. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/types/index.d.ts +54 -0
  27. package/node_modules/@fastify/reply-from/node_modules/fastify-plugin/types/index.tst.ts +249 -0
  28. package/node_modules/@fastify/reply-from/package.json +6 -7
  29. package/node_modules/@fastify/reply-from/test/incomplete-request.test.js +142 -0
  30. package/node_modules/@fastify/reply-from/types/index.tst.ts +123 -0
  31. package/node_modules/@posthog/core/dist/index.d.ts +1 -0
  32. package/node_modules/@posthog/core/dist/index.d.ts.map +1 -1
  33. package/node_modules/@posthog/core/dist/posthog-core-stateless.d.ts +35 -2
  34. package/node_modules/@posthog/core/dist/posthog-core-stateless.d.ts.map +1 -1
  35. package/node_modules/@posthog/core/dist/posthog-core-stateless.js +68 -56
  36. package/node_modules/@posthog/core/dist/posthog-core-stateless.mjs +68 -56
  37. package/node_modules/@posthog/core/dist/posthog-core.d.ts +2 -1
  38. package/node_modules/@posthog/core/dist/posthog-core.d.ts.map +1 -1
  39. package/node_modules/@posthog/core/dist/posthog-core.js +1 -0
  40. package/node_modules/@posthog/core/dist/posthog-core.mjs +1 -0
  41. package/node_modules/@posthog/core/dist/types.d.ts +1 -0
  42. package/node_modules/@posthog/core/dist/types.d.ts.map +1 -1
  43. package/node_modules/@posthog/core/dist/types.js +1 -0
  44. package/node_modules/@posthog/core/dist/types.mjs +1 -0
  45. package/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.d.ts +17 -0
  46. package/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.d.ts.map +1 -1
  47. package/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.js +18 -1
  48. package/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs +9 -1
  49. package/node_modules/@posthog/core/dist/utils/type-utils.d.ts.map +1 -1
  50. package/node_modules/@posthog/core/package.json +2 -2
  51. package/node_modules/@posthog/core/src/index.ts +3 -0
  52. package/node_modules/@posthog/core/src/posthog-core-stateless.ts +135 -73
  53. package/node_modules/@posthog/core/src/posthog-core.ts +3 -2
  54. package/node_modules/@posthog/core/src/types.ts +5 -0
  55. package/node_modules/@posthog/core/src/utils/bucketed-rate-limiter.spec.ts +38 -1
  56. package/node_modules/@posthog/core/src/utils/bucketed-rate-limiter.ts +29 -0
  57. package/node_modules/@posthog/core/src/utils/type-utils.ts +0 -6
  58. package/node_modules/@posthog/types/LICENSE +2 -2
  59. package/node_modules/@posthog/types/dist/index.d.ts +1 -1
  60. package/node_modules/@posthog/types/dist/index.d.ts.map +1 -1
  61. package/node_modules/@posthog/types/dist/posthog-config.d.ts +32 -11
  62. package/node_modules/@posthog/types/dist/posthog-config.d.ts.map +1 -1
  63. package/node_modules/@posthog/types/package.json +1 -1
  64. package/node_modules/@posthog/types/src/index.ts +1 -0
  65. package/node_modules/@posthog/types/src/posthog-config.ts +34 -11
  66. package/node_modules/@zuplo/core/customer.cli.minified.js +1 -1
  67. package/node_modules/@zuplo/core/index.minified.js +1 -1
  68. package/node_modules/@zuplo/core/package.json +1 -1
  69. package/node_modules/@zuplo/graphql/package.json +1 -1
  70. package/node_modules/@zuplo/openapi-tools/dist/overlay.d.ts.map +1 -1
  71. package/node_modules/@zuplo/openapi-tools/dist/overlay.js +85 -1
  72. package/node_modules/@zuplo/openapi-tools/dist/overlay.js.map +1 -1
  73. package/node_modules/@zuplo/openapi-tools/dist/overlay.spec.js +82 -0
  74. package/node_modules/@zuplo/openapi-tools/dist/overlay.spec.js.map +1 -1
  75. package/node_modules/@zuplo/openapi-tools/package.json +1 -1
  76. package/node_modules/@zuplo/otel/out/esm/chunk-X7TLQJWO.js +26 -0
  77. package/node_modules/@zuplo/otel/out/esm/chunk-X7TLQJWO.js.map +1 -0
  78. package/node_modules/@zuplo/otel/out/esm/index.js +1 -1
  79. package/node_modules/@zuplo/otel/package.json +1 -1
  80. package/node_modules/@zuplo/runtime/out/esm/{chunk-423FXHUV.js → chunk-HKSZ4V6H.js} +124 -124
  81. package/node_modules/@zuplo/runtime/out/esm/chunk-HKSZ4V6H.js.map +1 -0
  82. package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
  83. package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
  84. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
  85. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
  86. package/node_modules/@zuplo/runtime/out/types/index.d.ts +417 -141
  87. package/node_modules/@zuplo/runtime/out/types/mcp-gateway/index.d.ts +9 -9
  88. package/node_modules/@zuplo/runtime/package.json +1 -1
  89. package/node_modules/hono/dist/adapter/aws-lambda/handler.js +1 -4
  90. package/node_modules/hono/dist/adapter/lambda-edge/handler.js +12 -2
  91. package/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +1 -4
  92. package/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +12 -2
  93. package/node_modules/hono/dist/cjs/client/client.js +10 -1
  94. package/node_modules/hono/dist/cjs/client/utils.js +1 -1
  95. package/node_modules/hono/dist/cjs/middleware/cache/index.js +1 -1
  96. package/node_modules/hono/dist/cjs/middleware/compress/index.js +2 -1
  97. package/node_modules/hono/dist/cjs/middleware/etag/index.js +2 -1
  98. package/node_modules/hono/dist/cjs/middleware/method-override/index.js +5 -3
  99. package/node_modules/hono/dist/cjs/router/trie-router/node.js +9 -0
  100. package/node_modules/hono/dist/client/client.js +10 -1
  101. package/node_modules/hono/dist/client/utils.js +1 -1
  102. package/node_modules/hono/dist/middleware/cache/index.js +1 -1
  103. package/node_modules/hono/dist/middleware/compress/index.js +2 -1
  104. package/node_modules/hono/dist/middleware/etag/index.js +2 -1
  105. package/node_modules/hono/dist/middleware/method-override/index.js +5 -3
  106. package/node_modules/hono/dist/router/trie-router/node.js +9 -0
  107. package/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +1 -1
  108. package/node_modules/hono/dist/types/helper/websocket/index.d.ts +1 -1
  109. package/node_modules/hono/dist/types/middleware/language/language.d.ts +18 -0
  110. package/node_modules/hono/dist/types/utils/types.d.ts +1 -1
  111. package/node_modules/hono/package.json +4 -4
  112. package/package.json +6 -6
  113. package/node_modules/@fastify/reply-from/types/index.test-d.ts +0 -194
  114. package/node_modules/@zuplo/otel/out/esm/chunk-T25G5RDX.js +0 -26
  115. package/node_modules/@zuplo/otel/out/esm/chunk-T25G5RDX.js.map +0 -1
  116. package/node_modules/@zuplo/runtime/out/esm/chunk-423FXHUV.js.map +0 -1
  117. /package/node_modules/@zuplo/runtime/out/esm/{chunk-423FXHUV.js.LEGAL.txt → chunk-HKSZ4V6H.js.LEGAL.txt} +0 -0