@veltdev/sdk-staging 4.5.0-beta.56 → 4.5.0-beta.58

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.
@@ -83,6 +83,16 @@ export declare class NotificationElement {
83
83
  */
84
84
  disableSettings: () => void;
85
85
 
86
+ /**
87
+ * To enable self notifications
88
+ */
89
+ enableSelfNotifications: () => void;
90
+
91
+ /**
92
+ * To disable self notifications
93
+ */
94
+ disableSelfNotifications: () => void;
95
+
86
96
  /**
87
97
  * To set settings initial config
88
98
  */
@@ -170,6 +180,16 @@ export declare class NotificationElement {
170
180
  */
171
181
  private _disableSettings;
172
182
 
183
+ /**
184
+ * To enable self notifications
185
+ */
186
+ private _enableSelfNotifications;
187
+
188
+ /**
189
+ * To disable self notifications
190
+ */
191
+ private _disableSelfNotifications;
192
+
173
193
  /**
174
194
  * To set settings initial config
175
195
  */
@@ -6,171 +6,191 @@ import { RecordedData, RecorderQualityConstraints, RecorderEncodingOptions } fro
6
6
 
7
7
  export declare class RecorderElement {
8
8
 
9
- initRecording: (type: string, panelId?: string) => any;
10
-
11
- /**
12
- * @deprecated Use on('recordingDone') method instead
13
- */
14
- onRecordedData: () => Observable<RecordedData | null>;
15
-
16
- /**
17
- * To enable recording countdown
18
- */
19
- enableRecordingCountdown: () => void;
20
-
21
- /**
22
- * To disable recording countdown
23
- */
24
- disableRecordingCountdown: () => void;
25
-
26
- /**
27
- * To get recording data by recorder id
28
- * @deprecated Use getRecordingData() method instead
29
- */
30
- getRecordingDataByRecorderId: (recorderId: string) => Observable<RecorderData | null>;
31
-
32
- /**
33
- * To enable recording transcription
34
- */
35
- enableRecordingTranscription: () => void;
36
-
37
- /**
38
- * To disable recording transcription
39
- */
40
- disableRecordingTranscription: () => void;
41
-
42
- /**
43
- * Subscribe to recorder actions
44
- */
45
- public on: <T extends keyof RecorderEventTypesMap>(action: T) => Observable<RecorderEventTypesMap[T]>;
46
-
47
- /**
48
- * @deprecated Use fetchRecordings() method instead
49
- */
50
- getRecordingData: (query: RecorderRequestQuery) => Promise<GetRecordingDataResponse>;
51
-
52
- /**
53
- * To enable video editor
54
- */
55
- enableVideoEditor: () => void;
56
-
57
- /**
58
- * To disable video editor
59
- */
60
- disableVideoEditor: () => void;
61
-
62
- /**
63
- * To get recordings
64
- */
65
- getRecordings: (query?: RecorderRequestQuery) => Observable<GetRecordingsResponse[]>;
66
-
67
- /**
68
- * To fetch recordings
69
- */
70
- fetchRecordings: (query?: RecorderRequestQuery) => Promise<GetRecordingsResponse[]>;
71
-
72
- /**
73
- * To delete recordings
74
- */
75
- deleteRecordings: (query?: RecorderRequestQuery) => Promise<DeleteRecordingsResponse[]>;
76
-
77
- /**
78
- * To set recording quality constraints
79
- */
80
- setRecordingQualityConstraints: (constraints: RecorderQualityConstraints) => void;
81
-
82
- /**
83
- * To set recording encoding options
84
- */
85
- setRecordingEncodingOptions: (options: RecorderEncodingOptions) => void;
86
-
87
- /**
88
- * To download latest video
89
- */
90
- downloadLatestVideo: (recorderId: string) => Promise<boolean>;
91
-
92
- constructor();
93
-
94
- private _initRecording;
95
-
96
- /**
97
- * @deprecated Use on('recordingDone') method instead
98
- */
99
- private _onRecordedData;
100
-
101
- /**
102
- * To enable dark mode in comments
103
- */
104
- private _enableRecordingCountdown;
105
-
106
- /**
107
- * To disable dark mode in comments
108
- */
109
- private _disableRecordingCountdown;
110
-
111
- /**
112
- * To get recording data by recorder id
113
- * @deprecated Use getRecordingData() method instead
114
- */
115
- private _getRecordingDataByRecorderId;
116
-
117
- /**
118
- * To enable recording transcription
119
- */
120
- private _enableRecordingTranscription;
121
-
122
- /**
123
- * To disable recording transcription
124
- */
125
- private _disableRecordingTranscription;
126
-
127
- /**
128
- * Subscribe to recorder actions
129
- */
130
- private _on;
131
-
132
- /**
133
- * To get recording data by recorder ids
134
- */
135
- private _getRecordingData;
136
-
137
- /**
138
- * To enable video editor
139
- */
140
- private _enableVideoEditor;
141
-
142
- /**
143
- * To disable video editor
144
- */
145
- private _disableVideoEditor;
146
-
147
- /**
148
- * To get recordings
149
- */
150
- private _getRecordings;
151
-
152
- /**
153
- * To fetch recordings
154
- */
155
- private _fetchRecordings;
156
-
157
- /**
158
- * To delete recordings
159
- */
160
- private _deleteRecordings;
161
-
162
- /**
163
- * To set recording quality constraints
164
- */
165
- private _setRecordingQualityConstraints;
166
-
167
- /**
168
- * To set recording encoding options
169
- */
170
- private _setRecordingEncodingOptions;
171
-
172
- /**
173
- * To download latest video
174
- */
175
- private _downloadLatestVideo;
9
+ initRecording: (type: string, panelId?: string) => any;
10
+
11
+ /**
12
+ * @deprecated Use on('recordingDone') method instead
13
+ */
14
+ onRecordedData: () => Observable<RecordedData | null>;
15
+
16
+ /**
17
+ * To enable recording countdown
18
+ */
19
+ enableRecordingCountdown: () => void;
20
+
21
+ /**
22
+ * To disable recording countdown
23
+ */
24
+ disableRecordingCountdown: () => void;
25
+
26
+ /**
27
+ * To get recording data by recorder id
28
+ * @deprecated Use getRecordingData() method instead
29
+ */
30
+ getRecordingDataByRecorderId: (recorderId: string) => Observable<RecorderData | null>;
31
+
32
+ /**
33
+ * To enable recording transcription
34
+ */
35
+ enableRecordingTranscription: () => void;
36
+
37
+ /**
38
+ * To disable recording transcription
39
+ */
40
+ disableRecordingTranscription: () => void;
41
+
42
+ /**
43
+ * Subscribe to recorder actions
44
+ */
45
+ public on: <T extends keyof RecorderEventTypesMap>(action: T) => Observable<RecorderEventTypesMap[T]>;
46
+
47
+ /**
48
+ * @deprecated Use fetchRecordings() method instead
49
+ */
50
+ getRecordingData: (query: RecorderRequestQuery) => Promise<GetRecordingDataResponse>;
51
+
52
+ /**
53
+ * To enable video editor
54
+ */
55
+ enableVideoEditor: () => void;
56
+
57
+ /**
58
+ * To disable video editor
59
+ */
60
+ disableVideoEditor: () => void;
61
+
62
+ /**
63
+ * To get recordings
64
+ */
65
+ getRecordings: (query?: RecorderRequestQuery) => Observable<GetRecordingsResponse[]>;
66
+
67
+ /**
68
+ * To fetch recordings
69
+ */
70
+ fetchRecordings: (query?: RecorderRequestQuery) => Promise<GetRecordingsResponse[]>;
71
+
72
+ /**
73
+ * To delete recordings
74
+ */
75
+ deleteRecordings: (query?: RecorderRequestQuery) => Promise<DeleteRecordingsResponse[]>;
76
+
77
+ /**
78
+ * To set recording quality constraints
79
+ */
80
+ setRecordingQualityConstraints: (constraints: RecorderQualityConstraints) => void;
81
+
82
+ /**
83
+ * To set recording encoding options
84
+ */
85
+ setRecordingEncodingOptions: (options: RecorderEncodingOptions) => void;
86
+
87
+ /**
88
+ * To download latest video
89
+ */
90
+ downloadLatestVideo: (recorderId: string) => Promise<boolean>;
91
+
92
+ /**
93
+ * To enable recording mic
94
+ */
95
+ enableRecordingMic: () => void;
96
+
97
+ /**
98
+ * To disable recording mic
99
+ */
100
+ disableRecordingMic: () => void;
101
+
102
+ constructor();
103
+
104
+ private _initRecording;
105
+
106
+ /**
107
+ * @deprecated Use on('recordingDone') method instead
108
+ */
109
+ private _onRecordedData;
110
+
111
+ /**
112
+ * To enable dark mode in comments
113
+ */
114
+ private _enableRecordingCountdown;
115
+
116
+ /**
117
+ * To disable dark mode in comments
118
+ */
119
+ private _disableRecordingCountdown;
120
+
121
+ /**
122
+ * To get recording data by recorder id
123
+ * @deprecated Use getRecordingData() method instead
124
+ */
125
+ private _getRecordingDataByRecorderId;
126
+
127
+ /**
128
+ * To enable recording transcription
129
+ */
130
+ private _enableRecordingTranscription;
131
+
132
+ /**
133
+ * To disable recording transcription
134
+ */
135
+ private _disableRecordingTranscription;
136
+
137
+ /**
138
+ * Subscribe to recorder actions
139
+ */
140
+ private _on;
141
+
142
+ /**
143
+ * To get recording data by recorder ids
144
+ */
145
+ private _getRecordingData;
146
+
147
+ /**
148
+ * To enable video editor
149
+ */
150
+ private _enableVideoEditor;
151
+
152
+ /**
153
+ * To disable video editor
154
+ */
155
+ private _disableVideoEditor;
156
+
157
+ /**
158
+ * To get recordings
159
+ */
160
+ private _getRecordings;
161
+
162
+ /**
163
+ * To fetch recordings
164
+ */
165
+ private _fetchRecordings;
166
+
167
+ /**
168
+ * To delete recordings
169
+ */
170
+ private _deleteRecordings;
171
+
172
+ /**
173
+ * To set recording quality constraints
174
+ */
175
+ private _setRecordingQualityConstraints;
176
+
177
+ /**
178
+ * To set recording encoding options
179
+ */
180
+ private _setRecordingEncodingOptions;
181
+
182
+ /**
183
+ * To download latest video
184
+ */
185
+ private _downloadLatestVideo;
186
+
187
+ /**
188
+ * To enable recording mic
189
+ */
190
+ private _enableRecordingMic;
191
+
192
+ /**
193
+ * To disable recording mic
194
+ */
195
+ private _disableRecordingMic;
176
196
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk-staging",
3
- "version": "4.5.0-beta.56",
3
+ "version": "4.5.0-beta.58",
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": [