0.57.5

(fix): Fix an issue where endpoint ids were not globally unique because they didn’t take into account namespaces. This only affects the new OpenAPI -> IR parser.

0.57.4

(feat): Add support for namespaces in OpenAPI imports. This allows for organizing multiple OpenAPI specs into different namespaces within a single API definition. Example:

1api:
2 specs:
3 - namespace: petsV1
4 openapi: ./openapi-v1.json
5 - namespace: petsV2
6 openapi: ./openapi-v2.json

Each namespace creates a separate package in the generated IR, allowing for clear separation between different versions or components of your API.

0.57.3

(feat): Add support for Cohere’s Command R+ model in AI chat - model ID: command-r-plus

0.57.2

(feat): Add support for parsing type: enum in OpenAPI schemas. This allows for proper conversion of enum types that use the non-standard type: enum format instead of the standard type: string with enum values.