0.57.35

(feat): Improve OpenAPI response handling for 204 status codes by respecting schema definitions. When a 204 (No Content) response includes a schema, the importer now properly processes and preserves this schema information, ensuring accurate API documentation and SDK generation even for endpoints that don’t return content in successful responses.

0.57.32

(feat): Improve server handling in OpenAPI imports by exploding servers with enum variables into multiple servers, one for each enum value. For example, a server with URL “https://{region}.example.com” where region is an enum [“us”, “eu”] will be exploded into two servers: “https://us.example.com” and “https://eu.example.com”.

0.57.24

(fix): Fix an issue in the OpenAPI importer where discriminated unions with literal discriminant values in the variants would render the discriminant property twice. The importer now correctly checks if union variants contain the discriminant property as a literal value and handles them appropriately.

0.57.18

(fix): Improve the ReadMe migrator to respect the original navigation structure when creating the file hierarchy. Previously, nested navigation groups were flattened, but now the file structure will mirror the navigation hierarchy, preserving the original organization of documentation.