@mastra/voice-openai-realtime 0.0.0-workflow-deno-20250616132510 → 0.0.0-working-memory-per-user-20250620161509

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,20 +1,49 @@
1
1
  # @mastra/voice-openai-realtime
2
2
 
3
- ## 0.0.0-workflow-deno-20250616132510
3
+ ## 0.0.0-working-memory-per-user-20250620161509
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d8f2d19]
8
+ - Updated dependencies [9d52b17]
9
+ - Updated dependencies [2097952]
10
+ - Updated dependencies [8ba1b51]
11
+ - @mastra/core@0.0.0-working-memory-per-user-20250620161509
12
+
13
+ ## 0.10.2
4
14
 
5
15
  ### Patch Changes
6
16
 
7
17
  - 63f6b7d: dependencies updates:
8
18
  - Updated dependency [`ws@^8.18.2` ↗︎](https://www.npmjs.com/package/ws/v/8.18.2) (from `^8.18.1`, in `dependencies`)
19
+ - 00335a2: Fix Typo in Example Usage of addInstructions Method
9
20
  - Updated dependencies [63f6b7d]
21
+ - Updated dependencies [12a95fc]
22
+ - Updated dependencies [4b0f8a6]
23
+ - Updated dependencies [51264a5]
24
+ - Updated dependencies [8e6f677]
25
+ - Updated dependencies [d70c420]
10
26
  - Updated dependencies [ee9af57]
11
27
  - Updated dependencies [36f1c36]
28
+ - Updated dependencies [2a16996]
12
29
  - Updated dependencies [10d352e]
13
- - Updated dependencies [b0c32de]
30
+ - Updated dependencies [9589624]
14
31
  - Updated dependencies [53d3c37]
32
+ - Updated dependencies [751c894]
33
+ - Updated dependencies [577ce3a]
34
+ - Updated dependencies [9260b3a]
35
+ - @mastra/core@0.10.6
36
+
37
+ ## 0.10.2-alpha.1
38
+
39
+ ### Patch Changes
40
+
41
+ - 00335a2: Fix Typo in Example Usage of addInstructions Method
42
+ - Updated dependencies [ee9af57]
43
+ - Updated dependencies [751c894]
15
44
  - Updated dependencies [577ce3a]
16
45
  - Updated dependencies [9260b3a]
17
- - @mastra/core@0.0.0-workflow-deno-20250616132510
46
+ - @mastra/core@0.10.6-alpha.1
18
47
 
19
48
  ## 0.10.2-alpha.0
20
49
 
@@ -114,7 +114,7 @@ export declare class OpenAIRealtimeVoice extends MastraVoice {
114
114
  *
115
115
  * @example
116
116
  * ```typescript
117
- * voice.addInstuctions('You are a helpful assistant.');
117
+ * voice.addInstructions('You are a helpful assistant.');
118
118
  * ```
119
119
  */
120
120
  addInstructions(instructions?: string): void;
@@ -114,7 +114,7 @@ export declare class OpenAIRealtimeVoice extends MastraVoice {
114
114
  *
115
115
  * @example
116
116
  * ```typescript
117
- * voice.addInstuctions('You are a helpful assistant.');
117
+ * voice.addInstructions('You are a helpful assistant.');
118
118
  * ```
119
119
  */
120
120
  addInstructions(instructions?: string): void;
package/dist/index.cjs CHANGED
@@ -152,7 +152,7 @@ var OpenAIRealtimeVoice = class extends voice.MastraVoice {
152
152
  *
153
153
  * @example
154
154
  * ```typescript
155
- * voice.addInstuctions('You are a helpful assistant.');
155
+ * voice.addInstructions('You are a helpful assistant.');
156
156
  * ```
157
157
  */
158
158
  addInstructions(instructions) {
package/dist/index.js CHANGED
@@ -150,7 +150,7 @@ var OpenAIRealtimeVoice = class extends MastraVoice {
150
150
  *
151
151
  * @example
152
152
  * ```typescript
153
- * voice.addInstuctions('You are a helpful assistant.');
153
+ * voice.addInstructions('You are a helpful assistant.');
154
154
  * ```
155
155
  */
156
156
  addInstructions(instructions) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/voice-openai-realtime",
3
- "version": "0.0.0-workflow-deno-20250616132510",
3
+ "version": "0.0.0-working-memory-per-user-20250620161509",
4
4
  "description": "Mastra OpenAI Realtime API integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,12 +33,12 @@
33
33
  "typescript": "^5.8.3",
34
34
  "vitest": "^2.1.9",
35
35
  "zod": "^3.25.57",
36
- "@internal/lint": "0.0.0-workflow-deno-20250616132510",
37
- "@mastra/core": "0.0.0-workflow-deno-20250616132510"
36
+ "@internal/lint": "0.0.0-working-memory-per-user-20250620161509",
37
+ "@mastra/core": "0.0.0-working-memory-per-user-20250620161509"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "zod": "^3.0.0",
41
- "@mastra/core": "0.0.0-workflow-deno-20250616132510"
41
+ "@mastra/core": "0.0.0-working-memory-per-user-20250620161509"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake",
package/src/index.ts CHANGED
@@ -193,7 +193,7 @@ export class OpenAIRealtimeVoice extends MastraVoice {
193
193
  *
194
194
  * @example
195
195
  * ```typescript
196
- * voice.addInstuctions('You are a helpful assistant.');
196
+ * voice.addInstructions('You are a helpful assistant.');
197
197
  * ```
198
198
  */
199
199
  addInstructions(instructions?: string) {