@aloma.io/integration-sdk 3.6.3 → 3.6.4

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.
@@ -107,7 +107,7 @@ class Fetcher {
107
107
  const timeout = Math.min(options?.timeout || 30 * 60 * 1000, 30 * 60 * 1000);
108
108
  const ret = await fetch(theURL, {
109
109
  ...options,
110
- signal: AbortSignal.timeout(30 * 60 * 1000),
110
+ signal: AbortSignal.timeout(timeout),
111
111
  });
112
112
  const status = await ret.status;
113
113
  if (status > 399) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -139,7 +139,7 @@ class Fetcher {
139
139
  const timeout = Math.min(options?.timeout || 30 * 60 * 1000, 30 * 60 * 1000);
140
140
  const ret = await fetch(theURL, {
141
141
  ...options,
142
- signal: AbortSignal.timeout(30 * 60 * 1000),
142
+ signal: AbortSignal.timeout(timeout),
143
143
  });
144
144
  const status = await ret.status;
145
145