@anthropic-ai/claude-code 2.1.235 → 2.1.236

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 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.235",
3
+ "version": "2.1.236",
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.235",
25
- "@anthropic-ai/claude-code-darwin-x64": "2.1.235",
26
- "@anthropic-ai/claude-code-linux-x64": "2.1.235",
27
- "@anthropic-ai/claude-code-linux-arm64": "2.1.235",
28
- "@anthropic-ai/claude-code-linux-x64-musl": "2.1.235",
29
- "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.235",
30
- "@anthropic-ai/claude-code-win32-x64": "2.1.235",
31
- "@anthropic-ai/claude-code-win32-arm64": "2.1.235"
24
+ "@anthropic-ai/claude-code-darwin-arm64": "2.1.236",
25
+ "@anthropic-ai/claude-code-darwin-x64": "2.1.236",
26
+ "@anthropic-ai/claude-code-linux-x64": "2.1.236",
27
+ "@anthropic-ai/claude-code-linux-arm64": "2.1.236",
28
+ "@anthropic-ai/claude-code-linux-x64-musl": "2.1.236",
29
+ "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.236",
30
+ "@anthropic-ai/claude-code-win32-x64": "2.1.236",
31
+ "@anthropic-ai/claude-code-win32-arm64": "2.1.236"
32
32
  },
33
33
  "files": [
34
34
  "bin/claude.exe",
package/sdk-tools.d.ts CHANGED
@@ -401,6 +401,7 @@ export type ArtifactOutput =
401
401
  | {
402
402
  url: string;
403
403
  path: string;
404
+ artifact_id?: string;
404
405
  title?: string;
405
406
  version?: string;
406
407
  capabilities?: unknown;
@@ -2966,13 +2967,13 @@ export interface ArtifactInput {
2966
2967
  */
2967
2968
  force?: boolean;
2968
2969
  /**
2969
- * read_asset and delete_asset: the asset's id (32 hex characters), from a list_assets or upload_asset result.
2970
+ * read_asset: directory to save the file into (default: the working directory); the file is named by the asset id plus the extension for its type.
2970
2971
  */
2971
- asset_id?: string;
2972
+ out_dir?: string;
2972
2973
  /**
2973
- * read_asset only: directory to save the file into (default: the working directory). The file is named by the asset id plus the extension for its type.
2974
+ * read_asset and delete_asset: the asset's id (32 hex characters), from a list_assets or upload_asset result.
2974
2975
  */
2975
- out_dir?: string;
2976
+ asset_id?: string;
2976
2977
  /**
2977
2978
  * list_assets only: the `next` value from a previous list_assets result, to continue that listing.
2978
2979
  */