@anthropic-ai/claude-code 2.1.85 → 2.1.86

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 +8893 -8870
  2. package/package.json +1 -1
  3. package/sdk-tools.d.ts +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.85",
3
+ "version": "2.1.86",
4
4
  "bin": {
5
5
  "claude": "cli.js"
6
6
  },
package/sdk-tools.d.ts CHANGED
@@ -218,6 +218,15 @@ export type FileReadOutput =
218
218
  */
219
219
  outputDir: string;
220
220
  };
221
+ }
222
+ | {
223
+ type: "file_unchanged";
224
+ file: {
225
+ /**
226
+ * The path to the file
227
+ */
228
+ filePath: string;
229
+ };
221
230
  };
222
231
  export type ListMcpResourcesOutput = {
223
232
  /**