You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an optional `subscriptionLimits` property to the `Call` class that
exposes the organization's subscription limits (including concurrency
limit information) at the time of the call.
Key changes:
- Add `?SubscriptionLimits $subscriptionLimits` property to `Call`
- Add `subscriptionLimits` as an optional constructor parameter
- Deserialize `subscriptionLimits` from the `subscriptionLimits` JSON property
🌿 Generated with Fern
Copy file name to clipboardExpand all lines: changelog.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
## 1.1.0 - 2026-04-22
2
+
### Added
3
+
***`Call::$subscriptionLimits`** — new optional `SubscriptionLimits` field on `Call` that exposes the organization's concurrency and subscription limits at the time of the call.
4
+
1
5
## 1.0.1 - 2026-04-10
2
6
* style: use string interpolation in JsonException messages
3
7
* Replace string concatenation with double-quoted string interpolation
* @var ?SubscriptionLimits $subscriptionLimits These are the subscription limits for the org at the time of the call. Includes concurrency limit information.
335
+
*/
336
+
#[JsonProperty('subscriptionLimits')]
337
+
public ?SubscriptionLimits$subscriptionLimits;
338
+
333
339
/**
334
340
* @param array{
335
341
* id: string,
@@ -378,6 +384,7 @@ class Call extends JsonSerializableType
0 commit comments