@anthropic-ai/claude-agent-sdk 0.3.177 → 0.3.179
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/assistant.d.ts +24 -0
- package/assistant.mjs +93 -93
- package/bridge.d.ts +1 -1
- package/bridge.mjs +81 -80
- package/browser-sdk.js +3 -3
- package/manifest.json +19 -19
- package/manifest.zst.json +23 -23
- package/package.json +10 -10
- package/sdk-tools.d.ts +26 -3
- package/sdk.d.ts +65 -4
- package/sdk.mjs +6 -6
package/bridge.d.ts
CHANGED
|
@@ -140,7 +140,7 @@ export type AttachBridgeSessionOptions = {
|
|
|
140
140
|
ok: false;
|
|
141
141
|
error: string;
|
|
142
142
|
} | void;
|
|
143
|
-
onSetMaxThinkingTokens?: (tokens: number | null) => void;
|
|
143
|
+
onSetMaxThinkingTokens?: (tokens: number | null, thinkingDisplay?: 'summarized' | 'omitted' | null) => void;
|
|
144
144
|
/**
|
|
145
145
|
* `set_permission_mode` from claude.ai. Return an error verdict to send
|
|
146
146
|
* an error control_response (vs silently false-succeeding). Omit if
|