codebuff 1.0.221 → 1.0.222

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
@@ -73,28 +73,28 @@ export declare class Client {
73
73
  };
74
74
  userKnowledgeFiles?: Record<string, string> | undefined;
75
75
  fileVersions?: {
76
- content: string;
77
76
  path: string;
77
+ content: string;
78
78
  }[][] | undefined;
79
79
  };
80
80
  messageHistory: {
81
81
  content: string | ({
82
- text: string;
83
82
  type: "text";
83
+ text: string;
84
84
  cache_control?: {
85
85
  type: "ephemeral";
86
86
  } | undefined;
87
87
  } | {
88
- name: string;
89
88
  type: "tool_use";
89
+ name: string;
90
90
  id: string;
91
91
  input: Record<string, any>;
92
92
  cache_control?: {
93
93
  type: "ephemeral";
94
94
  } | undefined;
95
95
  } | {
96
- content: string;
97
96
  type: "tool_result";
97
+ content: string;
98
98
  tool_use_id: string;
99
99
  cache_control?: {
100
100
  type: "ephemeral";
@@ -102,9 +102,9 @@ export declare class Client {
102
102
  } | {
103
103
  type: "image";
104
104
  source: {
105
- data: string;
106
105
  type: "base64";
107
106
  media_type: "image/jpeg";
107
+ data: string;
108
108
  };
109
109
  cache_control?: {
110
110
  type: "ephemeral";