0.42.7

(feat): Support additionalProperties in OpenAPI or extra-properties in the Fern Defnition. Now an object that has additionalProperties marked as true will generate the following interface:

1interface User {
2 propertyOne: string;
3 [key: string]: any;
4}