@anthropic-ai/claude-agent-sdk 0.3.201 → 0.3.203
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/bridge.d.ts +4 -1
- package/bridge.mjs +97 -95
- package/browser-sdk.js +63 -63
- package/extractFromBunfs.js +1 -1
- package/manifest.json +19 -19
- package/manifest.zst.json +23 -23
- package/package.json +10 -10
- package/sdk-tools.d.ts +53 -25
- package/sdk.d.ts +95 -3
- package/sdk.mjs +72 -72
package/bridge.d.ts
CHANGED
|
@@ -117,7 +117,10 @@ export type AttachBridgeSessionOptions = {
|
|
|
117
117
|
* fresh attach.
|
|
118
118
|
*/
|
|
119
119
|
initialSequenceNum?: number;
|
|
120
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* CCRClient heartbeat interval seed. Defaults to 20s. The server-advised
|
|
122
|
+
* interval (ccr_heartbeat_policy) overrides this after the first heartbeat.
|
|
123
|
+
*/
|
|
121
124
|
heartbeatIntervalMs?: number;
|
|
122
125
|
/**
|
|
123
126
|
* When true, the bridge only forwards events outbound (local → CCR). The
|