@anthropic-ai/claude-code 2.1.234 → 2.1.235
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.
- package/package.json +9 -9
- package/sdk-tools.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthropic-ai/claude-code",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.235",
|
|
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.
|
|
25
|
-
"@anthropic-ai/claude-code-darwin-x64": "2.1.
|
|
26
|
-
"@anthropic-ai/claude-code-linux-x64": "2.1.
|
|
27
|
-
"@anthropic-ai/claude-code-linux-arm64": "2.1.
|
|
28
|
-
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.
|
|
29
|
-
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.
|
|
30
|
-
"@anthropic-ai/claude-code-win32-x64": "2.1.
|
|
31
|
-
"@anthropic-ai/claude-code-win32-arm64": "2.1.
|
|
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"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"bin/claude.exe",
|
package/sdk-tools.d.ts
CHANGED
|
@@ -2977,6 +2977,16 @@ export interface ArtifactInput {
|
|
|
2977
2977
|
* list_assets only: the `next` value from a previous list_assets result, to continue that listing.
|
|
2978
2978
|
*/
|
|
2979
2979
|
after?: string;
|
|
2980
|
+
/**
|
|
2981
|
+
* Runtime capabilities this page declares, as {name: config}. The control plane is the authority on valid names and config shapes. An empty object clears any previously stored declaration; omit the field on a redeploy to carry the stored declaration forward unchanged. Before declaring any capability, load the `artifact-capabilities` skill for the current contract and per-capability guidance.
|
|
2982
|
+
*/
|
|
2983
|
+
capabilities?: {
|
|
2984
|
+
[k: string]: unknown;
|
|
2985
|
+
};
|
|
2986
|
+
/**
|
|
2987
|
+
* The artifact's runtime version. Omit to keep its current version (the default); 'latest' to upgrade; a specific version to pin or roll back. Changing it changes how the published page behaves — pass only when the author explicitly intends the change, never as a side effect of editing.
|
|
2988
|
+
*/
|
|
2989
|
+
contract?: "latest" | string;
|
|
2980
2990
|
}
|
|
2981
2991
|
export interface PushNotificationInput {
|
|
2982
2992
|
/**
|