@veltdev/sdk-staging 4.5.0-beta.89 → 4.5.0-beta.9
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/client/snippyly.model.d.ts +8 -62
- package/app/models/data/button.data.model.d.ts +0 -2
- package/app/models/data/comment-annotation.data.model.d.ts +0 -7
- package/app/models/data/comment-resolver.data.model.d.ts +0 -19
- package/app/models/data/comment-sidebar-config.model.d.ts +0 -26
- package/app/models/data/comment.data.model.d.ts +0 -1
- package/app/models/data/core-events.data.model.d.ts +0 -9
- package/app/models/data/custom-filter.data.model.d.ts +0 -8
- package/app/models/data/document-paths.data.model.d.ts +0 -12
- package/app/models/data/document.data.model.d.ts +0 -2
- package/app/models/data/location.model.d.ts +0 -10
- package/app/models/data/media-preview-config.data.model.d.ts +0 -2
- package/app/models/data/multi-thread.data.model.d.ts +0 -2
- package/app/models/data/notification.model.d.ts +1 -23
- package/app/models/data/presence-events.data.model.d.ts +0 -8
- package/app/models/data/reaction-resolver.data.model.d.ts +2 -4
- package/app/models/data/recorder-annotation.data.model.d.ts +0 -3
- package/app/models/data/recorder-events.data.model.d.ts +0 -19
- package/app/models/data/recorder.model.d.ts +0 -4
- package/app/models/data/resolver.data.model.d.ts +0 -7
- package/app/models/data/user-iam.data.model.d.ts +0 -6
- package/app/models/data/user-resolver.data.model.d.ts +0 -2
- package/app/models/data/user.data.model.d.ts +0 -10
- package/app/models/element/comment-element.model.d.ts +11 -136
- package/app/models/element/notification-element.model.d.ts +3 -103
- package/app/models/element/presence-element.model.d.ts +1 -15
- package/app/models/element/recorder-element.model.d.ts +158 -239
- package/app/utils/constants.d.ts +0 -45
- package/app/utils/enums.d.ts +1 -21
- package/models.d.ts +0 -4
- package/package.json +1 -1
- package/types.d.ts +0 -1
- package/velt.js +106 -117
- package/app/models/data/crdt.data.model.d.ts +0 -59
- package/app/models/data/encryption-provider.data.model.d.ts +0 -12
- package/app/models/data/notifications-events.data.model.d.ts +0 -9
- package/app/models/data/presence-actions.data.model.d.ts +0 -5
- package/app/models/element/crdt-element.model.d.ts +0 -166
|
@@ -2,245 +2,164 @@
|
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
3
|
import { RecorderData, RecorderRequestQuery, GetRecordingDataResponse, GetRecordingsResponse, DeleteRecordingsResponse } from "../data/recorder-annotation.data.model";
|
|
4
4
|
import { RecorderEventTypesMap } from "../data/recorder-events.data.model";
|
|
5
|
-
import { RecordedData, RecorderQualityConstraints, RecorderEncodingOptions
|
|
5
|
+
import { RecordedData, RecorderQualityConstraints, RecorderEncodingOptions } from "../data/recorder.model";
|
|
6
6
|
|
|
7
7
|
export declare class RecorderElement {
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
/**
|
|
168
|
-
* To get recording data by recorder ids
|
|
169
|
-
*/
|
|
170
|
-
private _getRecordingData;
|
|
171
|
-
|
|
172
|
-
/**
|
|
173
|
-
* To enable video editor
|
|
174
|
-
*/
|
|
175
|
-
private _enableVideoEditor;
|
|
176
|
-
|
|
177
|
-
/**
|
|
178
|
-
* To disable video editor
|
|
179
|
-
*/
|
|
180
|
-
private _disableVideoEditor;
|
|
181
|
-
|
|
182
|
-
/**
|
|
183
|
-
* To get recordings
|
|
184
|
-
*/
|
|
185
|
-
private _getRecordings;
|
|
186
|
-
|
|
187
|
-
/**
|
|
188
|
-
* To fetch recordings
|
|
189
|
-
*/
|
|
190
|
-
private _fetchRecordings;
|
|
191
|
-
|
|
192
|
-
/**
|
|
193
|
-
* To delete recordings
|
|
194
|
-
*/
|
|
195
|
-
private _deleteRecordings;
|
|
196
|
-
|
|
197
|
-
/**
|
|
198
|
-
* To set recording quality constraints
|
|
199
|
-
*/
|
|
200
|
-
private _setRecordingQualityConstraints;
|
|
201
|
-
|
|
202
|
-
/**
|
|
203
|
-
* To set recording encoding options
|
|
204
|
-
*/
|
|
205
|
-
private _setRecordingEncodingOptions;
|
|
206
|
-
|
|
207
|
-
/**
|
|
208
|
-
* To download latest video
|
|
209
|
-
*/
|
|
210
|
-
private _downloadLatestVideo;
|
|
211
|
-
|
|
212
|
-
/**
|
|
213
|
-
* To enable recording mic
|
|
214
|
-
*/
|
|
215
|
-
private _enableRecordingMic;
|
|
216
|
-
|
|
217
|
-
/**
|
|
218
|
-
* To disable recording mic
|
|
219
|
-
*/
|
|
220
|
-
private _disableRecordingMic;
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* To enable onboarding tooltip
|
|
224
|
-
*/
|
|
225
|
-
private _enableOnboardingTooltip;
|
|
226
|
-
|
|
227
|
-
/**
|
|
228
|
-
* To disable onboarding tooltip
|
|
229
|
-
*/
|
|
230
|
-
private _disableOnboardingTooltip;
|
|
231
|
-
|
|
232
|
-
/**
|
|
233
|
-
* To enable retake on video editor
|
|
234
|
-
*/
|
|
235
|
-
private _enableRetakeOnVideoEditor;
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* To disable retake on video editor
|
|
239
|
-
*/
|
|
240
|
-
private _disableRetakeOnVideoEditor;
|
|
241
|
-
|
|
242
|
-
/**
|
|
243
|
-
* To ask device permission
|
|
244
|
-
*/
|
|
245
|
-
private _askDevicePermission;
|
|
246
|
-
}
|
|
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
|
+
constructor();
|
|
87
|
+
|
|
88
|
+
private _initRecording;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* @deprecated Use on('recordingDone') method instead
|
|
92
|
+
*/
|
|
93
|
+
private _onRecordedData;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* To enable dark mode in comments
|
|
97
|
+
*/
|
|
98
|
+
private _enableRecordingCountdown;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* To disable dark mode in comments
|
|
102
|
+
*/
|
|
103
|
+
private _disableRecordingCountdown;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* To get recording data by recorder id
|
|
107
|
+
* @deprecated Use getRecordingData() method instead
|
|
108
|
+
*/
|
|
109
|
+
private _getRecordingDataByRecorderId;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* To enable recording transcription
|
|
113
|
+
*/
|
|
114
|
+
private _enableRecordingTranscription;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* To disable recording transcription
|
|
118
|
+
*/
|
|
119
|
+
private _disableRecordingTranscription;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Subscribe to recorder actions
|
|
123
|
+
*/
|
|
124
|
+
private _on;
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* To get recording data by recorder ids
|
|
128
|
+
*/
|
|
129
|
+
private _getRecordingData;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* To enable video editor
|
|
133
|
+
*/
|
|
134
|
+
private _enableVideoEditor;
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* To disable video editor
|
|
138
|
+
*/
|
|
139
|
+
private _disableVideoEditor;
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* To get recordings
|
|
143
|
+
*/
|
|
144
|
+
private _getRecordings;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* To fetch recordings
|
|
148
|
+
*/
|
|
149
|
+
private _fetchRecordings;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* To delete recordings
|
|
153
|
+
*/
|
|
154
|
+
private _deleteRecordings;
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* To set recording quality constraints
|
|
158
|
+
*/
|
|
159
|
+
private _setRecordingQualityConstraints;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* To set recording encoding options
|
|
163
|
+
*/
|
|
164
|
+
private _setRecordingEncodingOptions;
|
|
165
|
+
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -12,10 +12,8 @@ export declare class Constants {
|
|
|
12
12
|
static FIREBASE_PARTIAL_PATH_ORGANIZATIONS: string;
|
|
13
13
|
static FIREBASE_PARTIAL_PATH_FOLDERS: string;
|
|
14
14
|
static FIREBASE_PARTIAL_PATH_DOCS: string;
|
|
15
|
-
static FIREBASE_PARTIAL_PATH_DOCUMENT_CONFIGURATIONS: string;
|
|
16
15
|
static FIREBASE_PARTIAL_PATH_PRESENCE: string;
|
|
17
16
|
static FIREBASE_PARTIAL_PATH_ORGANIZATION_USERS: string;
|
|
18
|
-
static FIREBASE_PARTIAL_PATH_CENTRAL_USERS: string;
|
|
19
17
|
static FIREBASE_PARTIAL_PATH_FOLDER_USERS: string;
|
|
20
18
|
static FIREBASE_PARTIAL_PATH_DOCUMENT_USERS: string;
|
|
21
19
|
static FIREBASE_PARTIAL_PATH_CURSOR: string;
|
|
@@ -46,7 +44,6 @@ export declare class Constants {
|
|
|
46
44
|
static FIREBASE_PARTIAL_PATH_LIVE_STATE: string;
|
|
47
45
|
static FIREBASE_PARTIAL_PATH_IAM: string;
|
|
48
46
|
static FIREBASE_PARTIAL_PATH_REACTION: string;
|
|
49
|
-
static FIREBASE_PARTIAL_PATH_CRDT: string;
|
|
50
47
|
static FIREBASE_PARTIAL_PATH_VIEWS: string;
|
|
51
48
|
static FIREBASE_PARTIAL_PATH_COMMENT_VIEWS: string;
|
|
52
49
|
static FIREBASE_PARTIAL_PATH_NOTIFICATION_VIEWS: string;
|
|
@@ -56,7 +53,6 @@ export declare class Constants {
|
|
|
56
53
|
static FIREBASE_PARTIAL_PATH_ORGANIZATION_NOTIFICATIONS: string;
|
|
57
54
|
static FIREBASE_PARTIAL_PATH_LAST_NOTIFICATION_TIMESTAMP: string;
|
|
58
55
|
static FIREBASE_PARTIAL_PATH_USERS: string;
|
|
59
|
-
static FIREBASE_PARTIAL_PATH_PERMISSIONS_USERS: string;
|
|
60
56
|
static FIREBASE_PARTIAL_PATH_USER_REQUESTS: string;
|
|
61
57
|
static FIREBASE_PARTIAL_PATH_FEEDBACK: string;
|
|
62
58
|
static FIREBASE_PARTIAL_PATH_BUGS: string;
|
|
@@ -197,7 +193,6 @@ export declare class Constants {
|
|
|
197
193
|
VELT_RECORDER_CONTROL_PANEL: string;
|
|
198
194
|
VELT_RECORDER_CONTROL_PANEL_INTERNAL: string;
|
|
199
195
|
VELT_RECORDER_PLAYER: string;
|
|
200
|
-
VELT_VIDEO_EDITOR: string;
|
|
201
196
|
VELT_TEXT_HIGHLIGHT: string;
|
|
202
197
|
VELT_COMMENT_TEXT_PORTAL: string;
|
|
203
198
|
VELT_COMMENTS_SIDEBAR: string;
|
|
@@ -462,44 +457,4 @@ export declare class Constants {
|
|
|
462
457
|
overlayX: any;
|
|
463
458
|
overlayY: any;
|
|
464
459
|
}[];
|
|
465
|
-
static VIDEO_EDITOR: {
|
|
466
|
-
ZOOM_IN_DURATION: number;
|
|
467
|
-
ZOOM_OUT_DURATION: number;
|
|
468
|
-
DEFAULT_ZOOM_FACTOR: number;
|
|
469
|
-
MAX_ZOOM_FACTOR: number;
|
|
470
|
-
ZOOM_FACTOR_OPTIONS: {
|
|
471
|
-
value: number;
|
|
472
|
-
label: string;
|
|
473
|
-
}[];
|
|
474
|
-
MIN_DRAG_AREA_MULTIPLIER: number;
|
|
475
|
-
PREFERRED_SECTION_DURATION_MULTIPLIER: number;
|
|
476
|
-
SELECTION_MIN_DRAG_DISTANCE: number;
|
|
477
|
-
MIN_DURATION_THRESHOLD: number;
|
|
478
|
-
TIME_BUFFER: number;
|
|
479
|
-
SHORT_VIDEO_THRESHOLD: number;
|
|
480
|
-
SMALL_VIDEO_THRESHOLD: number;
|
|
481
|
-
MILLISECOND_PRECISION_MULTIPLIER: number;
|
|
482
|
-
TENTH_SECOND_PRECISION_MULTIPLIER: number;
|
|
483
|
-
DEBOUNCE_DELAY: number;
|
|
484
|
-
DECIMAL_PRECISION: number;
|
|
485
|
-
MAX_MARKER_COUNT: number;
|
|
486
|
-
MARKER_INTERVAL: number;
|
|
487
|
-
FAST_TIMEOUT: number;
|
|
488
|
-
STANDARD_TIMEOUT: number;
|
|
489
|
-
RECTANGLE_POSITIONING: {
|
|
490
|
-
FULL_PERCENT: number;
|
|
491
|
-
HALF_PERCENT: number;
|
|
492
|
-
QUARTER_PERCENT: number;
|
|
493
|
-
};
|
|
494
|
-
EASING: {
|
|
495
|
-
QUAD_IN_OUT_MULTIPLIER: number;
|
|
496
|
-
QUAD_IN_OUT_POWER: number;
|
|
497
|
-
HALF_THRESHOLD: number;
|
|
498
|
-
};
|
|
499
|
-
PERCENTAGE: {
|
|
500
|
-
HALF: number;
|
|
501
|
-
FULL: number;
|
|
502
|
-
};
|
|
503
|
-
MILLISECONDS_TO_SECONDS: number;
|
|
504
|
-
};
|
|
505
460
|
}
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -62,16 +62,10 @@ export declare const RecorderEventTypes: {
|
|
|
62
62
|
readonly DELETE_RECORDING: "deleteRecording";
|
|
63
63
|
readonly ERROR: "error";
|
|
64
64
|
readonly RECORDING_SAVE_INITIATED: "recordingSaveInitiated";
|
|
65
|
-
readonly RECORDING_STARTED: "recordingStarted";
|
|
66
|
-
readonly RECORDING_PAUSED: "recordingPaused";
|
|
67
|
-
readonly RECORDING_RESUMED: "recordingResumed";
|
|
68
|
-
readonly RECORDING_CANCELLED: "recordingCancelled";
|
|
69
|
-
readonly RECORDING_STOPPED: "recordingStopped";
|
|
70
65
|
};
|
|
71
66
|
export declare const CoreEventTypes: {
|
|
72
67
|
readonly VELT_BUTTON_CLICK: "veltButtonClick";
|
|
73
68
|
readonly USER_UPDATE: "userUpdate";
|
|
74
|
-
readonly INIT_UPDATE: "initUpdate";
|
|
75
69
|
readonly DOCUMENT_INIT: "documentInit";
|
|
76
70
|
readonly ERROR: "error";
|
|
77
71
|
};
|
|
@@ -86,17 +80,12 @@ export declare const LiveStateSyncEventTypes: {
|
|
|
86
80
|
};
|
|
87
81
|
export declare const PresenceEventTypes: {
|
|
88
82
|
readonly MULTIPLE_USERS_ONLINE: "multipleUsersOnline";
|
|
89
|
-
readonly USER_STATE_CHANGE: "userStateChange";
|
|
90
|
-
};
|
|
91
|
-
export declare const NotificationEventTypes: {
|
|
92
|
-
readonly SETTINGS_UPDATED: "settingsUpdated";
|
|
93
83
|
};
|
|
94
84
|
export type CommentEventType = typeof CommentEventTypes[keyof typeof CommentEventTypes];
|
|
95
85
|
export type RecorderEventType = typeof RecorderEventTypes[keyof typeof RecorderEventTypes];
|
|
96
86
|
export type CoreEventType = typeof CoreEventTypes[keyof typeof CoreEventTypes];
|
|
97
87
|
export type LiveStateSyncEventType = typeof LiveStateSyncEventTypes[keyof typeof LiveStateSyncEventTypes];
|
|
98
88
|
export type PresenceEventType = typeof PresenceEventTypes[keyof typeof PresenceEventTypes];
|
|
99
|
-
export type NotificationEventType = typeof NotificationEventTypes[keyof typeof NotificationEventTypes];
|
|
100
89
|
export declare enum TagStatus {
|
|
101
90
|
ADDED = "added",
|
|
102
91
|
UPDATED = "updated",
|
|
@@ -266,20 +255,11 @@ export type ReactionPinType = 'timeline' | 'comment';
|
|
|
266
255
|
export type SidebarPosition = 'left' | 'right';
|
|
267
256
|
export type SidebarSortingCriteria = 'date' | 'unread' | null;
|
|
268
257
|
export type SidebarFilterCriteria = 'all' | 'read' | 'unread' | 'resolved';
|
|
269
|
-
export type SidebarFilterSearchType = 'people' | 'assigned' | 'tagged' | '
|
|
258
|
+
export type SidebarFilterSearchType = 'people' | 'assigned' | 'tagged' | 'pages' | 'statuses' | 'priorities' | 'categories' | 'versions';
|
|
270
259
|
export type InlineSortingCriteria = 'createdFirst' | 'createdLast' | 'updatedFirst' | 'updatedLast';
|
|
271
260
|
export type NotificationPanelMode = 'popover' | 'sidebar';
|
|
272
261
|
export type SidebarActionButtonType = 'default' | 'toggle';
|
|
273
|
-
export type SidebarButtonCountType = 'default' | 'filter';
|
|
274
262
|
export declare enum CommentSidebarSystemFiltersOperator {
|
|
275
263
|
AND = "and",
|
|
276
264
|
OR = "or"
|
|
277
265
|
}
|
|
278
|
-
/**
|
|
279
|
-
* Type for notification settings accordion types
|
|
280
|
-
*/
|
|
281
|
-
export type NotificationSettingsAccordionType = 'inbox' | 'email' | string;
|
|
282
|
-
/**
|
|
283
|
-
* Type for notification settings item options
|
|
284
|
-
*/
|
|
285
|
-
export type NotificationSettingsItemType = 'ALL' | 'MINE' | 'NONE' | string;
|
package/models.d.ts
CHANGED
|
@@ -35,11 +35,9 @@ export * from './app/models/data/location.model';
|
|
|
35
35
|
export * from './app/models/data/media-preview-config.data.model';
|
|
36
36
|
export * from './app/models/data/multi-thread.data.model';
|
|
37
37
|
export * from './app/models/data/notification.model';
|
|
38
|
-
export * from './app/models/data/notifications-events.data.model';
|
|
39
38
|
export * from './app/models/data/page-info.model';
|
|
40
39
|
export * from './app/models/data/permission.data.model';
|
|
41
40
|
export * from './app/models/data/presence-user.data.model';
|
|
42
|
-
export * from './app/models/data/presence-actions.data.model';
|
|
43
41
|
export * from './app/models/data/presence-events.data.model';
|
|
44
42
|
export * from './app/models/data/recorder.model';
|
|
45
43
|
export * from './app/models/data/recorder-annotation.data.model';
|
|
@@ -77,5 +75,3 @@ export * from './app/models/data/event-metadata.data.model';
|
|
|
77
75
|
export * from './app/models/data/user-resolver.data.model';
|
|
78
76
|
export * from './app/models/data/provider.data.model';
|
|
79
77
|
export * from './app/models/data/resolver.data.model';
|
|
80
|
-
export * from './app/models/data/crdt.data.model';
|
|
81
|
-
export * from './app/models/data/encryption-provider.data.model';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk-staging",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.9",
|
|
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": [
|
package/types.d.ts
CHANGED
|
@@ -16,5 +16,4 @@ export * from './app/models/element/views-element.model';
|
|
|
16
16
|
export * from './app/models/element/notification-element.model';
|
|
17
17
|
export * from './app/models/element/autocomplete-element.model';
|
|
18
18
|
export * from './app/models/element/reaction-element.model';
|
|
19
|
-
export * from './app/models/element/crdt-element.model';
|
|
20
19
|
export * from './models';
|