0.45.0-rc38

(fix): The OpenAPI importer now supports respecting readonly properties in schemas. When enabled, readonly properties will be excluded from request bodies for POST/PUT/PATCH endpoints. To enable this, configure the setting in your generators.yml:

1api:
2 specs:
3 - openapi: ./path/to/openapi.yml
4 settings:
5 respect-readonly-schemas: true

0.45.0-rc37

(internal): Support parsing alpha and beta version numbers of Fern generators

0.45.0-rc36

(fix): The OpenAPI importer now supports importing deep object query parameters. To do this, you will need to configure a setting in your generators.yml

1api:
2 specs:
3 - openapi: ./path/to/openapi.yml
4 settings:
5 object-query-paramaters: true