@veltdev/sdk 4.5.0-beta.38 → 4.5.0-beta.39
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/app/models/element/recorder-element.model.d.ts +20 -0
- package/package.json +1 -1
- package/velt.js +66 -66
|
@@ -89,6 +89,16 @@ export declare class RecorderElement {
|
|
|
89
89
|
*/
|
|
90
90
|
downloadLatestVideo: (recorderId: string) => Promise<boolean>;
|
|
91
91
|
|
|
92
|
+
/**
|
|
93
|
+
* To enable recording mic
|
|
94
|
+
*/
|
|
95
|
+
enableRecordingMic: () => void;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* To disable recording mic
|
|
99
|
+
*/
|
|
100
|
+
disableRecordingMic: () => void;
|
|
101
|
+
|
|
92
102
|
constructor();
|
|
93
103
|
|
|
94
104
|
private _initRecording;
|
|
@@ -173,4 +183,14 @@ export declare class RecorderElement {
|
|
|
173
183
|
* To download latest video
|
|
174
184
|
*/
|
|
175
185
|
private _downloadLatestVideo;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* To enable recording mic
|
|
189
|
+
*/
|
|
190
|
+
private _enableRecordingMic;
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* To disable recording mic
|
|
194
|
+
*/
|
|
195
|
+
private _disableRecordingMic;
|
|
176
196
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.39",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|