@whereby.com/browser-sdk 3.6.0 → 3.7.0

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.
@@ -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;
@@ -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
  },
@@ -146,7 +146,7 @@ const selectRoomConnectionState = createSelector(selectChatMessages, selectCloud
146
146
  return state;
147
147
  });
148
148
 
149
- const browserSdkVersion = "3.6.0";
149
+ const browserSdkVersion = "3.7.0";
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.6.0",
3
+ "version": "3.7.0",
4
4
  "description": "Modules for integration Whereby video in web apps",
5
5
  "author": "Whereby AS",
6
6
  "license": "MIT",