@xenosystem/agent-sdk 0.9.29 → 0.9.31
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 +1 -1
- package/dist/automation/index.js +1 -1
- package/dist/control-plane/index.cjs +1 -1
- package/dist/control-plane/index.js +1 -1
- package/dist/electron/index.cjs +196 -152
- package/dist/electron/index.d.cts +4 -0
- package/dist/electron/index.d.ts +4 -0
- package/dist/electron/index.js +196 -152
- package/dist/electron/metafile-cjs.json +1 -1
- package/dist/electron/metafile-esm.json +1 -1
- 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 +372 -372
- package/dist/index.d.cts +33 -1
- package/dist/index.d.ts +33 -1
- package/dist/index.js +372 -372
- package/dist/mcp/index.cjs +13 -13
- package/dist/mcp/index.d.cts +20 -1
- package/dist/mcp/index.d.ts +20 -1
- package/dist/mcp/index.js +12 -12
- package/dist/mcp/metafile-cjs.json +1 -1
- package/dist/mcp/metafile-esm.json +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/session/index.cjs +16 -16
- package/dist/session/index.d.cts +12 -0
- package/dist/session/index.d.ts +12 -0
- package/dist/session/index.js +21 -21
- package/dist/session/metafile-cjs.json +1 -1
- package/dist/session/metafile-esm.json +1 -1
- package/package.json +1 -1
|
@@ -405,6 +405,8 @@ interface SessionMeta {
|
|
|
405
405
|
};
|
|
406
406
|
formatVersion?: number;
|
|
407
407
|
hostBinding?: AgentSessionHostBindingV1;
|
|
408
|
+
pinned?: boolean;
|
|
409
|
+
pinnedAt?: string;
|
|
408
410
|
}
|
|
409
411
|
type TranscriptEventType = "session_start" | "user_message" | "assistant_message" | "tool_call" | "tool_result" | "delegation_summary" | "checkpoint" | "context_compressed" | "session_end" | "error";
|
|
410
412
|
interface SessionStartData {
|
|
@@ -413,6 +415,8 @@ interface SessionStartData {
|
|
|
413
415
|
model: string;
|
|
414
416
|
workingDirectory: string;
|
|
415
417
|
formatVersion?: number;
|
|
418
|
+
forkedFrom?: string;
|
|
419
|
+
checkpointId?: string;
|
|
416
420
|
}
|
|
417
421
|
interface ToolCallData {
|
|
418
422
|
toolName: string;
|
package/dist/electron/index.d.ts
CHANGED
|
@@ -405,6 +405,8 @@ interface SessionMeta {
|
|
|
405
405
|
};
|
|
406
406
|
formatVersion?: number;
|
|
407
407
|
hostBinding?: AgentSessionHostBindingV1;
|
|
408
|
+
pinned?: boolean;
|
|
409
|
+
pinnedAt?: string;
|
|
408
410
|
}
|
|
409
411
|
type TranscriptEventType = "session_start" | "user_message" | "assistant_message" | "tool_call" | "tool_result" | "delegation_summary" | "checkpoint" | "context_compressed" | "session_end" | "error";
|
|
410
412
|
interface SessionStartData {
|
|
@@ -413,6 +415,8 @@ interface SessionStartData {
|
|
|
413
415
|
model: string;
|
|
414
416
|
workingDirectory: string;
|
|
415
417
|
formatVersion?: number;
|
|
418
|
+
forkedFrom?: string;
|
|
419
|
+
checkpointId?: string;
|
|
416
420
|
}
|
|
417
421
|
interface ToolCallData {
|
|
418
422
|
toolName: string;
|