@naturalcycles/backend-lib 4.18.0 → 4.18.1

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.
@@ -91,7 +91,7 @@ async function deployHealthCheck(url, opt = {}) {
91
91
  const started = Date.now();
92
92
  const { err, statusCode = 0 } = await fetcher.doFetch({
93
93
  url,
94
- mode: 'json',
94
+ responseType: 'json',
95
95
  timeoutSeconds: timeoutSec,
96
96
  retry: {
97
97
  count: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/backend-lib",
3
- "version": "4.18.0",
3
+ "version": "4.18.1",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "serve": "APP_ENV=dev nodemon",
@@ -135,7 +135,7 @@ export async function deployHealthCheck(
135
135
 
136
136
  const { err, statusCode = 0 } = await fetcher.doFetch({
137
137
  url,
138
- mode: 'json',
138
+ responseType: 'json',
139
139
  timeoutSeconds: timeoutSec,
140
140
  retry: {
141
141
  count: 0,