@velocitycareerlabs/request 1.24.0-dev-build.119cf1f5a → 1.24.0-qa-build.1a684ea69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/request.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@velocitycareerlabs/request",
|
3
|
-
"version": "1.24.0-
|
3
|
+
"version": "1.24.0-qa-build.1a684ea69",
|
4
4
|
"description": "Request for velocity foundation network",
|
5
5
|
"repository": "https://github.com/velocitycareerlabs/packages",
|
6
6
|
"main": "index.js",
|
@@ -35,5 +35,5 @@
|
|
35
35
|
"nock": "13.5.5",
|
36
36
|
"prettier": "2.8.8"
|
37
37
|
},
|
38
|
-
"gitHead": "
|
38
|
+
"gitHead": "498883f01539485051a342ec8cfdbc03ed8792a7"
|
39
39
|
}
|
package/src/request.js
CHANGED
@@ -144,7 +144,7 @@ const initRequest = ({
|
|
144
144
|
options.context.log.info(
|
145
145
|
{
|
146
146
|
url,
|
147
|
-
|
147
|
+
fetchReqId: options.context.reqId,
|
148
148
|
responseStatus: statusCode,
|
149
149
|
responseHeaders: headers,
|
150
150
|
body: parseRawBody(rawBody),
|
@@ -237,7 +237,7 @@ const initRequest = ({
|
|
237
237
|
url: options.url.href,
|
238
238
|
headers: options.headers,
|
239
239
|
body: options.body ?? options.json,
|
240
|
-
|
240
|
+
fetchReqId: options.context.reqId,
|
241
241
|
},
|
242
242
|
'Fetch Request'
|
243
243
|
);
|