@indra211/httpease 1.0.3 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/HttpEase.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indra211/httpease",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Lightweight HTTP client built on native fetch — zero dependencies, TypeScript support, retry, interceptors & progress tracking.",
5
5
  "main": "src/index.js",
6
6
  "types": "src/types/index.d.ts",
package/src/HttpEase.js CHANGED
@@ -19,7 +19,7 @@ class HttpEase {
19
19
  // Default configuration
20
20
  this.defaults = {
21
21
  baseURL: '',
22
- timeout: 30000,
22
+ timeout: 150000,
23
23
  headers: {
24
24
  'Content-Type': 'application/json',
25
25
  },