codebuff 1.0.194 → 1.0.197

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
@@ -87,8 +87,8 @@ export declare class Client {
87
87
  type: "ephemeral";
88
88
  } | undefined;
89
89
  } | {
90
- content: string;
91
90
  type: "tool_result";
91
+ content: string;
92
92
  tool_use_id: string;
93
93
  cache_control?: {
94
94
  type: "ephemeral";
@@ -106,6 +106,7 @@ export declare class Client {
106
106
  })[];
107
107
  role: "user" | "assistant";
108
108
  }[];
109
+ lastUserPromptIndex?: number | undefined;
109
110
  };
110
111
  toolResults: {
111
112
  name: string;
@@ -114,8 +115,8 @@ export declare class Client {
114
115
  }[];
115
116
  toolCalls: {
116
117
  name: string;
117
- parameters: Record<string, string>;
118
118
  id: string;
119
+ parameters: Record<string, string>;
119
120
  }[];
120
121
  } & {
121
122
  type: "prompt-response";