@anthropic-ai/claude-code 2.1.8 → 2.1.10
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/cli.js +1769 -1500
- package/package.json +1 -1
- package/sdk-tools.d.ts +12 -0
package/package.json
CHANGED
package/sdk-tools.d.ts
CHANGED
|
@@ -126,6 +126,18 @@ export interface ExitPlanModeInput {
|
|
|
126
126
|
*/
|
|
127
127
|
prompt: string;
|
|
128
128
|
}[];
|
|
129
|
+
/**
|
|
130
|
+
* Whether to push the plan to a remote Claude.ai session
|
|
131
|
+
*/
|
|
132
|
+
pushToRemote?: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* The remote session ID if pushed to remote
|
|
135
|
+
*/
|
|
136
|
+
remoteSessionId?: string;
|
|
137
|
+
/**
|
|
138
|
+
* The remote session URL if pushed to remote
|
|
139
|
+
*/
|
|
140
|
+
remoteSessionUrl?: string;
|
|
129
141
|
[k: string]: unknown;
|
|
130
142
|
}
|
|
131
143
|
export interface FileEditInput {
|