Marcin Romaszewicz
Marcin Romaszewicz
I am happy to merge the Dockerfile and Makefile changes to produce a container image, however, I'm in a tight spot with where to host this docker image. Deepmap got...
This is an interesting PR, and kind of in the opposite direction that I was thinking of heading, since I've been hoping to move more code into Go, out of...
Regarding your first question - that you only want the models, that's pretty easy, just select `models` as your only output, and you will only get the data types, no...
I need to think about how we can do this generically. I'd like to have anyone be able to annotate the spec with their own field tags without having to...
Oh, that's kin-openapi crashing when loading the spec. It's before it even gets to our code.
Yeah, you're right. I never thought multiple values were possible when I originally wrote this.
I see, it's somehow generating a type name that starts with a number, that's not allowed. The ClientWithResponses is my nemesis. I'll have a look.
Oh wow, this one is really hard. This bug hits in the following case: - ClientWithResponses is generated - Response contains field with additional properties, no other members - AdditionalProperty...
Generally, ClientWithResponses is bugged for types which require AdditionalProperties handling. You can work round this for now by declaring your own type and refactoring this spec a tiny bit, then...
This is also quite an interesting construct that I've never considered before: ``` statuses: type: object additionalProperties: type: string enum: - reading - on_hold - plan_to_read - dropped - re_reading...