@veltdev/types-dev 5.0.2-beta.88 → 5.0.2-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.
Files changed (42) hide show
  1. package/app/client/snippyly.model.d.ts +1 -16
  2. package/app/models/data/attachment-resolver.data.model.d.ts +2 -2
  3. package/app/models/data/attachment.model.d.ts +0 -1
  4. package/app/models/data/autocomplete.data.model.d.ts +3 -4
  5. package/app/models/data/base-metadata.data.model.d.ts +0 -3
  6. package/app/models/data/comment-actions.data.model.d.ts +0 -4
  7. package/app/models/data/comment-annotation.data.model.d.ts +2 -11
  8. package/app/models/data/comment-events.data.model.d.ts +10 -12
  9. package/app/models/data/comment-resolver.data.model.d.ts +3 -3
  10. package/app/models/data/comment-sidebar-config.model.d.ts +0 -2
  11. package/app/models/data/config.data.model.d.ts +0 -26
  12. package/app/models/data/core-events.data.model.d.ts +0 -72
  13. package/app/models/data/crdt.data.model.d.ts +0 -51
  14. package/app/models/data/document.data.model.d.ts +0 -2
  15. package/app/models/data/live-state-events.data.model.d.ts +0 -6
  16. package/app/models/data/notification.model.d.ts +0 -4
  17. package/app/models/data/presence-user.data.model.d.ts +0 -5
  18. package/app/models/data/provider.data.model.d.ts +0 -6
  19. package/app/models/data/reaction-resolver.data.model.d.ts +3 -3
  20. package/app/models/data/recorder-annotation.data.model.d.ts +0 -11
  21. package/app/models/data/recorder-events.data.model.d.ts +0 -3
  22. package/app/models/data/resolver.data.model.d.ts +0 -1
  23. package/app/models/data/user-resolver.data.model.d.ts +0 -2
  24. package/app/models/data/user.data.model.d.ts +0 -3
  25. package/app/models/element/comment-element.model.d.ts +8 -48
  26. package/app/models/element/crdt-element.model.d.ts +1 -88
  27. package/app/models/element/presence-element.model.d.ts +0 -25
  28. package/app/models/element/rewriter-element.model.d.ts +0 -20
  29. package/app/utils/constants.d.ts +0 -224
  30. package/app/utils/enums.d.ts +3 -36
  31. package/models.d.ts +0 -7
  32. package/package.json +1 -1
  33. package/types.d.ts +0 -2
  34. package/app/models/data/activity-resolver.data.model.d.ts +0 -27
  35. package/app/models/data/activity.data.model.d.ts +0 -179
  36. package/app/models/data/notification-resolver.data.model.d.ts +0 -39
  37. package/app/models/data/recorder-resolver.data.model.d.ts +0 -58
  38. package/app/models/data/rewriter-events.data.model.d.ts +0 -44
  39. package/app/models/data/suggestion-events.data.model.d.ts +0 -57
  40. package/app/models/data/suggestion.data.model.d.ts +0 -267
  41. package/app/models/element/activity-element.model.d.ts +0 -33
  42. package/app/models/element/suggestion-element.model.d.ts +0 -180
@@ -291,14 +291,14 @@ export declare class CommentElement {
291
291
  public disableStatus: () => any;
292
292
 
293
293
  /**
294
- * To enable visibility options on comments
294
+ * To enable visibility option dropdown on comments
295
295
  */
296
- public enableVisibilityOptions: () => any;
296
+ public enableVisibilityOptionDropdown: () => any;
297
297
 
298
298
  /**
299
- * To disable visibility options on comments
299
+ * To disable visibility option dropdown on comments
300
300
  */
301
- public disableVisibilityOptions: () => any;
301
+ public disableVisibilityOptionDropdown: () => any;
302
302
 
303
303
  /**
304
304
  * To enable feature to show resolve button
@@ -503,16 +503,6 @@ export declare class CommentElement {
503
503
  */
504
504
  public disableReactions: () => void;
505
505
 
506
- /**
507
- * To enable anonymous email mentions in comments
508
- */
509
- public enableAnonymousEmail: () => void;
510
-
511
- /**
512
- * To disable anonymous email mentions in comments
513
- */
514
- public disableAnonymousEmail: () => void;
515
-
516
506
  /**
517
507
  * To set allowed recordings in comments
518
508
  * @param allowedRecordings "all", "none" or "audio", "video", "screen"
@@ -1400,16 +1390,6 @@ export declare class CommentElement {
1400
1390
  */
1401
1391
  public getComposerData: (request: GetComposerDataRequest) => ComposerTextChangeEvent | null;
1402
1392
 
1403
- /**
1404
- * To enable pin drag
1405
- */
1406
- public enablePinDrag: () => void;
1407
-
1408
- /**
1409
- * To disable pin drag
1410
- */
1411
- public disablePinDrag: () => void;
1412
-
1413
1393
  constructor();
1414
1394
  /**
1415
1395
  * Subscribe to comments on the current document.
@@ -1651,14 +1631,14 @@ export declare class CommentElement {
1651
1631
  private _disableStatus;
1652
1632
 
1653
1633
  /**
1654
- * To enable visibility options on comments
1634
+ * To enable visibility option dropdown on comments
1655
1635
  */
1656
- private _enableVisibilityOptions;
1636
+ private _enableVisibilityOptionDropdown;
1657
1637
 
1658
1638
  /**
1659
- * To disable visibility options on comments
1639
+ * To disable visibility option dropdown on comments
1660
1640
  */
1661
- private _disableVisibilityOptions;
1641
+ private _disableVisibilityOptionDropdown;
1662
1642
 
1663
1643
  /**
1664
1644
  * To enable feature to show resolve button
@@ -1859,16 +1839,6 @@ export declare class CommentElement {
1859
1839
  */
1860
1840
  private _disableReactions;
1861
1841
 
1862
- /**
1863
- * To enable anonymous email mentions in comments
1864
- */
1865
- private _enableAnonymousEmail;
1866
-
1867
- /**
1868
- * To disable anonymous email mentions in comments
1869
- */
1870
- private _disableAnonymousEmail;
1871
-
1872
1842
  /**
1873
1843
  * To set allowed recordings in comments
1874
1844
  * @param allowedRecordings "all", "none" or "audio", "video", "screen"
@@ -2781,14 +2751,4 @@ export declare class CommentElement {
2781
2751
  * @param type 'dropdown' | 'checkbox'
2782
2752
  */
2783
2753
  private _setAssignToType;
2784
-
2785
- /**
2786
- * To enable pin drag
2787
- */
2788
- private _enablePinDrag;
2789
-
2790
- /**
2791
- * To disable pin drag
2792
- */
2793
- private _disablePinDrag;
2794
2754
  }
@@ -1,5 +1,5 @@
1
1
  // @ts-nocheck
2
- import { CrdtGetDataQuery, CrdtGetMessagesQuery, CrdtGetSnapshotQuery, CrdtGetVersionQuery, CrdtGetVersionsQuery, CrdtMessageData, CrdtOnDataChangeQuery, CrdtOnMessageQuery, CrdtOnPresenceChangeQuery, CrdtOnRegisteredUserChangeQuery, CrdtOnStateChangeQuery, CrdtPruneMessagesQuery, CrdtPushMessageQuery, CrdtRegisterSyncUserQuery, CrdtSaveSnapshotQuery, CrdtSetPresenceQuery, CrdtSaveVersionQuery, CrdtSnapshotData, CrdtUpdateDataQuery, CrdtUpdateStateQuery } from "../data/crdt.data.model";
2
+ import { CrdtGetDataQuery, CrdtGetVersionQuery, CrdtOnDataChangeQuery, CrdtOnPresenceChangeQuery, CrdtOnRegisteredUserChangeQuery, CrdtOnStateChangeQuery, CrdtRegisterSyncUserQuery, CrdtSetPresenceQuery, CrdtSaveVersionQuery, CrdtUpdateDataQuery, CrdtUpdateStateQuery } from "../data/crdt.data.model";
3
3
  import { CrdtEventTypesMap } from "../data/crdt-events.data.model";
4
4
 
5
5
  export declare class CrdtElement {
@@ -80,12 +80,6 @@ export declare class CrdtElement {
80
80
  */
81
81
  getVersion: (getVersionQuery: CrdtGetVersionQuery) => Promise<any>;
82
82
 
83
- /**
84
- * Get all versions of a specific CRDT document
85
- * @param id Document ID
86
- */
87
- getVersions: (getVersionsQuery: CrdtGetVersionsQuery) => Promise<any>;
88
-
89
83
  /**
90
84
  * Enable webhook
91
85
  */
@@ -102,51 +96,6 @@ export declare class CrdtElement {
102
96
  */
103
97
  setWebhookDebounceTime: (time: number) => void;
104
98
 
105
- /**
106
- * Push a lib0-encoded message to the unified message stream.
107
- * Uses Firebase push() for chronologically-ordered keys.
108
- * Carries both sync (type 0) and awareness (type 1) messages.
109
- * @param pushMessageQuery - contains id, data (encoded bytes), yjsClientId (Y.Doc client ID), optional messageType and eventData
110
- */
111
- pushMessage: (pushMessageQuery: CrdtPushMessageQuery) => Promise<void>;
112
- /**
113
- * Subscribe to the unified message stream for real-time sync.
114
- * Emits each new message individually as it arrives (streaming pattern).
115
- * Returns an unsubscribe function.
116
- * @param onMessageQuery - contains id, callback, and optional afterTs for filtering
117
- */
118
- onMessage: (onMessageQuery: CrdtOnMessageQuery) => () => void;
119
- /**
120
- * Fetch all messages after a given timestamp (one-time read).
121
- * Used for message replay during initial load (y-redis pattern).
122
- * @param getMessagesQuery - contains id and optional afterTs
123
- */
124
- getMessages: (getMessagesQuery: CrdtGetMessagesQuery) => Promise<CrdtMessageData[]>;
125
- /**
126
- * Get the latest full-state snapshot for a document.
127
- * Used as the baseline for message replay during initial load.
128
- * @param getSnapshotQuery - contains id
129
- */
130
- getSnapshot: (getSnapshotQuery: CrdtGetSnapshotQuery) => Promise<CrdtSnapshotData | null>;
131
- /**
132
- * Save a full-state snapshot (state + vector) for fast initial load.
133
- * Called periodically to create checkpoints, enabling message pruning.
134
- * @param saveSnapshotQuery - contains id, state (Y.Doc update), and vector (state vector)
135
- */
136
- saveSnapshot: (saveSnapshotQuery: CrdtSaveSnapshotQuery) => Promise<void>;
137
- /**
138
- * Remove messages older than the given timestamp from the message stream.
139
- * Called after saving a snapshot to keep the message stream bounded.
140
- * @param pruneMessagesQuery - contains id and beforeTs
141
- */
142
- pruneMessages: (pruneMessagesQuery: CrdtPruneMessagesQuery) => Promise<void>;
143
-
144
- /**
145
- * To set activity debounce time for batching CRDT edits (Default value is 10 minutes)
146
- * @param time debounce time in milliseconds (minimum: 10 seconds)
147
- */
148
- setActivityDebounceTime: (time: number) => void;
149
-
150
99
  /**
151
100
  * Subscribe to crdt actions
152
101
  * @param action Action to subscribe to
@@ -239,36 +188,6 @@ export declare class CrdtElement {
239
188
  */
240
189
  private _getVersions;
241
190
 
242
- /**
243
- * Push a message to the unified message stream
244
- */
245
- private _pushMessage;
246
-
247
- /**
248
- * Subscribe to the unified message stream
249
- */
250
- private _onMessage;
251
-
252
- /**
253
- * Fetch all messages after a given timestamp
254
- */
255
- private _getMessages;
256
-
257
- /**
258
- * Get the latest snapshot for a document
259
- */
260
- private _getSnapshot;
261
-
262
- /**
263
- * Save a full-state snapshot
264
- */
265
- private _saveSnapshot;
266
-
267
- /**
268
- * Remove messages older than a given timestamp
269
- */
270
- private _pruneMessages;
271
-
272
191
  /**
273
192
  * Enable webhook
274
193
  */
@@ -285,12 +204,6 @@ export declare class CrdtElement {
285
204
  */
286
205
  private _setWebhookDebounceTime;
287
206
 
288
- /**
289
- * Set activity debounce time for batching CRDT edits
290
- * @param time debounce time in milliseconds (minimum: 10 seconds)
291
- */
292
- private _setActivityDebounceTime;
293
-
294
207
  /**
295
208
  * Subscribe to crdt actions
296
209
  * @param action Action to subscribe to
@@ -50,21 +50,6 @@ export declare class PresenceElement {
50
50
  * Subscribe to presence events
51
51
  */
52
52
  on: <T extends keyof PresenceEventTypesMap>(action: T) => Observable<PresenceEventTypesMap[T]>;
53
-
54
- /**
55
- * Add a custom user to the presence list (e.g., an AI agent).
56
- * The user will appear in presence alongside real users.
57
- * @param request Object containing user data with at least userId required.
58
- */
59
- addUser: (request: { user: Partial<PresenceUser>, localOnly?: boolean }) => void;
60
-
61
- /**
62
- * Remove a previously added custom user from the presence list.
63
- * @param request Object containing user data with at least userId required, and optional localOnly flag.
64
- * @param request.localOnly If true, user is only removed locally (not removed from DB). Default: false.
65
- */
66
- removeUser: (request: { user: Partial<PresenceUser>, localOnly?: boolean }) => void;
67
-
68
53
  constructor();
69
54
  /**
70
55
  * Subscribe to a list of all online users who are either active or inactive on the current document.
@@ -110,14 +95,4 @@ export declare class PresenceElement {
110
95
  * Subscribe to presence events
111
96
  */
112
97
  private _on;
113
-
114
- /**
115
- * Add a custom user to the presence list
116
- */
117
- private _addUser;
118
-
119
- /**
120
- * Remove a custom user from the presence list
121
- */
122
- private _removeUser;
123
98
  }
@@ -9,16 +9,6 @@ export declare class RewriterElement {
9
9
  * To disable rewriter feature
10
10
  */
11
11
  disableRewriter: () => void;
12
-
13
- /**
14
- * To enable the default rewriter UI on text selection
15
- */
16
- enableDefaultUI: () => void;
17
-
18
- /**
19
- * To disable the default rewriter UI on text selection
20
- */
21
- disableDefaultUI: () => void;
22
12
  constructor();
23
13
 
24
14
  /**
@@ -30,14 +20,4 @@ export declare class RewriterElement {
30
20
  * To disable rewriter feature
31
21
  */
32
22
  private _disableRewriter;
33
-
34
- /**
35
- * To enable the default rewriter UI on text selection
36
- */
37
- private _enableDefaultUI;
38
-
39
- /**
40
- * To disable the default rewriter UI on text selection
41
- */
42
- private _disableDefaultUI;
43
23
  }
@@ -57,8 +57,6 @@ export declare class Constants {
57
57
  static FIREBASE_PARTIAL_PATH_NOTIFICATIONS: string;
58
58
  static FIREBASE_PARTIAL_PATH_ORGANIZATION_NOTIFICATIONS: string;
59
59
  static FIREBASE_PARTIAL_PATH_LAST_NOTIFICATION_TIMESTAMP: string;
60
- static FIREBASE_PARTIAL_PATH_ACTIVITIES: string;
61
- static FIREBASE_PARTIAL_PATH_LAST_ACTIVITY_TIMESTAMP: string;
62
60
  static FIREBASE_PARTIAL_PATH_HEARTBEAT: string;
63
61
  static FIREBASE_PARTIAL_PATH_HEARTBEAT_BY_DOCUMENT: string;
64
62
  static FIREBASE_PARTIAL_PATH_USERS: string;
@@ -208,76 +206,13 @@ export declare class Constants {
208
206
  VELT_TEXT_HIGHLIGHT: string;
209
207
  VELT_COMMENT_TEXT_PORTAL: string;
210
208
  VELT_COMMENTS_SIDEBAR: string;
211
- VELT_COMMENTS_SIDEBAR_V2: string;
212
- VELT_COMMENT_SIDEBAR_SKELETON_V2: string;
213
- VELT_COMMENT_SIDEBAR_PANEL_V2: string;
214
- VELT_COMMENT_SIDEBAR_LIST_V2: string;
215
- VELT_COMMENT_SIDEBAR_LIST_ITEM_V2: string;
216
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_V2: string;
217
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_V2: string;
218
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_CONTENT_V2: string;
219
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_V2: string;
220
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_INDICATOR_V2: string;
221
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL_V2: string;
222
- VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_V2: string;
223
- VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_TRIGGER_V2: string;
224
- VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_V2: string;
225
- VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_READ_V2: string;
226
- VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_RESOLVED_V2: string;
227
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_V2: string;
228
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_TRIGGER_V2: string;
229
- VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_V2: string;
230
- VELT_COMMENT_SIDEBAR_HEADER_V2: string;
231
- VELT_COMMENT_SIDEBAR_CLOSE_BUTTON_V2: string;
232
- VELT_COMMENT_SIDEBAR_EMPTY_PLACEHOLDER_V2: string;
233
- VELT_COMMENT_SIDEBAR_RESET_FILTER_BUTTON_V2: string;
234
- VELT_COMMENT_SIDEBAR_PAGE_MODE_COMPOSER_V2: string;
235
- VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_V2: string;
236
- VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_BACK_BUTTON_V2: string;
237
- VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_DIALOG_CONTAINER_V2: string;
238
209
  VELT_COMMENT_BUBBLE: string;
239
- VELT_COMMENT_BUBBLE_AVATAR: string;
240
- VELT_COMMENT_BUBBLE_COMMENTS_COUNT: string;
241
- VELT_COMMENT_BUBBLE_UNREAD_ICON: string;
242
210
  VELT_COMMENT_THREAD: string;
243
211
  VELT_COMMENT_PIN: string;
244
- VELT_COMMENT_PIN_NUMBER: string;
245
- VELT_COMMENT_PIN_INDEX: string;
246
- VELT_COMMENT_PIN_TRIANGLE: string;
247
- VELT_COMMENT_PIN_PRIVATE_COMMENT_INDICATOR: string;
248
- VELT_COMMENT_PIN_GHOST_COMMENT_INDICATOR: string;
249
- VELT_COMMENT_PIN_UNREAD_COMMENT_INDICATOR: string;
250
- VELT_SIDEBAR_BUTTON_ICON: string;
251
- VELT_SIDEBAR_BUTTON_COMMENTS_COUNT: string;
252
- VELT_SIDEBAR_BUTTON_UNREAD_ICON: string;
253
212
  VELT_COMMENT_TEXT: string;
254
213
  VELT_CHART_COMMENT: string;
255
214
  VELT_CANVAS_COMMENT: string;
256
215
  VELT_INLINE_COMMENTS_SECTION: string;
257
- VELT_INLINE_COMMENTS_SECTION_SKELETON: string;
258
- VELT_INLINE_COMMENTS_SECTION_PANEL: string;
259
- VELT_INLINE_COMMENTS_SECTION_LIST: string;
260
- VELT_INLINE_COMMENTS_SECTION_COMPOSER_CONTAINER: string;
261
- VELT_INLINE_COMMENTS_SECTION_COMMENT_COUNT: string;
262
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN: string;
263
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER: string;
264
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_NAME: string;
265
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_ICON: string;
266
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT: string;
267
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM: string;
268
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_ICON: string;
269
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_TICK: string;
270
- VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_NAME: string;
271
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN: string;
272
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER: string;
273
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_NAME: string;
274
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_ARROW: string;
275
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT: string;
276
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST: string;
277
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM: string;
278
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_CHECKBOX: string;
279
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL: string;
280
- VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_APPLY_BUTTON: string;
281
216
  VELT_COMMENTS_MINIMAP: string;
282
217
  VELT_HIGHLIGHT_USER_TEXT: string;
283
218
  VELT_AUDIO_HUDDLE: string;
@@ -305,169 +240,15 @@ export declare class Constants {
305
240
  VELT_INLINE_REACTIONS_SECTION: string;
306
241
  VELT_VIEW_ANALYTICS: string;
307
242
  VELT_NOTIFICATIONS_TOOL: string;
308
- VELT_NOTIFICATIONS_TOOL_ICON: string;
309
- VELT_NOTIFICATIONS_TOOL_UNREAD_ICON: string;
310
- VELT_NOTIFICATIONS_TOOL_LABEL: string;
311
- VELT_NOTIFICATIONS_TOOL_UNREAD_COUNT: string;
312
243
  VELT_NOTIFICATIONS_PANEL: string;
313
- VELT_NOTIFICATIONS_PANEL_TITLE: string;
314
- VELT_NOTIFICATIONS_PANEL_TITLE_TEXT: string;
315
- VELT_NOTIFICATIONS_PANEL_HEADER: string;
316
- VELT_NOTIFICATIONS_PANEL_HEADER_TAB_FOR_YOU: string;
317
- VELT_NOTIFICATIONS_PANEL_HEADER_TAB_PEOPLE: string;
318
- VELT_NOTIFICATIONS_PANEL_HEADER_TAB_DOCUMENTS: string;
319
- VELT_NOTIFICATIONS_PANEL_HEADER_TAB_ALL: string;
320
- VELT_NOTIFICATIONS_PANEL_CONTENT: string;
321
- VELT_NOTIFICATIONS_PANEL_CONTENT_FOR_YOU: string;
322
- VELT_NOTIFICATIONS_PANEL_CONTENT_ALL: string;
323
- VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE: string;
324
- VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS: string;
325
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST: string;
326
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM: string;
327
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_AVATAR: string;
328
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_UNREAD: string;
329
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_HEADLINE: string;
330
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_BODY: string;
331
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_FILE_NAME: string;
332
- VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_TIME: string;
333
- VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST: string;
334
- VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM: string;
335
- VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM_LABEL: string;
336
- VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM_CONTENT: string;
337
- VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST: string;
338
- VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM: string;
339
- VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_AVATAR: string;
340
- VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_NAME: string;
341
- VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_COUNT: string;
342
- VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_CONTENT: string;
343
- VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST: string;
344
- VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM: string;
345
- VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_NAME: string;
346
- VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_COUNT: string;
347
- VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_CONTENT: string;
348
- VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_UNREAD: string;
349
- VELT_NOTIFICATIONS_PANEL_CONTENT_LOAD_MORE: string;
350
- VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_READ_CONTAINER: string;
351
- VELT_NOTIFICATIONS_PANEL_CLOSE_BUTTON: string;
352
- VELT_NOTIFICATIONS_PANEL_READ_ALL_BUTTON: string;
353
- VELT_NOTIFICATIONS_PANEL_VIEW_ALL_BUTTON: string;
354
- VELT_NOTIFICATIONS_PANEL_SKELETON: string;
355
- VELT_NOTIFICATIONS_PANEL_SETTINGS_BUTTON: string;
356
- VELT_NOTIFICATIONS_PANEL_SETTINGS: string;
357
- VELT_NOTIFICATIONS_PANEL_SETTINGS_HEADER: string;
358
- VELT_NOTIFICATIONS_PANEL_SETTINGS_HEADER_TITLE: string;
359
- VELT_NOTIFICATIONS_PANEL_SETTINGS_TITLE: string;
360
- VELT_NOTIFICATIONS_PANEL_SETTINGS_DESCRIPTION: string;
361
- VELT_NOTIFICATIONS_PANEL_SETTINGS_LIST: string;
362
- VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_TITLE: string;
363
- VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_DESCRIPTION: string;
364
- VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_TOGGLE: string;
365
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION: string;
366
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER: string;
367
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_LABEL: string;
368
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_ICON: string;
369
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_SELECTED_VALUE: string;
370
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT: string;
371
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM: string;
372
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM_LABEL: string;
373
- VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM_ICON: string;
374
- VELT_NOTIFICATIONS_PANEL_SETTINGS_BACK_BUTTON: string;
375
- VELT_NOTIFICATIONS_PANEL_SETTINGS_FOOTER: string;
376
244
  VELT_NOTIFICATIONS_HISTORY_PANEL: string;
377
245
  VELT_WIREFRAME: string;
378
246
  VELT_AUTOCOMPLETE: string;
379
- VELT_AUTOCOMPLETE_PANEL: string;
380
- VELT_AUTOCOMPLETE_OPTION: string;
381
- VELT_AUTOCOMPLETE_OPTION_ICON: string;
382
- VELT_AUTOCOMPLETE_OPTION_NAME: string;
383
- VELT_AUTOCOMPLETE_OPTION_DESCRIPTION: string;
384
- VELT_AUTOCOMPLETE_OPTION_ERROR_ICON: string;
385
- VELT_AUTOCOMPLETE_GROUP_OPTION: string;
386
- VELT_AUTOCOMPLETE_TOOL: string;
387
- VELT_AUTOCOMPLETE_EMPTY: string;
388
247
  VELT_AUTOCOMPLETE_CHIP: string;
389
- VELT_AUTOCOMPLETE_CHIP_TOOLTIP: string;
390
- VELT_AUTOCOMPLETE_CHIP_TOOLTIP_ICON: string;
391
- VELT_AUTOCOMPLETE_CHIP_TOOLTIP_NAME: string;
392
- VELT_AUTOCOMPLETE_CHIP_TOOLTIP_DESCRIPTION: string;
393
- VELT_AUTOCOMPLETE_CONTEXT_WRAPPER: string;
394
- VELT_ACTIVITY_LOG: string;
395
- VELT_ACTIVITY_LOG_HEADER: string;
396
- VELT_ACTIVITY_LOG_HEADER_TITLE: string;
397
- VELT_ACTIVITY_LOG_HEADER_CLOSE_BUTTON: string;
398
- VELT_ACTIVITY_LOG_HEADER_FILTER: string;
399
- VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER: string;
400
- VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER_LABEL: string;
401
- VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER_ICON: string;
402
- VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT: string;
403
- VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM: string;
404
- VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM_LABEL: string;
405
- VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM_ICON: string;
406
- VELT_ACTIVITY_LOG_LOADING: string;
407
- VELT_ACTIVITY_LOG_LIST: string;
408
- VELT_ACTIVITY_LOG_LIST_DATE_GROUP: string;
409
- VELT_ACTIVITY_LOG_LIST_DATE_GROUP_LABEL: string;
410
- VELT_ACTIVITY_LOG_LIST_ITEM: string;
411
- VELT_ACTIVITY_LOG_LIST_ITEM_ICON: string;
412
- VELT_ACTIVITY_LOG_LIST_ITEM_AVATAR: string;
413
- VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT: string;
414
- VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_USER: string;
415
- VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_ACTION: string;
416
- VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_TARGET: string;
417
- VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_DETAIL: string;
418
- VELT_ACTIVITY_LOG_LIST_ITEM_TIME: string;
419
- VELT_ACTIVITY_LOG_LIST_SHOW_MORE: string;
420
- VELT_ACTIVITY_LOG_EMPTY: string;
421
- VELT_ACTIVITY_LOG_CONTEXT_WRAPPER: string;
422
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER: string;
423
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_ICON: string;
424
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_TEXT: string;
425
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN: string;
426
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER: string;
427
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_LABEL: string;
428
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST: string;
429
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_ITEM: string;
430
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_REMAINING_COUNT: string;
431
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_ICON: string;
432
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT: string;
433
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM: string;
434
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_ICON: string;
435
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_LABEL: string;
436
- VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_USER_PICKER: string;
437
248
  VELT_COMMENT_COMPOSER: string;
438
249
  VELT_SKELETON_LOADER: string;
439
250
  VELT_SHADOW_DOM_INTERNAL: string;
440
251
  VELT_SINGLE_EDITOR_MODE_PANEL: string;
441
- VELT_MULTI_THREAD_COMMENT_DIALOG_LIST: string;
442
- VELT_MULTI_THREAD_COMMENT_DIALOG_PANEL: string;
443
- VELT_MULTI_THREAD_COMMENT_DIALOG_COMPOSER_CONTAINER: string;
444
- VELT_MULTI_THREAD_COMMENT_DIALOG_COMMENT_COUNT: string;
445
- VELT_MULTI_THREAD_COMMENT_DIALOG_EMPTY_PLACEHOLDER: string;
446
- VELT_MULTI_THREAD_COMMENT_DIALOG_CLOSE_BUTTON: string;
447
- VELT_MULTI_THREAD_COMMENT_DIALOG_NEW_THREAD_BUTTON: string;
448
- VELT_MULTI_THREAD_COMMENT_DIALOG_RESET_FILTER_BUTTON: string;
449
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN: string;
450
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_TRIGGER: string;
451
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT: string;
452
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_ALL: string;
453
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_READ: string;
454
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_RESOLVED: string;
455
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_UNREAD: string;
456
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SELECTED_ICON: string;
457
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_DATE: string;
458
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_UNREAD: string;
459
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN: string;
460
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_TRIGGER: string;
461
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT: string;
462
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_READ: string;
463
- VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_RESOLVED: string;
464
- VELT_TEXT_COMMENT: string;
465
- VELT_TEXT_COMMENT_TOOL: string;
466
- VELT_TEXT_COMMENT_TOOLBAR: string;
467
- VELT_TEXT_COMMENT_TOOLBAR_COMMENT_ANNOTATION: string;
468
- VELT_TEXT_COMMENT_TOOLBAR_DIVIDER: string;
469
- VELT_TEXT_COMMENT_TOOLBAR_COPYWRITER: string;
470
- VELT_TEXT_COMMENT_TOOLBAR_GENERIC: string;
471
252
  };
472
253
  static ATTRIBUTES: {
473
254
  VELT_COMMENT_CONTAINER: string;
@@ -519,7 +300,6 @@ export declare class Constants {
519
300
  VELT_AREA_PIN_HOST_STATIC: string;
520
301
  VELT_AREA_DISABLED: string;
521
302
  VELT_AREA_PIN_ACTIVE: string;
522
- VELT_SUGGESTION_TARGET: string;
523
303
  VELT_ONGOING_RECORDING: string;
524
304
  VELT_COMMENT_RECORDING: string;
525
305
  SYNC_VIDEO_PLAYER_ID: string;
@@ -550,9 +330,6 @@ export declare class Constants {
550
330
  VELT_AVATAR_COLOR: string;
551
331
  VELT_COMMENT_PRIORITY_COLOR: string;
552
332
  };
553
- static BODY_CLASSES: {
554
- VELT_PIN_DRAGGING: string;
555
- };
556
333
  static INJECTION_ATTRIBUTES: {
557
334
  /**
558
335
  * @deprecated Use VELT_AVATAR_IMG instead
@@ -589,7 +366,6 @@ export declare class Constants {
589
366
  VELT_VERSION: string;
590
367
  VELT_ADVANCED_QUERIES: string;
591
368
  VELT_COMMENT_VIEWS_MIGRATED: string;
592
- VELT_AUTH_PROXY_HOST: string;
593
369
  };
594
370
  static NON_NESTABLE_ELEMENTS: {
595
371
  [tag: string]: boolean;
@@ -26,11 +26,7 @@ export declare enum ResolverActions {
26
26
  REACTION_ADD = "reaction.add",
27
27
  REACTION_DELETE = "reaction.delete",
28
28
  ATTACHMENT_ADD = "attachment.add",
29
- ATTACHMENT_DELETE = "attachment.delete",
30
- RECORDER_ANNOTATION_ADD = "recorder_annotation.add",
31
- RECORDER_ANNOTATION_UPDATE = "recorder_annotation.update",
32
- RECORDER_ANNOTATION_DELETE = "recorder_annotation.delete",
33
- ACTIVITY_SAVE = "activity.save"
29
+ ATTACHMENT_DELETE = "attachment.delete"
34
30
  }
35
31
  export declare const CommentEventTypes: {
36
32
  readonly ADD_COMMENT_ANNOTATION: "addCommentAnnotation";
@@ -48,7 +44,6 @@ export declare const CommentEventTypes: {
48
44
  readonly UPDATE_ACCESS: "updateAccess";
49
45
  readonly RESOLVE_COMMENT: "resolveComment";
50
46
  readonly ADD_COMMENT: "addComment";
51
- readonly ADD_COMMENT_DRAFT: "addCommentDraft";
52
47
  readonly UPDATE_COMMENT: "updateComment";
53
48
  readonly DELETE_COMMENT: "deleteComment";
54
49
  readonly ADD_ATTACHMENT: "addAttachment";
@@ -87,18 +82,6 @@ export declare const RecorderEventTypes: {
87
82
  readonly RECORDING_RESUMED: "recordingResumed";
88
83
  readonly RECORDING_CANCELLED: "recordingCancelled";
89
84
  readonly RECORDING_STOPPED: "recordingStopped";
90
- readonly RECORDING_DONE_LOCAL: "recordingDoneLocal";
91
- };
92
- export declare const RewriterEventTypes: {
93
- readonly TEXT_SELECTED: "textSelected";
94
- };
95
- export declare const SuggestionEventTypes: {
96
- readonly SUGGESTION_CREATED: "suggestionCreated";
97
- readonly SUGGESTION_APPROVED: "suggestionApproved";
98
- readonly SUGGESTION_REJECTED: "suggestionRejected";
99
- readonly SUGGESTION_STALE: "suggestionStale";
100
- readonly TARGET_EDIT_START: "targetEditStart";
101
- readonly TARGET_EDIT_COMMIT: "targetEditCommit";
102
85
  };
103
86
  export declare const CoreEventTypes: {
104
87
  readonly PERMISSION_PROVIDER: "permissionProvider";
@@ -106,9 +89,6 @@ export declare const CoreEventTypes: {
106
89
  readonly COMMENT_RESOLVER: "commentResolver";
107
90
  readonly ATTACHMENT_RESOLVER: "attachmentResolver";
108
91
  readonly REACTION_RESOLVER: "reactionResolver";
109
- readonly RECORDER_RESOLVER: "recorderResolver";
110
- readonly NOTIFICATION_RESOLVER: "notificationResolver";
111
- readonly ACTIVITY_RESOLVER: "activityResolver";
112
92
  readonly VELT_BUTTON_CLICK: "veltButtonClick";
113
93
  readonly USER_UPDATE: "userUpdate";
114
94
  readonly INIT_UPDATE: "initUpdate";
@@ -140,8 +120,6 @@ export type CoreEventType = typeof CoreEventTypes[keyof typeof CoreEventTypes];
140
120
  export type LiveStateSyncEventType = typeof LiveStateSyncEventTypes[keyof typeof LiveStateSyncEventTypes];
141
121
  export type PresenceEventType = typeof PresenceEventTypes[keyof typeof PresenceEventTypes];
142
122
  export type NotificationEventType = typeof NotificationEventTypes[keyof typeof NotificationEventTypes];
143
- export type RewriterEventType = typeof RewriterEventTypes[keyof typeof RewriterEventTypes];
144
- export type SuggestionEventType = typeof SuggestionEventTypes[keyof typeof SuggestionEventTypes];
145
123
  export type CrdtEventType = typeof CrdtEventTypes[keyof typeof CrdtEventTypes];
146
124
  export declare enum TagStatus {
147
125
  ADDED = "added",
@@ -196,8 +174,7 @@ export declare enum Features {
196
174
  REWRITER = "rewriter",
197
175
  LIVE_SELECTION = "liveSelection",
198
176
  NOTIFICATION = "notification",
199
- REACTION = "reaction",
200
- ACTIVITY = "activity"
177
+ REACTION = "reaction"
201
178
  }
202
179
  export declare enum AnalyticsFeatures {
203
180
  AREA = "area",
@@ -219,7 +196,7 @@ export declare enum AnalyticsFeatures {
219
196
  INLINE_COMMENT = "inlineComment",
220
197
  COMMENT_SIDEBAR = "commentSidebar"
221
198
  }
222
- export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread' | 'activity';
199
+ export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread';
223
200
  export type AssignToType = 'dropdown' | 'checkbox';
224
201
  export declare enum DeviceType {
225
202
  DESKTOP = "Desktop",
@@ -338,13 +315,3 @@ export type NotificationSettingsItemType = 'ALL' | 'MINE' | 'NONE' | string;
338
315
  * Type for notification settings layout
339
316
  */
340
317
  export type NotificationSettingsLayout = 'accordion' | 'dropdown';
341
- /**
342
- * Enum for comment visibility options in the visibility banner dropdown
343
- */
344
- export declare enum CommentVisibilityOption {
345
- RESTRICTED_SELF = "restrictedSelf",
346
- RESTRICTED_SELECTED_PEOPLE = "restrictedSelectedPeople",
347
- ORGANIZATION_PRIVATE = "organizationPrivate",
348
- PUBLIC = "public"
349
- }
350
- export type CommentVisibilityOptionType = `${CommentVisibilityOption}`;