You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#10 Removed path params from request bodies. However, if the request body only has a single parameter that is the path parameter, the generated spec will still define a required empty request body. For example:
When really it should have no body at all, since there is technically no request body required. This causes an issue with my code gen tooling, since an empty request body creates an Any type and it doesn't know how to decode it.
The text was updated successfully, but these errors were encountered:
#10 Removed path params from request bodies. However, if the request body only has a single parameter that is the path parameter, the generated spec will still define a required empty request body. For example:
Generates:
When really it should have no body at all, since there is technically no request body required. This causes an issue with my code gen tooling, since an empty request body creates an Any type and it doesn't know how to decode it.
The text was updated successfully, but these errors were encountered: