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
Sometimes I want a field to be undefined in the body or response of a REST query. For example, if a certain endpoint is passed an auth token, it should associate the activity with a specific user instead of with an anonymous user. This bug makes that impossible, because undefined !== void.
Let's say my POST query has an optional parameter:
The driver will instead expect a body of type
This is pretty annoying. I can't tell if it's an unknown bug, or some weird TypeScript thing that you don't have a good workaround for.
The text was updated successfully, but these errors were encountered: