@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.
Files changed (3) hide show
  1. package/cli.js +1769 -1500
  2. package/package.json +1 -1
  3. package/sdk-tools.d.ts +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.8",
3
+ "version": "2.1.10",
4
4
  "bin": {
5
5
  "claude": "cli.js"
6
6
  },
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 {