@anthropic-ai/claude-code 2.1.259 → 2.1.260
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 +3 -0
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.260",
|
|
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.260",
|
|
25
|
+
"@anthropic-ai/claude-code-darwin-x64": "2.1.260",
|
|
26
|
+
"@anthropic-ai/claude-code-linux-x64": "2.1.260",
|
|
27
|
+
"@anthropic-ai/claude-code-linux-arm64": "2.1.260",
|
|
28
|
+
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.260",
|
|
29
|
+
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.260",
|
|
30
|
+
"@anthropic-ai/claude-code-win32-x64": "2.1.260",
|
|
31
|
+
"@anthropic-ai/claude-code-win32-arm64": "2.1.260"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"bin/claude.exe",
|
package/sdk-tools.d.ts
CHANGED
|
@@ -577,6 +577,7 @@ export type ArtifactOutput =
|
|
|
577
577
|
max_bytes: number;
|
|
578
578
|
};
|
|
579
579
|
next?: string;
|
|
580
|
+
cowritten?: true;
|
|
580
581
|
};
|
|
581
582
|
}
|
|
582
583
|
| {
|
|
@@ -586,6 +587,7 @@ export type ArtifactOutput =
|
|
|
586
587
|
size_bytes: number;
|
|
587
588
|
content_type: string;
|
|
588
589
|
sha256: string;
|
|
590
|
+
cowritten?: true;
|
|
589
591
|
};
|
|
590
592
|
}
|
|
591
593
|
| {
|
|
@@ -3057,6 +3059,7 @@ export interface ArtifactInput {
|
|
|
3057
3059
|
| "publish"
|
|
3058
3060
|
| "list"
|
|
3059
3061
|
| "read"
|
|
3062
|
+
| "list_types"
|
|
3060
3063
|
| "watch"
|
|
3061
3064
|
| "unwatch"
|
|
3062
3065
|
| "status"
|