fix: Address code review comments

This commit is contained in:
gsxdsm
2026-02-17 23:04:42 -08:00
parent 43c19c70ca
commit dd4c738e91
43 changed files with 1128 additions and 359 deletions

View File

@@ -40,6 +40,9 @@ export type EventType =
| 'ideation:idea-updated'
| 'ideation:idea-deleted'
| 'ideation:idea-converted'
| 'worktree:copy-files:copied'
| 'worktree:copy-files:skipped'
| 'worktree:copy-files:failed'
| 'worktree:init-started'
| 'worktree:init-output'
| 'worktree:init-completed'
@@ -53,6 +56,14 @@ export type EventType =
| 'test-runner:completed'
| 'test-runner:error'
| 'test-runner:result'
| 'cherry-pick:started'
| 'cherry-pick:success'
| 'cherry-pick:conflict'
| 'cherry-pick:failure'
| 'branchCommitLog:start'
| 'branchCommitLog:progress'
| 'branchCommitLog:done'
| 'branchCommitLog:error'
| 'notification:created';
export type EventCallback = (type: EventType, payload: unknown) => void;