@anthropic-ai/claude-code 2.1.247 → 2.1.250
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 +2 -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.250",
|
|
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.250",
|
|
25
|
+
"@anthropic-ai/claude-code-darwin-x64": "2.1.250",
|
|
26
|
+
"@anthropic-ai/claude-code-linux-x64": "2.1.250",
|
|
27
|
+
"@anthropic-ai/claude-code-linux-arm64": "2.1.250",
|
|
28
|
+
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.250",
|
|
29
|
+
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.250",
|
|
30
|
+
"@anthropic-ai/claude-code-win32-x64": "2.1.250",
|
|
31
|
+
"@anthropic-ai/claude-code-win32-arm64": "2.1.250"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"bin/claude.exe",
|
package/sdk-tools.d.ts
CHANGED
|
@@ -448,6 +448,7 @@ export type ArtifactOutput =
|
|
|
448
448
|
artifacts: {
|
|
449
449
|
title: string;
|
|
450
450
|
url: string;
|
|
451
|
+
favicon?: string;
|
|
451
452
|
updatedAt?: string;
|
|
452
453
|
rel?: "mine" | "shared";
|
|
453
454
|
}[];
|
|
@@ -3062,7 +3063,7 @@ export interface ArtifactInput {
|
|
|
3062
3063
|
*/
|
|
3063
3064
|
file_path?: string;
|
|
3064
3065
|
/**
|
|
3065
|
-
* Browser-tab icon: one or two emoji (e.g. "📊"). No markup. Required
|
|
3066
|
+
* Browser-tab icon: one or two emoji (e.g. "📊"). No markup. Required on a page's first publish; omit on a redeploy (same file path this session, or `url`) to keep the artifact's icon — pass a new one only when the user asks.
|
|
3066
3067
|
*/
|
|
3067
3068
|
favicon?: string;
|
|
3068
3069
|
/**
|