@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.
@@ -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
- openNotificationHistory: () => void;
14
+ closeHistoryPanel: () => void;
8
15
 
9
16
  /**
10
- * To close notification history
17
+ * To toggle notification history panel
11
18
  */
12
- closeNotificationHistory: () => void;
19
+ toggleHistoryPanel: () => void;
13
20
 
14
21
  /**
15
- * To toggle notification history
22
+ * To get notifications data
16
23
  */
17
- toggleNotificationHistory: () => void;
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 _openNotificationHistory;
35
+ private _closeHistoryPanel;
24
36
 
25
37
  /**
26
- * To close notification history
38
+ * To toggle notification history panel
27
39
  */
28
- private _closeNotificationHistory;
40
+ private _toggleHistoryPanel;
29
41
 
30
42
  /**
31
- * To toggle notification history
43
+ * To get notifications data
32
44
  */
33
- private _toggleNotificationHistory;
45
+ private _getNotificationsData;
34
46
  }
@@ -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
- VELT_NOTIFICATIONS_HISTORY: string;
205
+ VELT_NOTIFICATIONS_HISTORY_PANEL: string;
206
206
  };
207
207
  static ATTRIBUTES: {
208
208
  VELT_ID: string;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "1.0.109",
3
+ "version": "1.0.110",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {
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';