agent-device 0.8.6 → 0.9.0

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.
@@ -18,6 +18,7 @@ export declare class SessionStore {
18
18
  command: string;
19
19
  positionals: string[];
20
20
  flags: CommandFlags;
21
+ runtime?: SessionRuntimeHints;
21
22
  result?: Record<string, unknown>;
22
23
  }): void;
23
24
  writeSessionLog(session: SessionState): void;
@@ -105,6 +105,7 @@ export type SessionAction = {
105
105
  ts: number;
106
106
  command: string;
107
107
  positionals: string[];
108
+ runtime?: SessionRuntimeHints;
108
109
  flags: Partial<CommandFlags> & {
109
110
  snapshotInteractiveOnly?: boolean;
110
111
  snapshotCompact?: boolean;