@veltdev/sdk 3.0.54 → 3.0.55
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,7 +126,7 @@ export declare class RecorderAnnotation {
|
|
|
126
126
|
*/
|
|
127
127
|
displayName?: string;
|
|
128
128
|
}
|
|
129
|
-
declare class
|
|
129
|
+
declare class RecorderDataTranscriptSegment {
|
|
130
130
|
startTime: string;
|
|
131
131
|
endTime: string;
|
|
132
132
|
startTimeInSeconds: number;
|
|
@@ -134,20 +134,25 @@ declare class RecorderDataTranscriptionSegment {
|
|
|
134
134
|
text: string;
|
|
135
135
|
}
|
|
136
136
|
declare class RecorderDataTranscription {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
137
|
+
transcriptSegments?: RecorderDataTranscriptSegment[];
|
|
138
|
+
vttFileUrl?: string;
|
|
139
|
+
contentSummary?: string;
|
|
140
140
|
}
|
|
141
|
-
declare class
|
|
141
|
+
declare class RecorderDataAsset {
|
|
142
142
|
url: string;
|
|
143
143
|
mimeType?: string;
|
|
144
|
-
|
|
145
|
-
size
|
|
146
|
-
|
|
147
|
-
|
|
144
|
+
fileName?: string;
|
|
145
|
+
/** File size in bytes */
|
|
146
|
+
fileSizeInBytes?: number;
|
|
147
|
+
/**
|
|
148
|
+
* The format/extension of the file
|
|
149
|
+
* @example 'mp3', 'mp4', 'webm'
|
|
150
|
+
*/
|
|
151
|
+
fileFormat?: 'mp3' | 'mp4' | 'webm' | string;
|
|
152
|
+
thumbnailUrl?: string;
|
|
148
153
|
}
|
|
149
154
|
export declare class RecorderData {
|
|
150
|
-
|
|
155
|
+
assets: RecorderDataAsset[];
|
|
151
156
|
transcription: RecorderDataTranscription;
|
|
152
157
|
}
|
|
153
158
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.55",
|
|
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": [
|