@mastra/voice-google-gemini-live 0.10.10 → 0.10.11-alpha.1
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.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @mastra/voice-google-gemini-live
|
|
2
2
|
|
|
3
|
+
## 0.10.11-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e)]:
|
|
10
|
+
- @mastra/core@0.17.0-alpha.6
|
|
11
|
+
|
|
12
|
+
## 0.10.11-alpha.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [[`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
|
|
19
|
+
- @mastra/core@0.17.0-alpha.3
|
|
20
|
+
|
|
3
21
|
## 0.10.10
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -564,7 +564,7 @@ var AudioStreamManager = class {
|
|
|
564
564
|
*/
|
|
565
565
|
log(message, ...args) {
|
|
566
566
|
if (this.debug) {
|
|
567
|
-
console.
|
|
567
|
+
console.info(`[AudioStreamManager] ${message}`, ...args);
|
|
568
568
|
}
|
|
569
569
|
}
|
|
570
570
|
/**
|
|
@@ -843,7 +843,7 @@ var ConnectionManager = class {
|
|
|
843
843
|
*/
|
|
844
844
|
log(message, ...args) {
|
|
845
845
|
if (this.debug) {
|
|
846
|
-
console.
|
|
846
|
+
console.info(`[ConnectionManager] ${message}`, ...args);
|
|
847
847
|
}
|
|
848
848
|
}
|
|
849
849
|
};
|
|
@@ -1117,7 +1117,7 @@ var AuthManager = class {
|
|
|
1117
1117
|
*/
|
|
1118
1118
|
log(message, ...args) {
|
|
1119
1119
|
if (this.config.debug) {
|
|
1120
|
-
console.
|
|
1120
|
+
console.info(`[AuthManager] ${message}`, ...args);
|
|
1121
1121
|
}
|
|
1122
1122
|
}
|
|
1123
1123
|
};
|
|
@@ -1233,7 +1233,7 @@ var EventManager = class {
|
|
|
1233
1233
|
*/
|
|
1234
1234
|
log(message, ...args) {
|
|
1235
1235
|
if (this.debug) {
|
|
1236
|
-
console.
|
|
1236
|
+
console.info(`[EventManager] ${message}`, ...args);
|
|
1237
1237
|
}
|
|
1238
1238
|
}
|
|
1239
1239
|
};
|
|
@@ -2668,7 +2668,7 @@ var GeminiLiveVoice = class _GeminiLiveVoice extends voice.MastraVoice {
|
|
|
2668
2668
|
}
|
|
2669
2669
|
log(message, ...args) {
|
|
2670
2670
|
if (this.debug) {
|
|
2671
|
-
console.
|
|
2671
|
+
console.info(`[GeminiLiveVoice] ${message}`, ...args);
|
|
2672
2672
|
}
|
|
2673
2673
|
}
|
|
2674
2674
|
/**
|