@anthropic-ai/claude-agent-sdk 0.3.175 → 0.3.177
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.mjs +86 -86
- package/bridge.d.ts +3 -2
- package/bridge.mjs +93 -93
- package/browser-sdk.js +26 -26
- package/manifest.json +19 -19
- package/manifest.zst.json +23 -23
- package/package.json +10 -10
- package/sdk-tools.d.ts +17 -1
- package/sdk.d.ts +36 -3
- package/sdk.mjs +51 -51
package/bridge.d.ts
CHANGED
|
@@ -155,8 +155,9 @@ export type AttachBridgeSessionOptions = {
|
|
|
155
155
|
};
|
|
156
156
|
/**
|
|
157
157
|
* Transport died permanently. 401 = JWT expired (re-attach with fresh
|
|
158
|
-
* secret), 4090 = epoch superseded (
|
|
159
|
-
* 4091 = CCRClient init failed,
|
|
158
|
+
* secret), 4090 = epoch superseded (no longer the active worker),
|
|
159
|
+
* 4091 = CCRClient init failed, 4092 = codeless close (defensive
|
|
160
|
+
* fallback — cause unknown), 403/404 = permanent SSE HTTP rejection.
|
|
160
161
|
* Transient disconnects (503, network blips) retry indefinitely inside
|
|
161
162
|
* SSETransport and do NOT fire this.
|
|
162
163
|
*/
|