rafcode 2.1.0 → 2.1.1

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.
@@ -11,7 +11,6 @@
11
11
  export interface StreamEvent {
12
12
  type: string;
13
13
  subtype?: string;
14
- session_id?: string;
15
14
  message?: {
16
15
  content?: ContentBlock[];
17
16
  };
@@ -73,8 +72,6 @@ export interface RenderResult {
73
72
  display: string;
74
73
  /** Text content to accumulate for output parsing (completion markers, etc.) */
75
74
  textContent: string;
76
- /** Session ID extracted from system init event, if present */
77
- sessionId?: string;
78
75
  }
79
76
 
80
77
  /**
@@ -96,7 +93,7 @@ export function renderStreamEvent(line: string): RenderResult {
96
93
 
97
94
  switch (event.type) {
98
95
  case 'system':
99
- return { display: '', textContent: '', sessionId: event.session_id };
96
+ return { display: '', textContent: '' };
100
97
 
101
98
  case 'assistant':
102
99
  return renderAssistant(event);
@@ -29,7 +29,6 @@ export interface DoCommandOptions {
29
29
  model?: ClaudeModelName;
30
30
  sonnet?: boolean;
31
31
  worktree?: boolean;
32
- resume?: string;
33
32
  }
34
33
 
35
34
  export interface StatusCommandOptions {