@resourcexjs/core 2.19.0 → 2.20.0

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/dist/index.d.ts +3 -8
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -968,16 +968,11 @@ declare class MemoryRXMStore implements RXMStore {
968
968
  }
969
969
  /**
970
970
  * Isolator type for resolver execution.
971
- * Matches SandboX isolator types directly.
972
- * Configured at Registry level, not per-type.
973
971
  *
974
- * - "none": No isolation, fastest (~10ms), for development
975
- * - "srt": OS-level isolation (~50ms), secure local dev
976
- * - "cloudflare": Container isolation (~100ms), local Docker or edge
977
- * - "e2b": MicroVM isolation (~150ms), production (planned)
978
- * - "custom": User-provided executor function
972
+ * - "none": No isolation, direct eval execution (default)
973
+ * - "custom": User-provided executor function (e.g., QuickJS Wasm for Workers)
979
974
  */
980
- type IsolatorType = "none" | "srt" | "cloudflare" | "e2b" | "custom";
975
+ type IsolatorType = "none" | "custom";
981
976
  /**
982
977
  * Custom executor function for resolver execution.
983
978
  * Used when isolator is set to "custom".
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resourcexjs/core",
3
- "version": "2.19.0",
3
+ "version": "2.20.0",
4
4
  "description": "ResourceX Core - Resource management layer",
5
5
  "keywords": [
6
6
  "resourcex",