@veltdev/sdk 3.0.59 → 3.0.61
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FirebaseOptions } from "@angular/fire/app";
|
|
1
2
|
import { FeatureType } from "../../utils/enums";
|
|
2
3
|
export declare class Config {
|
|
3
4
|
/**
|
|
@@ -43,3 +44,6 @@ export declare class Config {
|
|
|
43
44
|
*/
|
|
44
45
|
usePrefersColorScheme?: boolean;
|
|
45
46
|
}
|
|
47
|
+
export interface ExtendedFirebaseOptions extends FirebaseOptions {
|
|
48
|
+
storeDbId: string;
|
|
49
|
+
}
|
|
@@ -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
|
@@ -9,6 +9,8 @@ export declare class Constants {
|
|
|
9
9
|
static FIREBASE_PARTIAL_PATH_ORGANIZATIONS: string;
|
|
10
10
|
static FIREBASE_PARTIAL_PATH_DOCS: string;
|
|
11
11
|
static FIREBASE_PARTIAL_PATH_PRESENCE: string;
|
|
12
|
+
static FIREBASE_PARTIAL_PATH_ORGANIZATION_USERS: string;
|
|
13
|
+
static FIREBASE_PARTIAL_PATH_DOCUMENT_USERS: string;
|
|
12
14
|
static FIREBASE_PARTIAL_PATH_CURSOR: string;
|
|
13
15
|
static FIREBASE_PARTIAL_PATH_ARROW: string;
|
|
14
16
|
static FIREBASE_PARTIAL_PATH_AREA: string;
|
|
@@ -20,6 +22,10 @@ export declare class Constants {
|
|
|
20
22
|
static FIREBASE_PARTIAL_PATH_HUDDLE: string;
|
|
21
23
|
static FIREBASE_PARTIAL_PATH_CONTACTS: string;
|
|
22
24
|
static FIREBASE_PARTIAL_PATH_GROUPS: string;
|
|
25
|
+
static FIREBASE_PARTIAL_PATH_NOTIFICATION_DOCS: string;
|
|
26
|
+
static FIREBASE_PARTIAL_PATH_NOTIFICATION_USERS: string;
|
|
27
|
+
static FIREBASE_PARTIAL_PATH_DOC_NOTIFICATION: string;
|
|
28
|
+
static FIREBASE_PARTIAL_PATH_USER_NOTIFICATION: string;
|
|
23
29
|
static FIREBASE_PARTIAL_PATH_GLOBAL: string;
|
|
24
30
|
static FIREBASE_PARTIAL_PATH_LOGINS: string;
|
|
25
31
|
static FIREBASE_PARTIAL_PATH_METADATA: string;
|
|
@@ -33,6 +39,10 @@ export declare class Constants {
|
|
|
33
39
|
static FIREBASE_PARTIAL_PATH_IAM: string;
|
|
34
40
|
static FIREBASE_PARTIAL_PATH_REACTION: string;
|
|
35
41
|
static FIREBASE_PARTIAL_PATH_VIEWS: string;
|
|
42
|
+
static FIREBASE_PARTIAL_PATH_COMMENT_VIEWS: string;
|
|
43
|
+
static FIREBASE_PARTIAL_PATH_NOTIFICATION_VIEWS: string;
|
|
44
|
+
static FIREBASE_PARTIAL_PATH_DOCUMENT_VIEWS: string;
|
|
45
|
+
static FIREBASE_PARTIAL_PATH_LOCATION_VIEWS: string;
|
|
36
46
|
static FIREBASE_PARTIAL_PATH_NOTIFICATIONS: string;
|
|
37
47
|
static FIREBASE_PARTIAL_PATH_ORGANIZATION_NOTIFICATIONS: string;
|
|
38
48
|
static FIREBASE_PARTIAL_PATH_LAST_NOTIFICATION_TIMESTAMP: string;
|
|
@@ -338,6 +348,8 @@ export declare class Constants {
|
|
|
338
348
|
SNIPPYLY_DEFAULT_MEDIA_SOURCE_OPTIONS: string;
|
|
339
349
|
SNIPPYLY_QUEUED_COMMENT: string;
|
|
340
350
|
VELT_USER: string;
|
|
351
|
+
VELT_USER_FORCE_RE_LOGGED_IN: string;
|
|
352
|
+
VELT_VERSION: string;
|
|
341
353
|
};
|
|
342
354
|
static NON_NESTABLE_ELEMENTS: {
|
|
343
355
|
[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.61",
|
|
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": [
|