@veltdev/sdk 3.0.59 → 3.0.60
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.
|
@@ -551,14 +551,26 @@ export declare class CommentElement {
|
|
|
551
551
|
|
|
552
552
|
/**
|
|
553
553
|
* To enable showing recording summary in comments
|
|
554
|
+
* @deprecated Use `enableRecordingTranscription` instead
|
|
554
555
|
*/
|
|
555
556
|
public enableRecordingSummary: () => void;
|
|
556
557
|
|
|
557
558
|
/**
|
|
558
559
|
* To disable showing recording summary in comments
|
|
560
|
+
* @deprecated Use `disableRecordingTranscription` instead
|
|
559
561
|
*/
|
|
560
562
|
public disableRecordingSummary: () => void;
|
|
561
563
|
|
|
564
|
+
/**
|
|
565
|
+
* To enable recording transcription
|
|
566
|
+
*/
|
|
567
|
+
public enableRecordingTranscription: () => void;
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* To disable recording transcription
|
|
571
|
+
*/
|
|
572
|
+
public disableRecordingTranscription: () => void;
|
|
573
|
+
|
|
562
574
|
/**
|
|
563
575
|
* To enable recording countdown
|
|
564
576
|
*/
|
|
@@ -1429,14 +1441,26 @@ export declare class CommentElement {
|
|
|
1429
1441
|
|
|
1430
1442
|
/**
|
|
1431
1443
|
* To enable showing recording summary in comments
|
|
1444
|
+
* @deprecated Use `enableRecordingTranscription` instead
|
|
1432
1445
|
*/
|
|
1433
1446
|
private _enableRecordingSummary;
|
|
1434
1447
|
|
|
1435
1448
|
/**
|
|
1436
1449
|
* To disable showing recording summary in comments
|
|
1450
|
+
* @deprecated Use `disableRecordingTranscription` instead
|
|
1437
1451
|
*/
|
|
1438
1452
|
private _disableRecordingSummary;
|
|
1439
1453
|
|
|
1454
|
+
/**
|
|
1455
|
+
* To enable recording transcription
|
|
1456
|
+
*/
|
|
1457
|
+
private _enableRecordingTranscription;
|
|
1458
|
+
|
|
1459
|
+
/**
|
|
1460
|
+
* To disable recording transcription
|
|
1461
|
+
*/
|
|
1462
|
+
private _disableRecordingTranscription;
|
|
1463
|
+
|
|
1440
1464
|
/**
|
|
1441
1465
|
* To enable recording countdown
|
|
1442
1466
|
*/
|
|
@@ -23,6 +23,16 @@ export declare class RecorderElement {
|
|
|
23
23
|
*/
|
|
24
24
|
getRecordingDataByRecorderId: (recorderId: string) => Observable<RecorderData | null>;
|
|
25
25
|
|
|
26
|
+
/**
|
|
27
|
+
* To enable recording transcription
|
|
28
|
+
*/
|
|
29
|
+
enableRecordingTranscription: () => void;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* To disable recording transcription
|
|
33
|
+
*/
|
|
34
|
+
disableRecordingTranscription: () => void;
|
|
35
|
+
|
|
26
36
|
constructor();
|
|
27
37
|
|
|
28
38
|
private _initRecording;
|
|
@@ -43,4 +53,14 @@ export declare class RecorderElement {
|
|
|
43
53
|
* To get recording data by recorder id
|
|
44
54
|
*/
|
|
45
55
|
private _getRecordingDataByRecorderId;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* To enable recording transcription
|
|
59
|
+
*/
|
|
60
|
+
private _enableRecordingTranscription;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* To disable recording transcription
|
|
64
|
+
*/
|
|
65
|
+
private _disableRecordingTranscription;
|
|
46
66
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -338,6 +338,8 @@ export declare class Constants {
|
|
|
338
338
|
SNIPPYLY_DEFAULT_MEDIA_SOURCE_OPTIONS: string;
|
|
339
339
|
SNIPPYLY_QUEUED_COMMENT: string;
|
|
340
340
|
VELT_USER: string;
|
|
341
|
+
VELT_USER_FORCE_RE_LOGGED_IN: string;
|
|
342
|
+
VELT_VERSION: string;
|
|
341
343
|
};
|
|
342
344
|
static NON_NESTABLE_ELEMENTS: {
|
|
343
345
|
[tag: string]: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.60",
|
|
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": [
|