@anthropic-ai/claude-code 2.1.132 → 2.1.136
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/package.json +9 -9
- package/sdk-tools.d.ts +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthropic-ai/claude-code",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.136",
|
|
4
4
|
"bin": {
|
|
5
5
|
"claude": "bin/claude.exe"
|
|
6
6
|
},
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {},
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"@anthropic-ai/claude-code-darwin-arm64": "2.1.
|
|
25
|
-
"@anthropic-ai/claude-code-darwin-x64": "2.1.
|
|
26
|
-
"@anthropic-ai/claude-code-linux-x64": "2.1.
|
|
27
|
-
"@anthropic-ai/claude-code-linux-arm64": "2.1.
|
|
28
|
-
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.
|
|
29
|
-
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.
|
|
30
|
-
"@anthropic-ai/claude-code-win32-x64": "2.1.
|
|
31
|
-
"@anthropic-ai/claude-code-win32-arm64": "2.1.
|
|
24
|
+
"@anthropic-ai/claude-code-darwin-arm64": "2.1.136",
|
|
25
|
+
"@anthropic-ai/claude-code-darwin-x64": "2.1.136",
|
|
26
|
+
"@anthropic-ai/claude-code-linux-x64": "2.1.136",
|
|
27
|
+
"@anthropic-ai/claude-code-linux-arm64": "2.1.136",
|
|
28
|
+
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.136",
|
|
29
|
+
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.136",
|
|
30
|
+
"@anthropic-ai/claude-code-win32-x64": "2.1.136",
|
|
31
|
+
"@anthropic-ai/claude-code-win32-arm64": "2.1.136"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"bin/claude.exe",
|
package/sdk-tools.d.ts
CHANGED
|
@@ -260,7 +260,15 @@ export type ListMcpResourcesOutput = {
|
|
|
260
260
|
/**
|
|
261
261
|
* MCP tool execution result
|
|
262
262
|
*/
|
|
263
|
-
export type McpOutput =
|
|
263
|
+
export type McpOutput =
|
|
264
|
+
| string
|
|
265
|
+
| {
|
|
266
|
+
type: string;
|
|
267
|
+
[k: string]: unknown;
|
|
268
|
+
}[]
|
|
269
|
+
| {
|
|
270
|
+
[k: string]: unknown;
|
|
271
|
+
};
|
|
264
272
|
|
|
265
273
|
export interface AgentInput {
|
|
266
274
|
/**
|