fix: patch axios temporarily / bump version#427
Merged
Conversation
mnahkies
added a commit
to mnahkies/axios
that referenced
this pull request
Feb 18, 2026
the import/esm types include `undefined` (ref: https://github.com/axios/axios/blob/v1.x/index.d.ts#L457) this was added recently in axios#5560 - but only to `index.d.ts`, which can break type-checking in projects using a mixture of cjs and esm, when `exactOptionalPropertyTypes` is enabled, as it makes the request config types incompatible with eachother. you can see an example of the type error / this patch resolving it on mnahkies/openapi-code-generator#427
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
bumping axios without this patch leads to type checking errors as seen here https://github.com/mnahkies/openapi-code-generator/actions/runs/22118781975/job/63933672790
The message is obtuse, but ultimately it's caused by axios/axios#5560 creating an incompatibility between the cjs and esm typings.
Upstream fix submitted: axios/axios#7414