@anthropic-ai/claude-code 2.0.43 → 2.0.45
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/cli.js +1843 -1680
- package/package.json +1 -1
- package/sdk-tools.d.ts +2 -2
package/package.json
CHANGED
package/sdk-tools.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export type ToolInputSchemas =
|
|
|
27
27
|
| TodoWriteInput
|
|
28
28
|
| WebFetchInput
|
|
29
29
|
| WebSearchInput
|
|
30
|
-
|
|
|
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
|
|
304
|
+
export interface AskUserQuestionInput {
|
|
305
305
|
/**
|
|
306
306
|
* Questions to ask the user (1-4 questions)
|
|
307
307
|
*
|