@mastra/voice-google-gemini-live 0.10.11 → 0.10.12
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 +18 -0
- package/dist/index.d.ts +1 -1
- package/dist/managers/AudioStreamManager.d.ts +1 -1
- package/dist/managers/index.d.ts +11 -11
- package/dist/utils/errors.d.ts +1 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @mastra/voice-google-gemini-live
|
|
2
2
|
|
|
3
|
+
## 0.10.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`a61f23f`](https://github.com/mastra-ai/mastra/commit/a61f23fbbca4b88b763d94f1d784c47895ed72d7), [`4b339b8`](https://github.com/mastra-ai/mastra/commit/4b339b8141c20d6a6d80583c7e8c5c05d8c19492), [`d1dc606`](https://github.com/mastra-ai/mastra/commit/d1dc6067b0557a71190b68d56ee15b48c26d2411), [`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55), [`d3bd4d4`](https://github.com/mastra-ai/mastra/commit/d3bd4d482a685bbb67bfa89be91c90dca3fa71ad), [`c591dfc`](https://github.com/mastra-ai/mastra/commit/c591dfc1e600fae1dedffe239357d250e146378f), [`1920c5c`](https://github.com/mastra-ai/mastra/commit/1920c5c6d666f687785c73021196aa551e579e0d), [`b6a3b65`](https://github.com/mastra-ai/mastra/commit/b6a3b65d830fa0ca7754ad6481661d1f2c878f21), [`af3abb6`](https://github.com/mastra-ai/mastra/commit/af3abb6f7c7585d856e22d27f4e7d2ece2186b9a)]:
|
|
10
|
+
- @mastra/core@0.18.0
|
|
11
|
+
|
|
12
|
+
## 0.10.12-alpha.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55)]:
|
|
19
|
+
- @mastra/core@0.18.0-alpha.2
|
|
20
|
+
|
|
3
21
|
## 0.10.11
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ToolsInput } from '@mastra/core/agent';
|
|
2
2
|
import { MastraVoice } from '@mastra/core/voice';
|
|
3
3
|
import type { VoiceEventType, VoiceConfig } from '@mastra/core/voice';
|
|
4
|
-
import type { GeminiLiveVoiceConfig, GeminiLiveVoiceOptions, GeminiLiveEventMap, GeminiSessionConfig } from './types';
|
|
4
|
+
import type { GeminiLiveVoiceConfig, GeminiLiveVoiceOptions, GeminiLiveEventMap, GeminiSessionConfig } from './types.js';
|
|
5
5
|
/**
|
|
6
6
|
* Helper class for consistent error handling
|
|
7
7
|
*/
|
package/dist/managers/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { AudioStreamManager } from './AudioStreamManager';
|
|
2
|
-
export { ConnectionManager } from './ConnectionManager';
|
|
3
|
-
export { SessionManager } from './SessionManager';
|
|
4
|
-
export { ContextManager } from './ContextManager';
|
|
5
|
-
export { AuthManager } from './AuthManager';
|
|
6
|
-
export { EventManager } from './EventManager';
|
|
7
|
-
export type { ConnectionConfig } from './ConnectionManager';
|
|
8
|
-
export type { SessionConfig, SessionInfo } from './SessionManager';
|
|
9
|
-
export type { ContextConfig, ContextEntry } from './ContextManager';
|
|
10
|
-
export type { AuthConfig } from './AuthManager';
|
|
11
|
-
export type { EventConfig } from './EventManager';
|
|
1
|
+
export { AudioStreamManager } from './AudioStreamManager.js';
|
|
2
|
+
export { ConnectionManager } from './ConnectionManager.js';
|
|
3
|
+
export { SessionManager } from './SessionManager.js';
|
|
4
|
+
export { ContextManager } from './ContextManager.js';
|
|
5
|
+
export { AuthManager } from './AuthManager.js';
|
|
6
|
+
export { EventManager } from './EventManager.js';
|
|
7
|
+
export type { ConnectionConfig } from './ConnectionManager.js';
|
|
8
|
+
export type { SessionConfig, SessionInfo } from './SessionManager.js';
|
|
9
|
+
export type { ContextConfig, ContextEntry } from './ContextManager.js';
|
|
10
|
+
export type { AuthConfig } from './AuthManager.js';
|
|
11
|
+
export type { EventConfig } from './EventManager.js';
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/utils/errors.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/voice-google-gemini-live",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.12",
|
|
4
4
|
"description": "Mastra Google Gemini Live API integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -38,11 +38,12 @@
|
|
|
38
38
|
"tsx": "latest",
|
|
39
39
|
"typescript": "^5.8.3",
|
|
40
40
|
"vitest": "^3.2.4",
|
|
41
|
-
"@internal/lint": "0.0.
|
|
42
|
-
"@
|
|
41
|
+
"@internal/lint": "0.0.42",
|
|
42
|
+
"@internal/types-builder": "0.0.17",
|
|
43
|
+
"@mastra/core": "0.18.0"
|
|
43
44
|
},
|
|
44
45
|
"peerDependencies": {
|
|
45
|
-
"@mastra/core": ">=0.17.0-0 <0.
|
|
46
|
+
"@mastra/core": ">=0.17.0-0 <0.19.0-0",
|
|
46
47
|
"zod": "^3.0.0"
|
|
47
48
|
},
|
|
48
49
|
"homepage": "https://mastra.ai",
|