@anthropic-ai/claude-code 2.1.205 → 2.1.206

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 +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.205",
3
+ "version": "2.1.206",
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.205",
25
- "@anthropic-ai/claude-code-darwin-x64": "2.1.205",
26
- "@anthropic-ai/claude-code-linux-x64": "2.1.205",
27
- "@anthropic-ai/claude-code-linux-arm64": "2.1.205",
28
- "@anthropic-ai/claude-code-linux-x64-musl": "2.1.205",
29
- "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.205",
30
- "@anthropic-ai/claude-code-win32-x64": "2.1.205",
31
- "@anthropic-ai/claude-code-win32-arm64": "2.1.205"
24
+ "@anthropic-ai/claude-code-darwin-arm64": "2.1.206",
25
+ "@anthropic-ai/claude-code-darwin-x64": "2.1.206",
26
+ "@anthropic-ai/claude-code-linux-x64": "2.1.206",
27
+ "@anthropic-ai/claude-code-linux-arm64": "2.1.206",
28
+ "@anthropic-ai/claude-code-linux-x64-musl": "2.1.206",
29
+ "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.206",
30
+ "@anthropic-ai/claude-code-win32-x64": "2.1.206",
31
+ "@anthropic-ai/claude-code-win32-arm64": "2.1.206"
32
32
  },
33
33
  "files": [
34
34
  "bin/claude.exe",
package/sdk-tools.d.ts CHANGED
@@ -3407,6 +3407,10 @@ export interface ScheduleWakeupOutput {
3407
3407
  * True when the model ended the loop via `stop: true`
3408
3408
  */
3409
3409
  stopped?: boolean;
3410
+ /**
3411
+ * How many pending dynamic-loop wakeups stop:true cancelled. 0 means nothing was pending — a recurring /loop cron is not cancelled by stop:true.
3412
+ */
3413
+ cancelledWakeups?: number;
3410
3414
  }
3411
3415
  export interface MonitorOutput {
3412
3416
  /**