William Cheng
William Cheng
looks like this is already done with an additional option `useAsyncFileStream` so closing this one
@kcsuraj may I know if you've time to contribute the enhancement? We can show you some good starting points to start with.
Here is the PR to add AWS V4 signature support to the Go client generator: https://github.com/OpenAPITools/openapi-generator/pull/7326/files.
@jqr thanks for the details. May I know if you've cycle to contribute the fix with a test case using this [endpoint](https://github.com/swagger-api/swagger-codegen/blob/master/modules/swagger-codegen/src/test/resources/2_0/petstore.json#L262) (the method name is automatically generated by codegen...
@jqr please take your time. We've not heard anyone else requesting this feature in Python yet.
@JHibbard What about simply model the response as just `type: file` without `format: binary`?
@g-bon I wonder if you can submit a PR with the suggested fix so that we can review more easily (remember to update the Python Petstore sample so that CIs...
please fall back to v7.1.0 for the time being. i've filed https://github.com/OpenAPITools/openapi-generator/pull/17683 to fix the issue.
``` someProperty: type: string nullable: true allOf: - $ref: "#/components/schemas/StringBaseType" ``` what exact is this "type"? A string extending another string?
if we look at the whole thing: ``` allOf: - $ref: "#/components/schemas/MyBaseType" - properties: someProperty: type: string nullable: true allOf: - $ref: "#/components/schemas/StringBaseType" ``` looks like MyBaseType is the base...