From 22e4c05e69d8d5db39d3d8f909676971c5583afa Mon Sep 17 00:00:00 2001 From: imccyu <276526105+imccyu@users.noreply.github.com> Date: Mon, 27 Jul 2026 05:36:01 +0800 Subject: [PATCH] style: reflow the send-committed event doc under max-len --- packages/client/ui-conversation/src/client/input/contract.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/client/ui-conversation/src/client/input/contract.ts b/packages/client/ui-conversation/src/client/input/contract.ts index 75a0e6b8e4..8a4d2905db 100644 --- a/packages/client/ui-conversation/src/client/input/contract.ts +++ b/packages/client/ui-conversation/src/client/input/contract.ts @@ -250,7 +250,10 @@ export type InputEvent = | { readonly type: 'adjudicated'; readonly attempt: SubmitAttempt; readonly outcome: PickOutcome } | { readonly type: 'adjudication-failed'; readonly attempt: SubmitAttempt; readonly message: string } | { readonly type: 'submit-settled'; readonly attempt: SubmitAttempt; readonly ok: boolean; readonly outcome?: SubmitOutcome; readonly message?: string } - /** An ordinary (default-sink) send was accepted: clear the draft as a COMMIT — undo must not resurrect sent content (mirrors the command submit-settled success arm). */ + /** + * An ordinary (default-sink) send was accepted: clear the draft as a COMMIT — + * undo must not resurrect sent content (mirrors submit-settled's success arm). + */ | { readonly type: 'send-committed' } | { readonly type: 'release' }