0.41.8

(feat): The Fern generators.yml configuration now supports a new format for namespacing APIs for additional flexibility:

1api:
2 specs:
3 - openapi: path/to/v1/openapi
4 overrides: path/to/v1/overrides
5 namespace: v1
6 - openapi: path/to/v2/openapi
7 overrides: path/to/v2/overrides
8 namespace: v2

Through namespacing your API, you can have multiple objects and endpoints with the same name across different namespaces. You can think of them as the equivalent to Python modules or TypeScript packages.