@anthropic-ai/claude-code 2.1.265 → 2.1.267

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 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.265",
3
+ "version": "2.1.267",
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.265",
25
- "@anthropic-ai/claude-code-darwin-x64": "2.1.265",
26
- "@anthropic-ai/claude-code-linux-x64": "2.1.265",
27
- "@anthropic-ai/claude-code-linux-arm64": "2.1.265",
28
- "@anthropic-ai/claude-code-linux-x64-musl": "2.1.265",
29
- "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.265",
30
- "@anthropic-ai/claude-code-win32-x64": "2.1.265",
31
- "@anthropic-ai/claude-code-win32-arm64": "2.1.265"
24
+ "@anthropic-ai/claude-code-darwin-arm64": "2.1.267",
25
+ "@anthropic-ai/claude-code-darwin-x64": "2.1.267",
26
+ "@anthropic-ai/claude-code-linux-x64": "2.1.267",
27
+ "@anthropic-ai/claude-code-linux-arm64": "2.1.267",
28
+ "@anthropic-ai/claude-code-linux-x64-musl": "2.1.267",
29
+ "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.267",
30
+ "@anthropic-ai/claude-code-win32-x64": "2.1.267",
31
+ "@anthropic-ai/claude-code-win32-arm64": "2.1.267"
32
32
  },
33
33
  "files": [
34
34
  "bin/claude.exe",
package/sdk-tools.d.ts CHANGED
@@ -448,6 +448,8 @@ export type ArtifactOutput =
448
448
  contract?: string;
449
449
  updated?: boolean;
450
450
  audience?: string;
451
+ seq?: number;
452
+ unchanged?: true;
451
453
  liveSubscription?: string;
452
454
  }
453
455
  | {
@@ -730,6 +732,8 @@ export interface BashInput {
730
732
  /**
731
733
  * Clear, concise description of what this command does in active voice. Never use words like "complex" or "risk" in the description - just describe what it does.
732
734
  *
735
+ * Say what the command does in plain words: do not echo the command's text, its flags, or file paths - the user reads this description, often without seeing the command.
736
+ *
733
737
  * For simple commands (git, npm, standard CLI tools), keep it brief (5-10 words):
734
738
  * - ls → "List files in current directory"
735
739
  * - git status → "Show working tree status"
@@ -3120,7 +3124,7 @@ export interface ArtifactInput {
3120
3124
  */
3121
3125
  description?: string;
3122
3126
  /**
3123
- * A short name for the version this publish makes, max 60 chars (e.g. "Draft to legal"). Shown in the version picker. Optional — a few words, not a description.
3127
+ * A short name for this publish, max 60 chars (e.g. "Draft to legal"). Optional — a few words, not a description.
3124
3128
  */
3125
3129
  label?: string;
3126
3130
  /**