0.44.6

(fix): The Fern Definition respects endpoint level base-path overrides when validating examples.

0.44.5

(feat): The Fern Definition now supports overriding base-path at the endpoint level. This is useful if you have subset of endpoints that do not live at the configured base-path.

imdb.yml
1service:
2 endpoints:
3 getMovie:
4 method: POST
5 base-path: "latest/" # overrides the base-path configured in api.yml
6 path: "movies/{movieId}"

0.44.4

(fix): Fern’s OpenAPI importer will now handle generating examples for declared errors so that they show up in the generated documentation.

0.44.3

(feat): Fern’s OpenAPI importer can now handle readOnly properties in the top level request schema. Note that Fern does not handle nested readOnly properties just yet; please file a GitHub issue if this is important!

0.44.2

(fix): Fern’s OpenAPI importer can now handle multiple error schemas for the same status code.