@anthropic-ai/claude-code 1.0.30 → 1.0.31
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 +816 -808
- package/package.json +1 -1
- package/sdk.d.ts +7 -1
- package/sdk.mjs +1 -1
- package/vendor/claude-code.vsix +0 -0
package/package.json
CHANGED
package/sdk.d.ts
CHANGED
|
@@ -25,7 +25,13 @@ export type McpSSEServerConfig = {
|
|
|
25
25
|
headers?: Record<string, string>
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
export type
|
|
28
|
+
export type McpHttpServerConfig = {
|
|
29
|
+
type: 'http'
|
|
30
|
+
url: string
|
|
31
|
+
headers?: Record<string, string>
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type McpServerConfig = McpStdioServerConfig | McpSSEServerConfig | McpHttpServerConfig
|
|
29
35
|
|
|
30
36
|
export type Options = {
|
|
31
37
|
abortController?: AbortController
|
package/sdk.mjs
CHANGED
package/vendor/claude-code.vsix
CHANGED
|
Binary file
|