@poe-platform/safe-js 0.1.71 → 0.1.72
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.
|
@@ -213,6 +213,10 @@ export interface ServerOptions {
|
|
|
213
213
|
maxConcurrentToolCalls?: number;
|
|
214
214
|
/** Maximum tool calls waiting for capacity; defaults to 64. Zero disables waiting. */
|
|
215
215
|
maxQueuedToolCalls?: number;
|
|
216
|
+
/** Per-stdio-connection UTF-8 bytes queued or submitted but unsettled; defaults to 1 MiB. */
|
|
217
|
+
maxStdioOutputBytes?: number;
|
|
218
|
+
/** Per-stdio-connection messages awaiting handler/output settlement; defaults to 128. */
|
|
219
|
+
maxPendingStdioMessages?: number;
|
|
216
220
|
validateToolArguments?: boolean;
|
|
217
221
|
supportNotifications?: boolean;
|
|
218
222
|
supportResourceSubscriptions?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poe-platform/safe-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.72",
|
|
4
4
|
"description": "Budgeted JavaScript interpreter with explicit host capabilities and resumable execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@poe-platform/safe-fs": "0.1.
|
|
61
|
+
"@poe-platform/safe-fs": "0.1.72",
|
|
62
62
|
"yaml": "^2.8.2",
|
|
63
63
|
"jose": "^6.1.3",
|
|
64
64
|
"@types/node": "^25.2.2"
|