@xenosystem/agent-sdk 0.9.24 → 0.9.26
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/artifacts/index.cjs +1 -1
- package/dist/artifacts/index.js +1 -1
- package/dist/automation/index.cjs +9 -9
- package/dist/automation/index.d.cts +69 -3
- package/dist/automation/index.d.ts +69 -3
- package/dist/automation/index.js +9 -9
- package/dist/automation/metafile-cjs.json +1 -1
- package/dist/automation/metafile-esm.json +1 -1
- package/dist/control-plane/index.cjs +1 -1
- package/dist/control-plane/index.js +1 -1
- package/dist/coordination/index.cjs +2 -2
- package/dist/coordination/index.d.cts +15 -3
- package/dist/coordination/index.d.ts +15 -3
- package/dist/coordination/index.js +2 -2
- package/dist/coordination/metafile-cjs.json +1 -1
- package/dist/coordination/metafile-esm.json +1 -1
- package/dist/electron/index.cjs +157 -153
- package/dist/electron/index.d.cts +22 -3
- package/dist/electron/index.d.ts +22 -3
- package/dist/electron/index.js +157 -153
- package/dist/electron/metafile-cjs.json +1 -1
- package/dist/electron/metafile-esm.json +1 -1
- package/dist/governance/index.d.cts +2 -0
- package/dist/governance/index.d.ts +2 -0
- package/dist/hosted/index.cjs +1 -1
- package/dist/hosted/index.js +1 -1
- package/dist/hosted/metafile-cjs.json +1 -1
- package/dist/hosted/metafile-esm.json +1 -1
- package/dist/index.cjs +473 -343
- package/dist/index.d.cts +314 -31
- package/dist/index.d.ts +314 -31
- package/dist/index.js +473 -343
- package/dist/mcp/index.d.cts +3 -0
- package/dist/mcp/index.d.ts +3 -0
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/providers/index.cjs +10 -10
- package/dist/providers/index.d.cts +92 -17
- package/dist/providers/index.d.ts +92 -17
- package/dist/providers/index.js +10 -10
- package/dist/providers/metafile-cjs.json +1 -1
- package/dist/providers/metafile-esm.json +1 -1
- package/dist/session/index.cjs +1 -1
- package/dist/session/index.d.cts +2 -0
- package/dist/session/index.d.ts +2 -0
- package/dist/session/index.js +1 -1
- package/dist/session/metafile-cjs.json +1 -1
- package/dist/session/metafile-esm.json +1 -1
- package/dist/skills/index.d.cts +3 -0
- package/dist/skills/index.d.ts +3 -0
- package/dist/ui/index.d.cts +2 -0
- package/dist/ui/index.d.ts +2 -0
- package/dist/utils/index.d.cts +2 -0
- package/dist/utils/index.d.ts +2 -0
- package/package.json +10 -1
package/dist/mcp/index.d.cts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WebJobProgress } from "@xenosystem/web-context-client/progress";
|
|
1
2
|
import { ChildProcess } from "node:child_process";
|
|
2
3
|
type PermissionProfileName = "default" | "read-only" | "trusted-dev";
|
|
3
4
|
type PermissionProfileDecision = "allow" | "ask" | "deny";
|
|
@@ -468,6 +469,7 @@ interface WebContextToolResult {
|
|
|
468
469
|
mediaType: string;
|
|
469
470
|
bytes: number;
|
|
470
471
|
};
|
|
472
|
+
jobProgress?: WebJobProgress;
|
|
471
473
|
}
|
|
472
474
|
interface ToolDefinition {
|
|
473
475
|
name: string;
|
|
@@ -549,6 +551,7 @@ interface ToolProgressUpdate {
|
|
|
549
551
|
bytes?: number;
|
|
550
552
|
outputBytes?: number;
|
|
551
553
|
nextOffset?: number;
|
|
554
|
+
webContextProgress?: WebJobProgress;
|
|
552
555
|
}
|
|
553
556
|
interface ToolAuthorizationReceipt {
|
|
554
557
|
turnId: string;
|
package/dist/mcp/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WebJobProgress } from "@xenosystem/web-context-client/progress";
|
|
1
2
|
import { ChildProcess } from "node:child_process";
|
|
2
3
|
type PermissionProfileName = "default" | "read-only" | "trusted-dev";
|
|
3
4
|
type PermissionProfileDecision = "allow" | "ask" | "deny";
|
|
@@ -468,6 +469,7 @@ interface WebContextToolResult {
|
|
|
468
469
|
mediaType: string;
|
|
469
470
|
bytes: number;
|
|
470
471
|
};
|
|
472
|
+
jobProgress?: WebJobProgress;
|
|
471
473
|
}
|
|
472
474
|
interface ToolDefinition {
|
|
473
475
|
name: string;
|
|
@@ -549,6 +551,7 @@ interface ToolProgressUpdate {
|
|
|
549
551
|
bytes?: number;
|
|
550
552
|
outputBytes?: number;
|
|
551
553
|
nextOffset?: number;
|
|
554
|
+
webContextProgress?: WebJobProgress;
|
|
552
555
|
}
|
|
553
556
|
interface ToolAuthorizationReceipt {
|
|
554
557
|
turnId: string;
|