Base fields shared by all system messages.
| 126 | |
| 127 | /** Base fields shared by all system messages. */ |
| 128 | interface SystemMessageBase { |
| 129 | type: 'system' |
| 130 | uuid: UUID |
| 131 | timestamp: string |
| 132 | isMeta?: boolean |
| 133 | content?: string |
| 134 | level?: SystemMessageLevel |
| 135 | toolUseID?: string |
| 136 | } |
| 137 | |
| 138 | export interface SystemInformationalMessage extends SystemMessageBase { |
| 139 | subtype: 'informational' |
nothing calls this directly
no outgoing calls
no test coverage detected