codebuff 1.0.289 → 1.0.291

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
@@ -88,28 +88,28 @@ export declare class Client {
88
88
  tokenCallers?: Record<string, Record<string, string[]>> | undefined;
89
89
  userKnowledgeFiles?: Record<string, string> | undefined;
90
90
  fileVersions?: {
91
- content: string;
92
91
  path: string;
92
+ content: string;
93
93
  }[][] | undefined;
94
94
  };
95
95
  messageHistory: {
96
96
  content: string | ({
97
- text: string;
98
97
  type: "text";
98
+ text: string;
99
99
  cache_control?: {
100
100
  type: "ephemeral";
101
101
  } | undefined;
102
102
  } | {
103
- name: string;
104
103
  type: "tool_use";
104
+ name: string;
105
105
  id: string;
106
106
  input: Record<string, any>;
107
107
  cache_control?: {
108
108
  type: "ephemeral";
109
109
  } | undefined;
110
110
  } | {
111
- content: string;
112
111
  type: "tool_result";
112
+ content: string;
113
113
  tool_use_id: string;
114
114
  cache_control?: {
115
115
  type: "ephemeral";
@@ -117,9 +117,9 @@ export declare class Client {
117
117
  } | {
118
118
  type: "image";
119
119
  source: {
120
- data: string;
121
120
  type: "base64";
122
121
  media_type: "image/jpeg";
122
+ data: string;
123
123
  };
124
124
  cache_control?: {
125
125
  type: "ephemeral";