intellij-openapi-generator icon indicating copy to clipboard operation
intellij-openapi-generator copied to clipboard

Intellij Plugin for openapi-generator

Results 21 intellij-openapi-generator issues
Sort by recently updated
recently updated
newest added

I'm using the webstorm plugin: https://plugins.jetbrains.com/plugin/8433-openapi-generator I got the following .yaml: ``` openapi: 3.0.3 info: title: API description: Description version: 1.0.0 contact: name: API Support url: 'https://test.de' servers: - url:...

I tried generating code from OpenAPI document and it fails with: ``` java.lang.IllegalStateException: Configuration options is unexpectedly inaccessible at us.jimschubert.intellij.openapitools.ui.GenerateDialog.doOKAction(GenerateDialog.kt:236) at com.intellij.openapi.ui.DialogWrapper$OkAction.doAction(DialogWrapper.java:1858) at com.intellij.openapi.ui.DialogWrapper$DialogWrapperAction.actionPerformed(DialogWrapper.java:1810) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1967) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)...

in the dialog beside library there are 4 options, if I select jvm-retrofit2 the generated code doesn't have nothing for retrofit. BTW. is this proyect still being maintained?

As far as I know there is flag that should generate coroutines, could you please add this to the lib? Thanks.

Since API is going to change, it would be nice to have a job configuration for client code generation (or some other code generation) on demand or even chained with...

This project provides an interface around [OpenAPI Generator](https://openapi-generator.tech/) for JetBrains products. If you have issues with generators or generated outputs, please open an issue in the [OpenAPI Generator Issues](https://github.com/OpenAPITools/openapi-generator). Please...

Hey guys, I would like to edit the mustache files but I don't know where they are. regards

I'm trying to specify the use of a query parameter for a GET operation that allows me to filter the list that the GET returns. In my JSON spec I...

The files that are generated with the various *Controller methods have an import statement like this: ``` import ( "encoding/json" "net/http" "strings" "github.com/gorilla/mux" ) ``` But nothing in the code...