@anthropic-ai/claude-code 1.0.86 → 1.0.87

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "main": "sdk.mjs",
5
5
  "types": "sdk.d.ts",
6
6
  "bin": {
package/sdk.d.ts CHANGED
@@ -138,6 +138,10 @@ export type Options = {
138
138
  resume?: string;
139
139
  stderr?: (data: string) => void;
140
140
  strictMcpConfig?: boolean;
141
+ websocket?: {
142
+ url: string;
143
+ headers?: Record<string, string>;
144
+ };
141
145
  };
142
146
  export type PermissionMode = 'default' | 'acceptEdits' | 'bypassPermissions' | 'plan';
143
147
  type SDKMessageBase = {