agent-afk 5.56.2 → 5.56.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,8 @@ export declare class TerminalCompositor {
14
14
  onCancel?: () => void;
15
15
  onSoftStop?: () => void;
16
16
  softStopped: boolean;
17
- softStopQueueBase: number;
17
+ postEscCoalesce: boolean;
18
+ postEscPayload: SubmissionPayload | null;
18
19
  onBackground?: () => void;
19
20
  onPauseInterrupt?: () => void;
20
21
  onShiftTab?: () => void;
@@ -28,7 +28,8 @@ export interface KeyDispatchHost {
28
28
  readonly activeGhost: string | null;
29
29
  readonly history?: IHistoryRing;
30
30
  softStopped: boolean;
31
- softStopQueueBase: number;
31
+ postEscCoalesce: boolean;
32
+ postEscPayload: SubmissionPayload | null;
32
33
  canceled: boolean;
33
34
  backgrounded: boolean;
34
35
  paused: boolean;
@@ -9,7 +9,8 @@ export interface InputModeHost {
9
9
  pickerController: PickerController | null;
10
10
  readonly autocompleteState?: AutocompleteState;
11
11
  softStopped: boolean;
12
- softStopQueueBase: number;
12
+ postEscCoalesce: boolean;
13
+ postEscPayload: SubmissionPayload | null;
13
14
  canceled: boolean;
14
15
  backgrounded: boolean;
15
16
  queued: boolean;
@@ -11,7 +11,8 @@ export interface ResetStateHost {
11
11
  canceled: boolean;
12
12
  backgrounded: boolean;
13
13
  softStopped: boolean;
14
- softStopQueueBase: number;
14
+ postEscCoalesce: boolean;
15
+ postEscPayload: SubmissionPayload | null;
15
16
  paused: boolean;
16
17
  activeGhost: string | null;
17
18
  anchorRow: number | undefined;