Releases: VapiAI/server-sdk-php
Releases · VapiAI/server-sdk-php
1.1.0
feat: add subscriptionLimits field to Call type 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
1.0.1
style: use string interpolation in JsonException messages Replace string concatenation with double-quoted string interpolation in error messages thrown by JsonDecoder, JsonDeserializer, and JsonSerializer. The resulting messages are identical at runtime. Key changes: - Replace `"..." . $json` with `"...$json"` in JsonDecoder error messages - Replace `"..." . $type` with `"...$type"` in JsonDeserializer error message - Replace `"..." . $unionType` with `"...$unionType"` in JsonSerializer error message 🌿 Generated with Fern