mozhost-cli 2.1.1 → 2.1.3

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/utils/api.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mozhost-cli",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Command-line interface for MozHost container platform",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/utils/api.js CHANGED
@@ -9,7 +9,7 @@ class ApiClient {
9
9
 
10
10
  const client = axios.create({
11
11
  baseURL,
12
- timeout: 30000,
12
+ timeout: 160000,
13
13
  headers: {
14
14
  'Content-Type': 'application/json'
15
15
  }
@@ -201,6 +201,6 @@ class ApiClient {
201
201
  return response.data;
202
202
  }
203
203
 
204
- } // 👈 FECHA A CLASSE AQUI (depois de TODOS os métodos)
204
+ }
205
205
 
206
206
  module.exports = new ApiClient();