We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
requestGenerator in index.ts has an optional parameter data:
requestGenerator
index.ts
data
return function(method: string, uri: string, data: any = {}) {
However, places that use this, for example projectAssignments.me do not mark this parameter as optional:
projectAssignments.me
public me(query: PagenationParameters) {
An obvious workaround is to do me({}), but it would be good to be able to just call me() and let the package handle the defaults
me({})
me()
The text was updated successfully, but these errors were encountered:
I agree,
Should have some time this evening for a update.
Thanks for all the help and feedback on the module!
Sorry, something went wrong.
378cacb
🎉 This issue has been resolved in version 2.2.2 🎉
The release is available on:
Your semantic-release bot 📦🚀
Thanks @simplyspoke 😄
simplyspoke
No branches or pull requests
requestGenerator
inindex.ts
has an optional parameterdata
:However, places that use this, for example
projectAssignments.me
do not mark this parameter as optional:An obvious workaround is to do
me({})
, but it would be good to be able to just callme()
and let the package handle the defaultsThe text was updated successfully, but these errors were encountered: