@agentconnect.md/cli 1.15.0-rc.1 → 1.15.0-rc.4
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.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8836,6 +8836,7 @@ const SessionUsage = object({
|
|
|
8836
8836
|
/** One row in the session list (metadata + console metrics; NOT the transcript). */
|
|
8837
8837
|
const SessionListItem = object({
|
|
8838
8838
|
sessionId: string(),
|
|
8839
|
+
parentSessionId: string().optional(),
|
|
8839
8840
|
sessionKey: SessionKey,
|
|
8840
8841
|
agentId: string().uuid(),
|
|
8841
8842
|
title: string().optional(),
|
|
@@ -9274,6 +9275,7 @@ const Heartbeat = object({
|
|
|
9274
9275
|
/** Converged session lifecycle milestone — protocol §7.2. NOT the message stream. */
|
|
9275
9276
|
const EventSession = object({
|
|
9276
9277
|
sessionId: string(),
|
|
9278
|
+
parentSessionId: string().optional(),
|
|
9277
9279
|
agentId: string().uuid(),
|
|
9278
9280
|
launchId: string().uuid().optional(),
|
|
9279
9281
|
phase: _enum([
|