feat(ERPNext Node): Add credential test and add support for unauthorized certs (#3732)

*  Add cred injection, cred testing, allow unauthorized certs

* Add support for skipping SSL for cred testing

* 📘 Add partial override for request options types (#3739)

* Change field names and fix error handling

* Fix typo

Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
agobrech
2022-07-20 13:50:16 +02:00
committed by GitHub
parent 1965407030
commit a02b206170
6 changed files with 71 additions and 39 deletions

View File

@@ -292,7 +292,7 @@ export class NodeApiError extends NodeError {
}
// if it's an error generated by axios
// look for descriptions in the response object
if (error.isAxiosError) {
if (error.isAxiosError && error.response) {
error = error.response as JsonObject;
}