wicked-core-ts 0.7.6 → 0.7.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.
- package/index.d.ts +10 -0
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -59,6 +59,16 @@ export interface LaunchOptions {
|
|
|
59
59
|
* session persisted. Omit for runs that deliver inside their own workdir.
|
|
60
60
|
*/
|
|
61
61
|
extraWriteRoots?: Array<string>
|
|
62
|
+
/**
|
|
63
|
+
* ADDITIONAL absolute READ-ONLY roots for the run (core#294) — the read mirror of
|
|
64
|
+
* `extraWriteRoots`, for grounding a run in content it must never edit (e.g. a repo the
|
|
65
|
+
* workflow reads without binding its worktree). Reads inside these roots pass the governed
|
|
66
|
+
* units' boundary; WRITES there stay denied — a read root never widens write scope. Same
|
|
67
|
+
* launch-side vetting as the write roots (absolute, outside the engine's config/pin tree);
|
|
68
|
+
* an invalid root REJECTS the launch with no session persisted. Omit for the default
|
|
69
|
+
* evidence-derived read boundary.
|
|
70
|
+
*/
|
|
71
|
+
extraReadRoots?: Array<string>
|
|
62
72
|
/**
|
|
63
73
|
* The PROJECT code graph this run's governed workers should query, instead of the run repo's
|
|
64
74
|
* own graph — one database holding every member repo of the project, so a worker's
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wicked-core-ts",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.8",
|
|
4
4
|
"description": "Node/TypeScript bindings (napi-rs) for wicked-core: drive the in-process orchestration engine from JS/TS.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"smoke:all": "node smoke.mjs && node smoke-lifecycle.mjs && node smoke-terminal.mjs && node smoke-evals.mjs"
|
|
43
43
|
},
|
|
44
44
|
"optionalDependencies": {
|
|
45
|
-
"wicked-core-ts-darwin-arm64": "0.7.
|
|
46
|
-
"wicked-core-ts-darwin-x64": "0.7.
|
|
47
|
-
"wicked-core-ts-linux-arm64-gnu": "0.7.
|
|
48
|
-
"wicked-core-ts-linux-x64-gnu": "0.7.
|
|
49
|
-
"wicked-core-ts-win32-x64-msvc": "0.7.
|
|
45
|
+
"wicked-core-ts-darwin-arm64": "0.7.8",
|
|
46
|
+
"wicked-core-ts-darwin-x64": "0.7.8",
|
|
47
|
+
"wicked-core-ts-linux-arm64-gnu": "0.7.8",
|
|
48
|
+
"wicked-core-ts-linux-x64-gnu": "0.7.8",
|
|
49
|
+
"wicked-core-ts-win32-x64-msvc": "0.7.8"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@napi-rs/cli": "^2.18.4"
|