@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.
- package/dist/index.d.ts +3 -8
- 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,
|
|
975
|
-
* - "
|
|
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" | "
|
|
975
|
+
type IsolatorType = "none" | "custom";
|
|
981
976
|
/**
|
|
982
977
|
* Custom executor function for resolver execution.
|
|
983
978
|
* Used when isolator is set to "custom".
|