@mastra/voice-google 0.12.2-alpha.0 → 0.12.3-alpha.0
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @mastra/voice-google
|
|
2
2
|
|
|
3
|
+
## 0.12.3-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Security remediation for the 2026-06-17 "easy-day-js" supply-chain incident. Patch bump to publish clean versions and move the `latest` dist-tag forward, superseding the compromised versions that declared the malicious `easy-day-js` dependency. ([#18056](https://github.com/mastra-ai/mastra/pull/18056))
|
|
8
|
+
|
|
9
|
+
## 0.12.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- dependencies updates: ([#17518](https://github.com/mastra-ai/mastra/pull/17518))
|
|
14
|
+
- Updated dependency [`@google-cloud/text-to-speech@^6.4.1` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.4.1) (from `^6.4.0`, in `dependencies`)
|
|
15
|
+
|
|
3
16
|
## 0.12.2-alpha.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: mastra-voice-google
|
|
|
3
3
|
description: Documentation for @mastra/voice-google. Use when working with @mastra/voice-google APIs, configuration, or implementation.
|
|
4
4
|
metadata:
|
|
5
5
|
package: "@mastra/voice-google"
|
|
6
|
-
version: "0.12.
|
|
6
|
+
version: "0.12.3-alpha.0"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## When to use
|
|
@@ -158,7 +158,7 @@ await voice.connect()
|
|
|
158
158
|
When you use a resolver:
|
|
159
159
|
|
|
160
160
|
- Each call to `getVoice()` returns a new instance, so concurrent sessions never share state.
|
|
161
|
-
- Mastra
|
|
161
|
+
- Mastra doesn't add tools or instructions to a resolver instance. Configure those inside the resolver or on the provider.
|
|
162
162
|
- You own the lifecycle of the returned instance, so call `disconnect()` or `close()` when the session ends.
|
|
163
163
|
|
|
164
164
|
The `agent.voice` getter has no request context, so it throws when `voice` is a resolver. Use `agent.getVoice({ requestContext })` instead.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/voice-google",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.3-alpha.0",
|
|
4
4
|
"description": "Mastra Google voice integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
"@google-cloud/text-to-speech": "^6.4.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@types/node": "22.19.
|
|
32
|
-
"@vitest/coverage-v8": "4.1.
|
|
33
|
-
"@vitest/ui": "4.1.
|
|
31
|
+
"@types/node": "22.19.21",
|
|
32
|
+
"@vitest/coverage-v8": "4.1.8",
|
|
33
|
+
"@vitest/ui": "4.1.8",
|
|
34
34
|
"eslint": "^10.4.1",
|
|
35
35
|
"tsup": "^8.5.1",
|
|
36
36
|
"tsx": "^4.22.4",
|
|
37
37
|
"typescript": "^6.0.3",
|
|
38
|
-
"vitest": "4.1.
|
|
39
|
-
"@internal/
|
|
40
|
-
"@internal/
|
|
41
|
-
"@internal/
|
|
38
|
+
"vitest": "4.1.8",
|
|
39
|
+
"@internal/voice": "0.0.6",
|
|
40
|
+
"@internal/lint": "0.0.105",
|
|
41
|
+
"@internal/types-builder": "0.0.80"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"zod": "^3.25.0 || ^4.0.0"
|