XML Schema contains two occurrence indicators minOccurs
and maxOccurs
. The support for these was missing when we parsed any XML Schemas but has been added now.
76 posts tagged with "Improvement"
View All TagsModel Properties Will Be Optional By Default In Swagger 1.2 Import
If the required
property is skipped while defining a Model Object in Swagger 1.2 we now assume all properties as optional by default
Swagger Import Will Now Assume Parameter is Optional by Default
When defining the Parameter Object
in Swagger v1.2 or v2.0, they asssume default value for required
property as false
. We were previously keeping the default value for it to be true
but now we conform strictly to the Swagger specification.
PHP SDKs Are Now PSR-2 Compliant
APIMATIC's PHP SDKs are now compliant with the PSR-2 Coding Style Guide
- PSR-2 compliance means that the PHP code generated is guaranteed to be of high-quality.
- PHP SDKs are written in a industry-standard code style to allow for maximum interoperability.
- PHP SDKs can be tested for code style violation using the PHP Code Sniffer.
Re-generate your PHP SDKs now for the new changes.
NodeJS SDK Improvement & Superagent Client Bug Fix
Code styling within NodeJS SDKs is now improved.
For everyone using our Node SDK with Superagent
as the HTTP Client, there was a bug in the handling of response when response type is binary
. It has been fixed so you can get the bug-fix by generating the SDK again.
AngularJS SDKs Revamped
Today, we are announcing a major revamp of our AngularJS SDK Code Generation, which includes
- Improvement in JS code styling.
- Enforce usage of AngularJS's own dependency injection system and avoid creating globals.
- Wrapping all code in IIFE to avoid polluting global namespace.
- All code is now minification safe.