openapi-generator-dart
openapi-generator-dart copied to clipboard
Openapi Generator for Dart/Flutter
### Description of the bug I have a file locally available and don't want the generator to cache it. I cannot disable this behaviour. ### Steps to reproduce - ###...
### Description of the bug Whenever I build the client, the file containing the `@Openapi` annotation also gets updated. Generally, this is not a problem, but it causes two headaches:...
### Description of the bug Every time, when the OpenAPI generator runs, it adds following comment line to the source file containing the Openapi annotation: ``` // Openapi Generator last...
Fixes #131 This PR adds `updateAnnotatedFile` property to `@OpenApi()` annotation. When the timestamp is forcibly added or updated to the `@OpenApi()` annotated class, frequent differences occur in source control. Therefore,...
### Description of the bug Nullable `num` fields can't be parsed using `parse` constructor. It should use `tryParse`. ### Steps to reproduce ```json "Place": { "type": "object", "title": "Place", "description":...
### Description of the bug A field is defined as nullable array. Yet it will be generated to have empty List in dart which causes an issue as there is...
### Description of the bug I'm a bit confused ... does this package allow me to decorate my router (shelf) endpoints and generate OpenAPI specs directly off my actual server...
### Description of the bug I chose the generatorName as Generator.dio. But it produces dart version. ### Steps to reproduce @Openapi( additionalProperties: DioProperties(pubName: 'coclass_api', pubAuthor: 'Jiff'), inputSpecFile: 'lib/apis/api_spec.yaml', generatorName: Generator.dio,...