@veltdev/sdk 3.0.49 → 3.0.51
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 {};
|
|
@@ -879,6 +879,16 @@ export declare class CommentElement {
|
|
|
879
879
|
*/
|
|
880
880
|
public disableResolveStatusAccessAdminOnly: () => void;
|
|
881
881
|
|
|
882
|
+
/**
|
|
883
|
+
* To enable seen by users
|
|
884
|
+
*/
|
|
885
|
+
public enableSeenByUsers: () => void;
|
|
886
|
+
|
|
887
|
+
/**
|
|
888
|
+
* To disable seen by users
|
|
889
|
+
*/
|
|
890
|
+
public disableSeenByUsers: () => void;
|
|
891
|
+
|
|
882
892
|
constructor();
|
|
883
893
|
/**
|
|
884
894
|
* Subscribe to comments on the current document.
|
|
@@ -1744,4 +1754,14 @@ export declare class CommentElement {
|
|
|
1744
1754
|
* To disable resolve status access admin only
|
|
1745
1755
|
*/
|
|
1746
1756
|
private _disableResolveStatusAccessAdminOnly;
|
|
1757
|
+
|
|
1758
|
+
/**
|
|
1759
|
+
* To enable seen by users
|
|
1760
|
+
*/
|
|
1761
|
+
private _enableSeenByUsers;
|
|
1762
|
+
|
|
1763
|
+
/**
|
|
1764
|
+
* To disable seen by users
|
|
1765
|
+
*/
|
|
1766
|
+
private _disableSeenByUsers;
|
|
1747
1767
|
}
|
|
@@ -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/app/utils/constants.d.ts
CHANGED
|
@@ -325,6 +325,7 @@ export declare class Constants {
|
|
|
325
325
|
SNIPPYLY_HUDDLE_DATA: string;
|
|
326
326
|
VELT_TAB_ID: string;
|
|
327
327
|
VELT_COMMENT_SIDEBAR_FILTERS_RESET: string;
|
|
328
|
+
VELT_COMMENT_SIDEBAR_CUSTOM_ACTIONS_STATE: string;
|
|
328
329
|
VELT_CURSOR_MULTIPLE_USERS_DETECTED: string;
|
|
329
330
|
VELT_PRESENCE_MULTIPLE_USERS_DETECTED: string;
|
|
330
331
|
VELT_CUSTOM_PRIORITY_MAP: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.51",
|
|
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": [
|