@anthropic-ai/claude-code 2.1.165 → 2.1.167
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 +8 -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.167",
|
|
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.167",
|
|
25
|
+
"@anthropic-ai/claude-code-darwin-x64": "2.1.167",
|
|
26
|
+
"@anthropic-ai/claude-code-linux-x64": "2.1.167",
|
|
27
|
+
"@anthropic-ai/claude-code-linux-arm64": "2.1.167",
|
|
28
|
+
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.167",
|
|
29
|
+
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.167",
|
|
30
|
+
"@anthropic-ai/claude-code-win32-x64": "2.1.167",
|
|
31
|
+
"@anthropic-ai/claude-code-win32-arm64": "2.1.167"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"bin/claude.exe",
|
package/sdk-tools.d.ts
CHANGED
|
@@ -3111,6 +3111,14 @@ export interface REPLOutput {
|
|
|
3111
3111
|
export interface WorkflowOutput {
|
|
3112
3112
|
status: "async_launched" | "remote_launched";
|
|
3113
3113
|
taskId: string;
|
|
3114
|
+
/**
|
|
3115
|
+
* TaskType of the registered background task — 'local_workflow' for in-process runs, 'remote_agent' when remote:true dispatches to CCR. Set on all new writes; absent only on transcripts written before this field existed.
|
|
3116
|
+
*/
|
|
3117
|
+
taskType?: "local_workflow" | "remote_agent";
|
|
3118
|
+
/**
|
|
3119
|
+
* meta.name from the workflow script — same value as task_started.workflow_name. Set on all new writes; absent only on transcripts written before this field existed.
|
|
3120
|
+
*/
|
|
3121
|
+
workflowName?: string;
|
|
3114
3122
|
/**
|
|
3115
3123
|
* Local workflow run identifier for resumeFromRunId. Absent for remote_launched (the CCR session URL is the resume handle there) and on transcripts written before this field existed.
|
|
3116
3124
|
*/
|