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
This works
let response = await spec.get(endpoint).withCore({agent: agent}).withAuth(user,pwd); console.log(response);
This does not work (Auth error)
let response = await spec.get(endpoint).withAuth(user,pwd).withCore({agent: agent}); console.log(response);
I think withCore overwrites withAuth
I would wish that the sequence of the method calls is not relevant.
The text was updated successfully, but these errors were encountered:
Hi @erhard , Thanks for reporting the issue. Yes, it indeed is overriding the core options when the order is reversed. We will look into this soon.
Sorry, something went wrong.
Fixed in release in v3.6.7
Successfully merging a pull request may close this issue.
This works
let response = await spec.get(endpoint).withCore({agent: agent}).withAuth(user,pwd);
console.log(response);
This does not work (Auth error)
let response = await spec.get(endpoint).withAuth(user,pwd).withCore({agent: agent});
console.log(response);
I think withCore overwrites withAuth
I would wish that the sequence of the method calls is not relevant.
The text was updated successfully, but these errors were encountered: