mulmocast 2.6.22 → 2.6.23

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.
@@ -44,7 +44,12 @@ export const ttsElevenlabsAgent = async ({ namedInputs, params, config, }) => {
44
44
  };
45
45
  }
46
46
  GraphAILogger.info(e);
47
- throw new Error("TTS Eleven Labs Error", {
47
+ // Include the underlying message so fetch failures (DNS / TLS /
48
+ // ETIMEDOUT / ECONNRESET) are diagnosable from the thrown error
49
+ // — previously every such case collapsed to the static label.
50
+ // Same template as #1452 / #1453 / #1454 / #1455 / #1456 / #1457.
51
+ const detail = e instanceof Error ? e.message : String(e);
52
+ throw new Error(`TTS Eleven Labs Error: ${detail}`, {
48
53
  cause: agentGenerationError("ttsElevenlabsAgent", audioAction, audioFileTarget),
49
54
  });
50
55
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mulmocast",
3
- "version": "2.6.22",
3
+ "version": "2.6.23",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.node.js",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "resolutions": {
27
27
  "minimatch": "^10.2.5",
28
- "tar": "7.5.16",
28
+ "tar": "7.5.19",
29
29
  "yauzl": "^3.3.1"
30
30
  },
31
31
  "bin": {
@@ -89,9 +89,9 @@
89
89
  "homepage": "https://github.com/receptron/mulmocast-cli#readme",
90
90
  "dependencies": {
91
91
  "@google-cloud/text-to-speech": "^6.4.1",
92
- "@google/genai": "^2.7.0",
92
+ "@google/genai": "^2.10.0",
93
93
  "@graphai/anthropic_agent": "^2.0.12",
94
- "@graphai/browserless_agent": "^2.0.2",
94
+ "@graphai/browserless_agent": "^2.0.3",
95
95
  "@graphai/gemini_agent": "^2.0.5",
96
96
  "@graphai/groq_agent": "^2.0.2",
97
97
  "@graphai/input_agents": "^1.0.2",
@@ -112,9 +112,9 @@
112
112
  "graphai": "^2.0.18",
113
113
  "jsdom": "^29.1.1",
114
114
  "marked": "^18.0.5",
115
- "mulmocast-vision": "^1.0.10",
116
- "ora": "^9.4.0",
117
- "puppeteer": "^25.1.0",
115
+ "mulmocast-vision": "^1.0.11",
116
+ "ora": "^9.4.1",
117
+ "puppeteer": "^25.2.1",
118
118
  "replicate": "^1.4.0",
119
119
  "yaml": "^2.9.0",
120
120
  "yargs": "^18.0.0",
@@ -127,16 +127,16 @@
127
127
  "@types/jsdom": "^28.0.3",
128
128
  "@types/yargs": "^17.0.35",
129
129
  "cross-env": "^10.1.0",
130
- "eslint": "^10.5.0",
130
+ "eslint": "^10.6.0",
131
131
  "eslint-config-prettier": "^10.1.8",
132
132
  "eslint-plugin-import": "^2.32.0",
133
133
  "eslint-plugin-prettier": "^5.5.6",
134
- "eslint-plugin-sonarjs": "^4.0.3",
135
- "globals": "^17.6.0",
136
- "prettier": "^3.8.4",
134
+ "eslint-plugin-sonarjs": "^4.1.0",
135
+ "globals": "^17.7.0",
136
+ "prettier": "^3.9.3",
137
137
  "tsx": "^4.22.4",
138
138
  "typescript": "6.0.3",
139
- "typescript-eslint": "^8.61.1"
139
+ "typescript-eslint": "^8.62.1"
140
140
  },
141
141
  "engines": {
142
142
  "node": ">=22.0.0"