@veltdev/sdk 4.5.0-beta.42 → 4.5.0-beta.44
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.
|
@@ -11,6 +11,12 @@ export declare class UserIAM {
|
|
|
11
11
|
* The user's contact details
|
|
12
12
|
*/
|
|
13
13
|
user: UserContact;
|
|
14
|
+
documentIds?: string[];
|
|
15
|
+
folderIds?: string[];
|
|
16
|
+
organizationIds?: string[];
|
|
17
|
+
documentIdsCount?: number;
|
|
18
|
+
folderIdsCount?: number;
|
|
19
|
+
organizationIdsCount?: number;
|
|
14
20
|
/**
|
|
15
21
|
* The user's role in the document
|
|
16
22
|
*/
|
|
@@ -99,6 +99,26 @@ export declare class RecorderElement {
|
|
|
99
99
|
*/
|
|
100
100
|
disableRecordingMic: () => void;
|
|
101
101
|
|
|
102
|
+
/**
|
|
103
|
+
* To enable onboarding tooltip
|
|
104
|
+
*/
|
|
105
|
+
enableOnboardingTooltip: () => void;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* To disable onboarding tooltip
|
|
109
|
+
*/
|
|
110
|
+
disableOnboardingTooltip: () => void;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* To enable retake on video editor
|
|
114
|
+
*/
|
|
115
|
+
enableRetakeOnVideoEditor: () => void;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* To disable retake on video editor
|
|
119
|
+
*/
|
|
120
|
+
disableRetakeOnVideoEditor: () => void;
|
|
121
|
+
|
|
102
122
|
constructor();
|
|
103
123
|
|
|
104
124
|
private _initRecording;
|
|
@@ -193,4 +213,24 @@ export declare class RecorderElement {
|
|
|
193
213
|
* To disable recording mic
|
|
194
214
|
*/
|
|
195
215
|
private _disableRecordingMic;
|
|
196
|
-
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* To enable onboarding tooltip
|
|
219
|
+
*/
|
|
220
|
+
private _enableOnboardingTooltip;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* To disable onboarding tooltip
|
|
224
|
+
*/
|
|
225
|
+
private _disableOnboardingTooltip;
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* To enable retake on video editor
|
|
229
|
+
*/
|
|
230
|
+
private _enableRetakeOnVideoEditor;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* To disable retake on video editor
|
|
234
|
+
*/
|
|
235
|
+
private _disableRetakeOnVideoEditor;
|
|
236
|
+
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare class Constants {
|
|
|
15
15
|
static FIREBASE_PARTIAL_PATH_DOCUMENT_CONFIGURATIONS: string;
|
|
16
16
|
static FIREBASE_PARTIAL_PATH_PRESENCE: string;
|
|
17
17
|
static FIREBASE_PARTIAL_PATH_ORGANIZATION_USERS: string;
|
|
18
|
+
static FIREBASE_PARTIAL_PATH_CENTRAL_USERS: string;
|
|
18
19
|
static FIREBASE_PARTIAL_PATH_FOLDER_USERS: string;
|
|
19
20
|
static FIREBASE_PARTIAL_PATH_DOCUMENT_USERS: string;
|
|
20
21
|
static FIREBASE_PARTIAL_PATH_CURSOR: string;
|
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.44",
|
|
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": [
|