entexto-cli 2.1.1 → 2.1.2

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.
@@ -230,7 +230,8 @@ module.exports = async function tunnel(opts) {
230
230
  }
231
231
  });
232
232
 
233
- localReq.setTimeout(useStreaming ? 120000 : 25000, () => {
233
+ // 10 min para streaming (modelos que piensan mucho), 25s clásico
234
+ localReq.setTimeout(useStreaming ? 600000 : 25000, () => {
234
235
  localReq.destroy();
235
236
  console.log(chalk.red('TIMEOUT'));
236
237
  if (useStreaming) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "entexto-cli",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "CLI oficial de Entexto — Crea, deploya y gestiona proyectos, dominios, APIs y Live SDK desde tu terminal",
5
5
  "main": "lib/index.js",
6
6
  "bin": {