We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628e181 commit 21240caCopy full SHA for 21240ca
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@makerx/node-common",
3
- "version": "1.4.2",
+ "version": "1.5.0",
4
"private": false,
5
"description": "A set of MakerX core NodeJS types and utilities",
6
"author": "MakerX",
src/http.ts
@@ -116,6 +116,7 @@ export class HttpClient<TContext = never> {
116
authHeaders = authFactory ? await authFactory(requestContext as TContext) : {}
117
} catch (error) {
118
logger?.error('Authentication via authFactory failed', { error })
119
+ throw error
120
}
121
const headers: Record<string, string> = {
122
...baseHeaders,
0 commit comments