@veltdev/sdk 3.0.50 → 3.0.52
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.
|
@@ -126,3 +126,28 @@ export declare class RecorderAnnotation {
|
|
|
126
126
|
*/
|
|
127
127
|
displayName?: string;
|
|
128
128
|
}
|
|
129
|
+
declare class RecorderDataTranscriptionSegment {
|
|
130
|
+
startTime: string;
|
|
131
|
+
endTime: string;
|
|
132
|
+
startTimeInSeconds: number;
|
|
133
|
+
endTimeInSeconds: number;
|
|
134
|
+
text: string;
|
|
135
|
+
}
|
|
136
|
+
declare class RecorderDataTranscription {
|
|
137
|
+
transcript?: RecorderDataTranscriptionSegment[];
|
|
138
|
+
vttUrl?: string;
|
|
139
|
+
summary?: string;
|
|
140
|
+
}
|
|
141
|
+
declare class RecorderDataRecordingUrl {
|
|
142
|
+
url: string;
|
|
143
|
+
mimeType?: string;
|
|
144
|
+
name?: string;
|
|
145
|
+
size?: number;
|
|
146
|
+
type?: string;
|
|
147
|
+
thumbnail?: string;
|
|
148
|
+
}
|
|
149
|
+
export declare class RecorderData {
|
|
150
|
+
recordingUrls: RecorderDataRecordingUrl[];
|
|
151
|
+
transcription: RecorderDataTranscription;
|
|
152
|
+
}
|
|
153
|
+
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
|
+
import { RecorderData } from "../data/recorder-annotation.data.model";
|
|
3
4
|
|
|
4
5
|
export declare class RecorderElement {
|
|
5
6
|
|
|
@@ -17,6 +18,11 @@ export declare class RecorderElement {
|
|
|
17
18
|
*/
|
|
18
19
|
disableRecordingCountdown: () => void;
|
|
19
20
|
|
|
21
|
+
/**
|
|
22
|
+
* To get recording data by recorder id
|
|
23
|
+
*/
|
|
24
|
+
getRecordingDataByRecorderId: (recorderId: string) => Observable<RecorderData | null>;
|
|
25
|
+
|
|
20
26
|
constructor();
|
|
21
27
|
|
|
22
28
|
private _initRecording;
|
|
@@ -32,4 +38,9 @@ export declare class RecorderElement {
|
|
|
32
38
|
* To disable dark mode in comments
|
|
33
39
|
*/
|
|
34
40
|
private _disableRecordingCountdown;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* To get recording data by recorder id
|
|
44
|
+
*/
|
|
45
|
+
private _getRecordingDataByRecorderId;
|
|
35
46
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.52",
|
|
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": [
|