altro3
altro3
@stephenh Hi! Yeah, it's good idea, but problem in library protobuf.js. I closed this issue, because protobuf.js as I undersatnd doesn't support bigint. See PR: https://github.com/protobufjs/protobuf.js/pull/1557. And you can see...
@dansiviter This is not a bug. You specified an invalid value for type. If you read the documentation, you will see this: ``` The type of the security scheme. Valid...
@PakhomovAlexander Hi! Could you create sample project to reproduce this problem?
@ccorcoran-nydig Hi! I added the ability to view annotations on enum constants - https://github.com/micronaut-projects/micronaut-core/pull/7580. But this feature will appear only in release `3.6.0`. After that, it will be possible to...
@daltonconley Hi! I thought about it, but could not come up with a normal solution to support this annotation. Watch how the library works: the analyzer parses the structure of...
@daltonconley I have good news for you. I implemented JsonValue annotation support :-). Now wait for the merge of my changes and the new release (see https://github.com/micronaut-projects/micronaut-openapi/pull/791)
@dclarke18 Hi! ok, I'll check it on the weekend
@dclarke18 @daltonconley I also tested this functionality. Well, unfortunately this functionality cannot be done in any way. I rolled back my changes because my solution only works at the testing...
@hittlle Hi! I'm sorry, but I didn't understand what you are trying to do with your example. Not sure if this code can work, most likely you will get an...
@urbansky @kenotr0n Hi! Since swagger 2.2.0 in annotation `@ApiResponse` you can set `useReturnTypeSchema=true` and write annotations like this: ```java @Get("/getWrapped/{id}") @ApiResponse(responseCode="404", content=@Content(@Schema(implementation=String.class))) @ApiResponse(responseCode="201", useReturnTypeSchema=true) public Wrapped fetchWrapped(@PathVariable("id") String id) {...