codebuff 1.0.209 → 1.0.211

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.
package/dist/client.d.ts CHANGED
@@ -84,16 +84,16 @@ export declare class Client {
84
84
  type: "ephemeral";
85
85
  } | undefined;
86
86
  } | {
87
+ id: string;
87
88
  type: "tool_use";
88
89
  name: string;
89
- id: string;
90
90
  input: Record<string, any>;
91
91
  cache_control?: {
92
92
  type: "ephemeral";
93
93
  } | undefined;
94
94
  } | {
95
- type: "tool_result";
96
95
  content: string;
96
+ type: "tool_result";
97
97
  tool_use_id: string;
98
98
  cache_control?: {
99
99
  type: "ephemeral";
@@ -114,13 +114,13 @@ export declare class Client {
114
114
  lastUserPromptIndex?: number | undefined;
115
115
  };
116
116
  toolResults: {
117
- name: string;
118
117
  id: string;
118
+ name: string;
119
119
  result: string;
120
120
  }[];
121
121
  toolCalls: {
122
- name: string;
123
122
  id: string;
123
+ name: string;
124
124
  parameters: Record<string, string>;
125
125
  }[];
126
126
  } & {