osborn 0.9.29 → 0.9.30
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/dist/recall-client.js +4 -4
- package/package.json +1 -1
package/dist/recall-client.js
CHANGED
|
@@ -19,9 +19,9 @@ export class RecallClient extends EventEmitter {
|
|
|
19
19
|
meeting_url: meetingUrl,
|
|
20
20
|
bot_name: botName,
|
|
21
21
|
recording_config: {
|
|
22
|
-
//
|
|
23
|
-
//
|
|
24
|
-
|
|
22
|
+
// Field names must match Recall API exactly (no underscore in realtime_endpoints).
|
|
23
|
+
// real_time_endpoints was silently ignored — API uses realtime_endpoints.
|
|
24
|
+
realtime_endpoints: [{
|
|
25
25
|
type: 'webhook',
|
|
26
26
|
config: {
|
|
27
27
|
url: `${webhookBaseUrl}/webhook/recall`,
|
|
@@ -30,7 +30,7 @@ export class RecallClient extends EventEmitter {
|
|
|
30
30
|
}],
|
|
31
31
|
transcription_options: {
|
|
32
32
|
provider: 'assembly_ai',
|
|
33
|
-
mode: 'prioritize_low_latency',
|
|
33
|
+
mode: 'prioritize_low_latency',
|
|
34
34
|
},
|
|
35
35
|
},
|
|
36
36
|
output_media: {
|