Sidebar navigation items in the Developer Portal now support icons, helping users scan and navigate documentation more quickly through clear visual cues.
6 posts tagged with "Feature"
View All TagsEnforce Required Properties in Your OpenAPI Definition Using Custom Validation Rules
Until now, our custom validation rules supported Pattern, Order, and Length verification methods. This allowed us to enforce specific patterns for property values, restrict property lengths, and validate alphabetical ordering within OpenAPI definitions.
We're excited to introduce a new verification method: "Required."
With this update, you can now mark a property as required - even if OpenAPI standards don't enforce it. This means greater flexibility in defining custom validation rules, including support for vendor extensions.
Introducing Support for Auto-Generated Unit Tests in TypeScript SDKs
We've introduced support for auto-generated unit tests in the TypeScript SDKs using our OpenAPI test case extension.
Introducing Support for Accepting Unlisted Enum Properties
We have introduced the acceptance of unlisted enum values in the API response in SDKs for all languages.
Introducing PHP Model Builders
We have introduced builder pattern in PHP SDKs that can be used to set all model properties at once and then build the object at the end.
Introducing Persistent HTTP Connections in Unirest for PHP
Previously, our PHP SDKs were initiating a new connection for each API call. Now, we have made HTTP connections persistent in Unirest for PHP SDK. Using persistent request allows all server requests to be made through one connection.