@whereby.com/browser-sdk 3.6.0 → 3.7.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/dist/embed/index.d.ts
CHANGED
|
@@ -133,6 +133,8 @@ interface WherebyEmbedElementCommands {
|
|
|
133
133
|
stopRecording: () => void;
|
|
134
134
|
startStreaming: () => void;
|
|
135
135
|
stopStreaming: () => void;
|
|
136
|
+
startLiveTranscription: () => void;
|
|
137
|
+
stopLiveTranscription: () => void;
|
|
136
138
|
toggleBreakout: (enabled?: boolean) => void;
|
|
137
139
|
toggleCamera: (enabled?: boolean) => void;
|
|
138
140
|
toggleMicrophone: (enabled?: boolean) => void;
|
package/dist/embed/index.esm.js
CHANGED
|
@@ -116,6 +116,12 @@ define("WherebyEmbed", {
|
|
|
116
116
|
stopStreaming() {
|
|
117
117
|
this._postCommand("stop_streaming");
|
|
118
118
|
},
|
|
119
|
+
startLiveTranscription() {
|
|
120
|
+
this._postCommand("start_live_transcription");
|
|
121
|
+
},
|
|
122
|
+
stopLiveTranscription() {
|
|
123
|
+
this._postCommand("stop_live_transcription");
|
|
124
|
+
},
|
|
119
125
|
toggleBreakout(open) {
|
|
120
126
|
this._postCommand("toggle_breakout", [open]);
|
|
121
127
|
},
|
package/dist/react/index.esm.js
CHANGED
|
@@ -146,7 +146,7 @@ const selectRoomConnectionState = createSelector(selectChatMessages, selectCloud
|
|
|
146
146
|
return state;
|
|
147
147
|
});
|
|
148
148
|
|
|
149
|
-
const browserSdkVersion = "3.
|
|
149
|
+
const browserSdkVersion = "3.7.1";
|
|
150
150
|
|
|
151
151
|
const defaultRoomConnectionOptions = {
|
|
152
152
|
localMediaOptions: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whereby.com/browser-sdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
4
4
|
"description": "Modules for integration Whereby video in web apps",
|
|
5
5
|
"author": "Whereby AS",
|
|
6
6
|
"license": "MIT",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"dependencies": {
|
|
79
79
|
"@radix-ui/react-popover": "^1.0.7",
|
|
80
80
|
"@reduxjs/toolkit": "^2.2.3",
|
|
81
|
-
"@whereby.com/core": "0.
|
|
81
|
+
"@whereby.com/core": "0.24.0",
|
|
82
82
|
"clsx": "^2.1.1",
|
|
83
83
|
"heresy": "^1.0.4",
|
|
84
84
|
"react-redux": "^9.1.1",
|