@anthropic-ai/claude-code 2.1.28 → 2.1.30
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 +2550 -1557
- package/package.json +1 -1
- package/sdk-tools.d.ts +4 -0
package/package.json
CHANGED
package/sdk-tools.d.ts
CHANGED
|
@@ -187,6 +187,10 @@ export interface FileReadInput {
|
|
|
187
187
|
* The number of lines to read. Only provide if the file is too large to read at once.
|
|
188
188
|
*/
|
|
189
189
|
limit?: number;
|
|
190
|
+
/**
|
|
191
|
+
* Page range for PDF files (e.g., "1-5", "3", "10-20"). Only applicable to PDF files. Maximum 20 pages per request.
|
|
192
|
+
*/
|
|
193
|
+
pages?: string;
|
|
190
194
|
}
|
|
191
195
|
export interface FileWriteInput {
|
|
192
196
|
/**
|