@veltdev/sdk 1.0.109 → 1.0.110
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.
- package/app/models/element/notification-element.model.d.ts +24 -12
- package/app/utils/constants.d.ts +1 -1
- package/app/utils/enums.d.ts +3 -2
- package/package.json +1 -1
- package/types.d.ts +1 -0
- package/velt.js +2 -2
|
@@ -1,34 +1,46 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
|
|
3
|
+
import { Notification } from "../data/notification.model";
|
|
4
|
+
|
|
3
5
|
export declare class NotificationElement {
|
|
4
6
|
/**
|
|
5
|
-
* To open notification history
|
|
7
|
+
* To open notification history panel
|
|
8
|
+
*/
|
|
9
|
+
openHistoryPanel: () => void;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* To close notification history panel
|
|
6
13
|
*/
|
|
7
|
-
|
|
14
|
+
closeHistoryPanel: () => void;
|
|
8
15
|
|
|
9
16
|
/**
|
|
10
|
-
* To
|
|
17
|
+
* To toggle notification history panel
|
|
11
18
|
*/
|
|
12
|
-
|
|
19
|
+
toggleHistoryPanel: () => void;
|
|
13
20
|
|
|
14
21
|
/**
|
|
15
|
-
* To
|
|
22
|
+
* To get notifications data
|
|
16
23
|
*/
|
|
17
|
-
|
|
24
|
+
getNotificationsData: () => Observable<Notification[]>;
|
|
18
25
|
constructor();
|
|
19
26
|
|
|
20
27
|
/**
|
|
21
|
-
* To open notification history
|
|
28
|
+
* To open notification history panel
|
|
29
|
+
*/
|
|
30
|
+
private _openHistoryPanel;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* To close notification history panel
|
|
22
34
|
*/
|
|
23
|
-
private
|
|
35
|
+
private _closeHistoryPanel;
|
|
24
36
|
|
|
25
37
|
/**
|
|
26
|
-
* To
|
|
38
|
+
* To toggle notification history panel
|
|
27
39
|
*/
|
|
28
|
-
private
|
|
40
|
+
private _toggleHistoryPanel;
|
|
29
41
|
|
|
30
42
|
/**
|
|
31
|
-
* To
|
|
43
|
+
* To get notifications data
|
|
32
44
|
*/
|
|
33
|
-
private
|
|
45
|
+
private _getNotificationsData;
|
|
34
46
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ export declare class Constants {
|
|
|
202
202
|
VELT_VIEW_ANALYTICS: string;
|
|
203
203
|
VELT_NOTIFICATIONS_TOOL: string;
|
|
204
204
|
VELT_NOTIFICATIONS_PANEL: string;
|
|
205
|
-
|
|
205
|
+
VELT_NOTIFICATIONS_HISTORY_PANEL: string;
|
|
206
206
|
};
|
|
207
207
|
static ATTRIBUTES: {
|
|
208
208
|
VELT_ID: string;
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -53,9 +53,10 @@ export declare enum Features {
|
|
|
53
53
|
PRESENCE = "presence",
|
|
54
54
|
TAG = "tag",
|
|
55
55
|
RECORDER = "recorder",
|
|
56
|
-
REWRITER = "rewriter"
|
|
56
|
+
REWRITER = "rewriter",
|
|
57
|
+
LIVE_SELECTION = "liveSelection"
|
|
57
58
|
}
|
|
58
|
-
export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag';
|
|
59
|
+
export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection';
|
|
59
60
|
export declare enum DeviceType {
|
|
60
61
|
DESKTOP = "Desktop",
|
|
61
62
|
MOBILE = "Mobile",
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -12,4 +12,5 @@ export * from './app/models/element/rewriter-element.model';
|
|
|
12
12
|
export * from './app/models/element/selection-element.model';
|
|
13
13
|
export * from './app/models/element/tag-element.model';
|
|
14
14
|
export * from './app/models/element/views-element.model';
|
|
15
|
+
export * from './app/models/element/notification-element.model';
|
|
15
16
|
export * from './models';
|