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
It would be useful for me to build a rate limiting middleware using the pre-processed url. The rate limiter is per endpoint so I can't use the processed url (i.e. I need /users/{userId} and not /users/123)
Currently using this code to extract the url anyway...
Hey @snarky-puppy, the main use case for Options is to type the SDK functions where you don't want to pass the URL every time. I'll need to clean this up for your use case. To clarify, the URL is actually passed as needed, it's just types that need to be improved?
Description
url
starts out inOptions
but later getsOmit
ted hereI can't really figure out why, does anyone know?
It would be useful for me to build a rate limiting middleware using the pre-processed
url
. The rate limiter is per endpoint so I can't use the processed url (i.e. I need/users/{userId}
and not/users/123
)Currently using this code to extract the
url
anyway...The text was updated successfully, but these errors were encountered: