fix(424): add throttled field to all StoryAgent ctors and handle HardBlock in ws.rs

The initial commit added the `throttled` field to `StoryAgent` but missed
several construction sites in lifecycle.rs, test_helpers.rs, and scan.rs.
Also adds the `HardBlock` match arm in the WebSocket event conversion and
minor CSS/import ordering fixes.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
dave
2026-03-28 09:55:19 +00:00
parent ebdcf18134
commit 3639d64da6
7 changed files with 19 additions and 12 deletions
+4 -4
View File
@@ -127,13 +127,13 @@ details summary::-webkit-details-marker {
display: none;
}
details[open] summary span:first-child {
transform: rotate(90deg);
display: inline-block;
details summary span:first-child {
transition: transform 0.2s ease;
}
details summary span:first-child {
details[open] summary span:first-child {
transform: rotate(90deg);
display: inline-block;
transition: transform 0.2s ease;
}
+2 -2
View File
@@ -70,11 +70,11 @@ export type WsResponse =
// Re-export API client types for convenience
export type {
CommandOutput as ApiCommandOutput,
FileEntry as ApiFileEntry,
Message as ApiMessage,
ProviderConfig as ApiProviderConfig,
FileEntry as ApiFileEntry,
SearchResult as ApiSearchResult,
CommandOutput as ApiCommandOutput,
WsRequest as ApiWsRequest,
WsResponse as ApiWsResponse,
};