@arcis/node 1.6.3 → 1.6.5

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 (51) hide show
  1. package/README.md +4 -4
  2. package/dist/astro/index.js.map +1 -1
  3. package/dist/astro/index.mjs.map +1 -1
  4. package/dist/bun/index.js.map +1 -1
  5. package/dist/bun/index.mjs.map +1 -1
  6. package/dist/core/constants.d.ts +1 -1
  7. package/dist/core/constants.d.ts.map +1 -1
  8. package/dist/core/index.js +51 -5
  9. package/dist/core/index.js.map +1 -1
  10. package/dist/core/index.mjs +51 -5
  11. package/dist/core/index.mjs.map +1 -1
  12. package/dist/fastify/index.js.map +1 -1
  13. package/dist/fastify/index.mjs.map +1 -1
  14. package/dist/hono/index.js.map +1 -1
  15. package/dist/hono/index.mjs.map +1 -1
  16. package/dist/index.js +54 -7
  17. package/dist/index.js.map +1 -1
  18. package/dist/index.mjs +54 -7
  19. package/dist/index.mjs.map +1 -1
  20. package/dist/koa/index.js.map +1 -1
  21. package/dist/koa/index.mjs.map +1 -1
  22. package/dist/logging/index.js.map +1 -1
  23. package/dist/logging/index.mjs.map +1 -1
  24. package/dist/middleware/index.js +54 -7
  25. package/dist/middleware/index.js.map +1 -1
  26. package/dist/middleware/index.mjs +54 -7
  27. package/dist/middleware/index.mjs.map +1 -1
  28. package/dist/nestjs/index.js +54 -7
  29. package/dist/nestjs/index.js.map +1 -1
  30. package/dist/nestjs/index.mjs +54 -7
  31. package/dist/nestjs/index.mjs.map +1 -1
  32. package/dist/nextjs/index.js.map +1 -1
  33. package/dist/nextjs/index.mjs.map +1 -1
  34. package/dist/nuxt/index.js.map +1 -1
  35. package/dist/nuxt/index.mjs.map +1 -1
  36. package/dist/sanitizers/index.js +54 -7
  37. package/dist/sanitizers/index.js.map +1 -1
  38. package/dist/sanitizers/index.mjs +54 -7
  39. package/dist/sanitizers/index.mjs.map +1 -1
  40. package/dist/sanitizers/ldap.d.ts +13 -1
  41. package/dist/sanitizers/ldap.d.ts.map +1 -1
  42. package/dist/stores/index.js.map +1 -1
  43. package/dist/stores/index.mjs.map +1 -1
  44. package/dist/sveltekit/index.js.map +1 -1
  45. package/dist/sveltekit/index.mjs.map +1 -1
  46. package/dist/validation/index.js +51 -5
  47. package/dist/validation/index.js.map +1 -1
  48. package/dist/validation/index.mjs +51 -5
  49. package/dist/validation/index.mjs.map +1 -1
  50. package/package.json +9 -9
  51. package/scripts/postinstall.cjs +1 -1
package/README.md CHANGED
@@ -19,9 +19,9 @@ What `arcis({ block: true })` actually wires into the request path: XSS, SQL inj
19
19
 
20
20
  Available as opt-in helpers (not auto-wired into `arcis()`): bot detection (695-pattern corpus, `botProtection()`), per-IP correlation window (`new CorrelationWindow(...)`), HPP guard (`hppProtection()`), CSRF (`csrfProtection()`), V32 toolcall-injection signatures (`detectPromptInjection`), V33 deserialization markers (`detectDeserialization`), V34 GraphQL alias bomb / fragment cycle (`graphqlGuard`), SSRF URL validation (`validateUrl`). Compose as needed.
21
21
 
22
- **Docs**: [Quickstart](https://gagancm.github.io/arcis/documentation/getting-started.html) · [Detector reference](https://gagancm.github.io/arcis/documentation/detectors/) · [Framework adapters](https://gagancm.github.io/arcis/documentation/frameworks.html) · [Why Arcis](https://gagancm.github.io/arcis/documentation/why-arcis.html) · [Release notes](https://gagancm.github.io/arcis/documentation/release-notes.html)
22
+ **Docs**: [Quickstart](https://arcis-website.pages.dev/documentation/getting-started.html) · [Detector reference](https://arcis-website.pages.dev/documentation/detectors/) · [Framework adapters](https://arcis-website.pages.dev/documentation/frameworks.html) · [Why Arcis](https://arcis-website.pages.dev/documentation/why-arcis.html) · [Release notes](https://arcis-website.pages.dev/documentation/release-notes.html)
23
23
 
24
- **Part of the [Arcis](https://github.com/Gagancm/arcis) ecosystem.** Node + Python + Go SDKs at full parity from one shared specification. **2,116+ Node tests · 1,688+ Python · 483+ Go.** All passing in CI on every PR.
24
+ **Part of the [Arcis](https://github.com/getarcis/arcis) ecosystem.** Node + Python + Go SDKs at full parity from one shared specification. **2,116+ Node tests · 1,688+ Python · 483+ Go.** All passing in CI on every PR.
25
25
 
26
26
  ## Framework support
27
27
 
@@ -63,7 +63,7 @@ Available as opt-in helpers (not auto-wired into `arcis()`): bot detection (695-
63
63
 
64
64
  - **Detect-and-block middleware** — opt in with `arcis({ block: true })`. Returns 403 + tags telemetry on attack-pattern match instead of silently sanitizing.
65
65
  - **Telemetry queue cap** — sustained dashboard outage no longer OOMs the worker. Drop-oldest semantics, optional `onQueueOverflow` callback.
66
- - See the full release history at [gagancm.github.io/arcis/changelog.html](https://gagancm.github.io/arcis/changelog.html).
66
+ - See the full release history at [arcis-website.pages.dev/changelog.html](https://arcis-website.pages.dev/changelog.html).
67
67
 
68
68
  ## Installation
69
69
 
@@ -223,7 +223,7 @@ import { MemoryStore } from '@arcis/node/stores';
223
223
 
224
224
  ## Documentation
225
225
 
226
- Detailed configuration, API reference, Redis setup, and architecture docs are in the [Wiki](https://github.com/Gagancm/arcis/wiki).
226
+ Detailed configuration, API reference, Redis setup, and architecture docs are in the [Wiki](https://github.com/getarcis/arcis/wiki).
227
227
 
228
228
  ## Contributing
229
229