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
The JSON Swagger file looks like it should work according the the spec and I dug down into the code and I think the issue is in mapFormDataToV2 (or one level above).
but inside mapFormDataToV2 it doesn't "expand" the $ref like you do in getResponseType.ts. I tried expanding the FileUploadDto inline in the code and it correctly generated the axios code.
I feel like the fix is to either copy/paste some/all of the logic from getResponseType.ts into mapFormDataToV2 or abstract the logic away into another function they both use. Thoughts?
The text was updated successfully, but these errors were encountered:
The JSON Swagger file looks like it should work according the the spec and I dug down into the code and I think the issue is in
mapFormDataToV2
(or one level above).Relevant parts of my spec:
......
From debugging the code I see that right being passed into
mapFormDataToV2
mymultiDataProperties
is:but inside
mapFormDataToV2
it doesn't "expand" the$ref
like you do ingetResponseType.ts
. I tried expanding theFileUploadDto
inline in the code and it correctly generated the axios code.I feel like the fix is to either copy/paste some/all of the logic from
getResponseType.ts
intomapFormDataToV2
or abstract the logic away into another function they both use. Thoughts?The text was updated successfully, but these errors were encountered: