Skip to content

Commit 33af542

Browse files
committed
feat: add optional 'spawnedBy' field to GatewaySessionRow type
1 parent 20a073b commit 33af542

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- **`GatewaySessionRow`** — added `spawnedBy?: string` field; tracks which session spawned a sub-agent session
10+
711
### Added
812

913
#### OpenClaw v2026.3.12 Compatibility

src/lib/gateway/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export type AgentsListResult = {
9494

9595
export type GatewaySessionRow = {
9696
key: string
97+
spawnedBy?: string
9798
kind: 'direct' | 'group' | 'global' | 'unknown'
9899
label?: string
99100
displayName?: string

0 commit comments

Comments
 (0)