@anthropic-ai/claude-code 2.1.199 → 2.1.200

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 +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.199",
3
+ "version": "2.1.200",
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.199",
25
- "@anthropic-ai/claude-code-darwin-x64": "2.1.199",
26
- "@anthropic-ai/claude-code-linux-x64": "2.1.199",
27
- "@anthropic-ai/claude-code-linux-arm64": "2.1.199",
28
- "@anthropic-ai/claude-code-linux-x64-musl": "2.1.199",
29
- "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.199",
30
- "@anthropic-ai/claude-code-win32-x64": "2.1.199",
31
- "@anthropic-ai/claude-code-win32-arm64": "2.1.199"
24
+ "@anthropic-ai/claude-code-darwin-arm64": "2.1.200",
25
+ "@anthropic-ai/claude-code-darwin-x64": "2.1.200",
26
+ "@anthropic-ai/claude-code-linux-x64": "2.1.200",
27
+ "@anthropic-ai/claude-code-linux-arm64": "2.1.200",
28
+ "@anthropic-ai/claude-code-linux-x64-musl": "2.1.200",
29
+ "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.200",
30
+ "@anthropic-ai/claude-code-win32-x64": "2.1.200",
31
+ "@anthropic-ai/claude-code-win32-arm64": "2.1.200"
32
32
  },
33
33
  "files": [
34
34
  "bin/claude.exe",
package/sdk-tools.d.ts CHANGED
@@ -398,6 +398,7 @@ export type ProjectsOutput =
398
398
  path: string;
399
399
  doc_uuid: string;
400
400
  replaced: boolean;
401
+ present_to_user?: boolean;
401
402
  }
402
403
  | {
403
404
  method: "project_delete";
@@ -2363,6 +2364,10 @@ export interface ProjectsInput {
2363
2364
  * project_write: a file inside the working directory to upload. The tool reads, encodes, and uploads directly — contents never enter your context. Mutually exclusive with content.
2364
2365
  */
2365
2366
  local_path?: string;
2367
+ /**
2368
+ * project_write: true marks this doc as the file the user needs to see — the deliverable they asked for or must act on. Defaults to false; leave it unset for routine saves, notes, and bulk writes.
2369
+ */
2370
+ present_to_user?: boolean;
2366
2371
  /**
2367
2372
  * project_search: knowledge-base query
2368
2373
  */