@anthropic-ai/claude-code 2.1.191 → 2.1.195
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 -2
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.195",
|
|
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.195",
|
|
25
|
+
"@anthropic-ai/claude-code-darwin-x64": "2.1.195",
|
|
26
|
+
"@anthropic-ai/claude-code-linux-x64": "2.1.195",
|
|
27
|
+
"@anthropic-ai/claude-code-linux-arm64": "2.1.195",
|
|
28
|
+
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.195",
|
|
29
|
+
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.195",
|
|
30
|
+
"@anthropic-ai/claude-code-win32-x64": "2.1.195",
|
|
31
|
+
"@anthropic-ai/claude-code-win32-arm64": "2.1.195"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"bin/claude.exe",
|
package/sdk-tools.d.ts
CHANGED
|
@@ -2508,7 +2508,14 @@ export interface MonitorInput {
|
|
|
2508
2508
|
/**
|
|
2509
2509
|
* Shell command or script. Each stdout line is an event; exit ends the watch.
|
|
2510
2510
|
*/
|
|
2511
|
-
command
|
|
2511
|
+
command?: string;
|
|
2512
|
+
/**
|
|
2513
|
+
* WebSocket to open. Each text frame is an event; binary frames are reported as a placeholder line. Socket close ends the watch. Cannot be combined with command.
|
|
2514
|
+
*/
|
|
2515
|
+
ws?: {
|
|
2516
|
+
url: string;
|
|
2517
|
+
protocols?: string[];
|
|
2518
|
+
};
|
|
2512
2519
|
}
|
|
2513
2520
|
export interface ArtifactInput {
|
|
2514
2521
|
/**
|
|
@@ -2520,7 +2527,7 @@ export interface ArtifactInput {
|
|
|
2520
2527
|
*/
|
|
2521
2528
|
favicon: string;
|
|
2522
2529
|
/**
|
|
2523
|
-
* Short human-readable name for this version (e.g. "fixed-background"). Shown in the version picker
|
|
2530
|
+
* Short human-readable name for this version, max 60 chars (e.g. "fixed-background"). Shown in the version picker. Not a description — keep it to a few words.
|
|
2524
2531
|
*/
|
|
2525
2532
|
label?: string;
|
|
2526
2533
|
/**
|