@anthropic-ai/claude-code 2.1.116 → 2.1.118

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 +0 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.116",
3
+ "version": "2.1.118",
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.116",
25
- "@anthropic-ai/claude-code-darwin-x64": "2.1.116",
26
- "@anthropic-ai/claude-code-linux-x64": "2.1.116",
27
- "@anthropic-ai/claude-code-linux-arm64": "2.1.116",
28
- "@anthropic-ai/claude-code-linux-x64-musl": "2.1.116",
29
- "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.116",
30
- "@anthropic-ai/claude-code-win32-x64": "2.1.116",
31
- "@anthropic-ai/claude-code-win32-arm64": "2.1.116"
24
+ "@anthropic-ai/claude-code-darwin-arm64": "2.1.118",
25
+ "@anthropic-ai/claude-code-darwin-x64": "2.1.118",
26
+ "@anthropic-ai/claude-code-linux-x64": "2.1.118",
27
+ "@anthropic-ai/claude-code-linux-arm64": "2.1.118",
28
+ "@anthropic-ai/claude-code-linux-x64-musl": "2.1.118",
29
+ "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.118",
30
+ "@anthropic-ai/claude-code-win32-x64": "2.1.118",
31
+ "@anthropic-ai/claude-code-win32-arm64": "2.1.118"
32
32
  },
33
33
  "files": [
34
34
  "bin/claude.exe",
package/sdk-tools.d.ts CHANGED
@@ -27,7 +27,6 @@ export type ToolInputSchemas =
27
27
  | WebFetchInput
28
28
  | WebSearchInput
29
29
  | AskUserQuestionInput
30
- | ConfigInput
31
30
  | EnterWorktreeInput
32
31
  | ExitWorktreeInput
33
32
  | ToolOutputSchemas;
@@ -49,7 +48,6 @@ export type ToolOutputSchemas =
49
48
  | WebFetchOutput
50
49
  | WebSearchOutput
51
50
  | AskUserQuestionOutput
52
- | ConfigOutput
53
51
  | EnterWorktreeOutput
54
52
  | ExitWorktreeOutput;
55
53
  export type AgentOutput =
@@ -2140,16 +2138,6 @@ export interface AskUserQuestionInput {
2140
2138
  source?: string;
2141
2139
  };
2142
2140
  }
2143
- export interface ConfigInput {
2144
- /**
2145
- * The setting key (e.g., "theme", "model", "permissions.defaultMode")
2146
- */
2147
- setting: string;
2148
- /**
2149
- * The new value. Omit to get current value.
2150
- */
2151
- value?: string | boolean | number;
2152
- }
2153
2141
  export interface EnterWorktreeInput {
2154
2142
  /**
2155
2143
  * Optional name for a new worktree. Each "/"-separated segment may contain only letters, digits, dots, underscores, and dashes; max 64 chars total. A random name is generated if not provided. Mutually exclusive with `path`.
@@ -2718,15 +2706,6 @@ export interface AskUserQuestionOutput {
2718
2706
  };
2719
2707
  };
2720
2708
  }
2721
- export interface ConfigOutput {
2722
- success: boolean;
2723
- operation?: "get" | "set";
2724
- setting?: string;
2725
- value?: unknown;
2726
- previousValue?: unknown;
2727
- newValue?: unknown;
2728
- error?: string;
2729
- }
2730
2709
  export interface EnterWorktreeOutput {
2731
2710
  worktreePath: string;
2732
2711
  worktreeBranch?: string;