@anthropic-ai/sdk 0.112.2 → 0.112.3
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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/beta/sessions/events.d.mts +2 -2
- package/resources/beta/sessions/events.d.ts +2 -2
- package/src/resources/beta/sessions/events.ts +2 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.112.3 (2026-07-17)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [sdk-v0.112.2...sdk-v0.112.3](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.112.2...sdk-v0.112.3)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **docs:** small updates ([79fd6c7](https://github.com/anthropics/anthropic-sdk-typescript/commit/79fd6c7dd046e066965aa7ab9897695c174f88bb))
|
|
10
|
+
|
|
3
11
|
## 0.112.2 (2026-07-17)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [sdk-v0.112.1...sdk-v0.112.2](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.112.1...sdk-v0.112.2)
|
package/package.json
CHANGED
|
@@ -705,8 +705,8 @@ export interface BetaManagedAgentsSessionRequiresAction {
|
|
|
705
705
|
type: 'requires_action';
|
|
706
706
|
}
|
|
707
707
|
/**
|
|
708
|
-
* The turn ended because
|
|
709
|
-
*
|
|
708
|
+
* The turn ended because repeated errors exhausted the automatic retry budget or
|
|
709
|
+
* the agent reached an internal execution limit.
|
|
710
710
|
*/
|
|
711
711
|
export interface BetaManagedAgentsSessionRetriesExhausted {
|
|
712
712
|
type: 'retries_exhausted';
|
|
@@ -705,8 +705,8 @@ export interface BetaManagedAgentsSessionRequiresAction {
|
|
|
705
705
|
type: 'requires_action';
|
|
706
706
|
}
|
|
707
707
|
/**
|
|
708
|
-
* The turn ended because
|
|
709
|
-
*
|
|
708
|
+
* The turn ended because repeated errors exhausted the automatic retry budget or
|
|
709
|
+
* the agent reached an internal execution limit.
|
|
710
710
|
*/
|
|
711
711
|
export interface BetaManagedAgentsSessionRetriesExhausted {
|
|
712
712
|
type: 'retries_exhausted';
|
|
@@ -984,8 +984,8 @@ export interface BetaManagedAgentsSessionRequiresAction {
|
|
|
984
984
|
}
|
|
985
985
|
|
|
986
986
|
/**
|
|
987
|
-
* The turn ended because
|
|
988
|
-
*
|
|
987
|
+
* The turn ended because repeated errors exhausted the automatic retry budget or
|
|
988
|
+
* the agent reached an internal execution limit.
|
|
989
989
|
*/
|
|
990
990
|
export interface BetaManagedAgentsSessionRetriesExhausted {
|
|
991
991
|
type: 'retries_exhausted';
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.112.
|
|
1
|
+
export const VERSION = '0.112.3'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.112.
|
|
1
|
+
export declare const VERSION = "0.112.3";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.112.
|
|
1
|
+
export declare const VERSION = "0.112.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.112.
|
|
1
|
+
export const VERSION = '0.112.3'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|