@cocreate/authorize 1.17.3 → 1.17.4

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/authorize",
3
- "version": "1.17.3",
3
+ "version": "1.17.4",
4
4
  "description": "A secure, real-time multi-tenant authorization framework and permission evaluation engine featuring hierarchical dot-notation routing, dynamic query filter injection, and deep payload field sanitization.",
5
5
  "keywords": [
6
6
  "authorization",
package/src/index.js CHANGED
@@ -18,9 +18,6 @@
18
18
  import { getValueFromObject, dotNotationToObject } from "@cocreate/utils";
19
19
  import crud from "@cocreate/crud-server";
20
20
 
21
- // ==========================================
22
- // Module-Level Sandbox State (ESM Singleton)
23
- // ==========================================
24
21
  const organizations = {};
25
22
 
26
23
  // ==========================================