@anthropic-ai/claude-code 2.0.44 → 2.0.46

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 (3) hide show
  1. package/cli.js +1842 -1682
  2. package/package.json +1 -1
  3. package/sdk-tools.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.0.44",
3
+ "version": "2.0.46",
4
4
  "main": "sdk.mjs",
5
5
  "types": "sdk.d.ts",
6
6
  "bin": {
package/sdk-tools.d.ts CHANGED
@@ -27,7 +27,7 @@ export type ToolInputSchemas =
27
27
  | TodoWriteInput
28
28
  | WebFetchInput
29
29
  | WebSearchInput
30
- | MultipleChoiceQuestionInput;
30
+ | AskUserQuestionInput;
31
31
 
32
32
  export interface AgentInput {
33
33
  /**
@@ -301,7 +301,7 @@ export interface WebSearchInput {
301
301
  */
302
302
  blocked_domains?: string[];
303
303
  }
304
- export interface MultipleChoiceQuestionInput {
304
+ export interface AskUserQuestionInput {
305
305
  /**
306
306
  * Questions to ask the user (1-4 questions)
307
307
  *