@zooid/core 0.9.1 → 0.10.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 +2 -2
- package/package.json +2 -2
- package/src/types.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -118,8 +118,8 @@ interface ContainerConfig {
|
|
|
118
118
|
disable_mounts?: string[];
|
|
119
119
|
}
|
|
120
120
|
/**
|
|
121
|
-
* Workforce-level container defaults. Currently `image` only —
|
|
122
|
-
*
|
|
121
|
+
* Workforce-level container defaults. Currently `image` only — workforce-level
|
|
122
|
+
* env is intentionally unsupported (set env per-agent under `container.env`).
|
|
123
123
|
*/
|
|
124
124
|
interface ZooidContainerConfig {
|
|
125
125
|
image?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zooid/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "zooid core: SessionRunner, Chunker, hooks, config parsing, and the Runtime/Adapter/Transport interfaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"dotenv-expand": "^13.0.0",
|
|
28
28
|
"yaml": "^2.5.0",
|
|
29
|
-
"@zooid/acp-client": "^0.
|
|
29
|
+
"@zooid/acp-client": "^0.10.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|
package/src/types.ts
CHANGED
|
@@ -69,8 +69,8 @@ export interface ContainerConfig {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
|
-
* Workforce-level container defaults. Currently `image` only —
|
|
73
|
-
*
|
|
72
|
+
* Workforce-level container defaults. Currently `image` only — workforce-level
|
|
73
|
+
* env is intentionally unsupported (set env per-agent under `container.env`).
|
|
74
74
|
*/
|
|
75
75
|
export interface ZooidContainerConfig {
|
|
76
76
|
image?: string
|