@anthropic-ai/claude-code 2.1.179 → 2.1.182

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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/sdk-tools.d.ts +17 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.179",
3
+ "version": "2.1.182",
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.179",
25
- "@anthropic-ai/claude-code-darwin-x64": "2.1.179",
26
- "@anthropic-ai/claude-code-linux-x64": "2.1.179",
27
- "@anthropic-ai/claude-code-linux-arm64": "2.1.179",
28
- "@anthropic-ai/claude-code-linux-x64-musl": "2.1.179",
29
- "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.179",
30
- "@anthropic-ai/claude-code-win32-x64": "2.1.179",
31
- "@anthropic-ai/claude-code-win32-arm64": "2.1.179"
24
+ "@anthropic-ai/claude-code-darwin-arm64": "2.1.182",
25
+ "@anthropic-ai/claude-code-darwin-x64": "2.1.182",
26
+ "@anthropic-ai/claude-code-linux-x64": "2.1.182",
27
+ "@anthropic-ai/claude-code-linux-arm64": "2.1.182",
28
+ "@anthropic-ai/claude-code-linux-x64-musl": "2.1.182",
29
+ "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.182",
30
+ "@anthropic-ai/claude-code-win32-x64": "2.1.182",
31
+ "@anthropic-ai/claude-code-win32-arm64": "2.1.182"
32
32
  },
33
33
  "files": [
34
34
  "bin/claude.exe",
package/sdk-tools.d.ts CHANGED
@@ -2572,10 +2572,6 @@ export interface BashOutput {
2572
2572
  * True if the user manually backgrounded the command with Ctrl+B
2573
2573
  */
2574
2574
  backgroundedByUser?: boolean;
2575
- /**
2576
- * True if assistant-mode auto-backgrounded a long-running blocking command
2577
- */
2578
- assistantAutoBackgrounded?: boolean;
2579
2575
  /**
2580
2576
  * Flag to indicate if sandbox mode was overridden
2581
2577
  */
@@ -2865,6 +2861,23 @@ export interface ReadMcpResourceOutput {
2865
2861
  * Human-readable error when the server could not read the resource
2866
2862
  */
2867
2863
  error?: string;
2864
+ /**
2865
+ * Direct children when the URI is a directory resource (SEP-2640 resources/directory/read). Subdirectories appear with mimeType "inode/directory".
2866
+ */
2867
+ resources?: {
2868
+ /**
2869
+ * Child resource URI
2870
+ */
2871
+ uri: string;
2872
+ /**
2873
+ * Child resource name
2874
+ */
2875
+ name: string;
2876
+ /**
2877
+ * Child MIME type
2878
+ */
2879
+ mimeType?: string;
2880
+ }[];
2868
2881
  }
2869
2882
  export interface TodoWriteOutput {
2870
2883
  /**