@veltdev/sdk-staging 4.5.0-beta.79 → 4.5.0-beta.8

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 (37) hide show
  1. package/app/client/snippyly.model.d.ts +7 -46
  2. package/app/models/data/button.data.model.d.ts +0 -2
  3. package/app/models/data/comment-annotation.data.model.d.ts +0 -7
  4. package/app/models/data/comment-resolver.data.model.d.ts +0 -14
  5. package/app/models/data/comment-sidebar-config.model.d.ts +0 -26
  6. package/app/models/data/comment.data.model.d.ts +0 -1
  7. package/app/models/data/core-events.data.model.d.ts +0 -9
  8. package/app/models/data/custom-filter.data.model.d.ts +0 -8
  9. package/app/models/data/document-paths.data.model.d.ts +0 -12
  10. package/app/models/data/document.data.model.d.ts +0 -2
  11. package/app/models/data/location.model.d.ts +0 -10
  12. package/app/models/data/media-preview-config.data.model.d.ts +0 -2
  13. package/app/models/data/multi-thread.data.model.d.ts +0 -2
  14. package/app/models/data/notification.model.d.ts +1 -23
  15. package/app/models/data/presence-events.data.model.d.ts +0 -8
  16. package/app/models/data/reaction-resolver.data.model.d.ts +2 -4
  17. package/app/models/data/recorder-annotation.data.model.d.ts +0 -3
  18. package/app/models/data/recorder-events.data.model.d.ts +0 -28
  19. package/app/models/data/recorder.model.d.ts +8 -6
  20. package/app/models/data/resolver.data.model.d.ts +0 -6
  21. package/app/models/data/user-iam.data.model.d.ts +0 -6
  22. package/app/models/data/user-resolver.data.model.d.ts +0 -2
  23. package/app/models/data/user.data.model.d.ts +0 -9
  24. package/app/models/element/comment-element.model.d.ts +11 -116
  25. package/app/models/element/notification-element.model.d.ts +3 -103
  26. package/app/models/element/presence-element.model.d.ts +1 -15
  27. package/app/models/element/recorder-element.model.d.ts +157 -228
  28. package/app/utils/constants.d.ts +0 -44
  29. package/app/utils/enums.d.ts +1 -23
  30. package/models.d.ts +0 -3
  31. package/package.json +1 -1
  32. package/types.d.ts +0 -1
  33. package/velt.js +106 -117
  34. package/app/models/data/crdt.data.model.d.ts +0 -56
  35. package/app/models/data/notifications-events.data.model.d.ts +0 -9
  36. package/app/models/data/presence-actions.data.model.d.ts +0 -5
  37. package/app/models/element/crdt-element.model.d.ts +0 -166
@@ -9,7 +9,7 @@ import { CommentSidebarCustomActionEventData, CommentSidebarData, CommentSidebar
9
9
  export { ReactionMap } from '../data/reaction-annotation.data.model';
10
10
  import { AcceptCommentAnnotationRequest, AddAttachmentRequest, AddAttachmentResponse, AddCommentAnnotationRequest, AddCommentRequest, AddReactionRequest, ApproveCommentAnnotationRequest, AssignUserRequest, AssignUserEvent, CopyLinkRequest, DeleteAttachmentRequest, DeleteCommentAnnotationRequest, CommentRequestQuery, CommentRequestQuery, DeleteCommentRequest, DeleteReactionRequest, DeleteRecordingRequest, GetAttachmentRequest, GetCommentRequest, GetLinkRequest, GetRecordingRequest, RejectCommentAnnotationRequest, ResolveCommentAnnotationRequest, SubscribeCommentAnnotationRequest, UnsubscribeCommentAnnotationRequest, ToggleReactionRequest, UpdateAccessRequest, UpdateCommentRequest, UpdatePriorityRequest, UpdateStatusRequest, FetchCommentAnnotationsRequest } from "../data/comment-actions.data.model";
11
11
  import { UnreadCommentsCount, TransformContext } from "../data/comment-utils.data.model";
12
- import { CommentSidebarSystemFiltersOperator, SidebarButtonCountType } from "../../utils/enums";
12
+ import { CommentSidebarSystemFiltersOperator } from "../../utils/enums";
13
13
 
14
14
  export declare class CommentElement {
15
15
  /**
@@ -126,7 +126,7 @@ export declare class CommentElement {
126
126
 
127
127
  /**
128
128
  * Subscribe to comment mode change.
129
- *
129
+ *
130
130
  * Returns Observable<boolean>.
131
131
  */
132
132
  onCommentModeChange: () => Observable<boolean>;
@@ -278,7 +278,7 @@ export declare class CommentElement {
278
278
 
279
279
  /**
280
280
  * @description Sets custom status filters
281
- * @param statuses
281
+ * @param statuses
282
282
  */
283
283
  setCustomStatus: (statuses: CustomStatus[]) => void;
284
284
 
@@ -326,7 +326,7 @@ export declare class CommentElement {
326
326
 
327
327
  /**
328
328
  * @description Sets the comment context provider
329
- * @param provider
329
+ * @param provider
330
330
  */
331
331
  public setContextProvider: (provider: (documentId: string, location?: any) => any) => void;
332
332
 
@@ -397,14 +397,14 @@ export declare class CommentElement {
397
397
 
398
398
  /**
399
399
  * To get documentId, location and set context data when comment is added.
400
- *
400
+ *
401
401
  * @legacy Use `AddCommentAnnotationEvent` instead
402
402
  */
403
403
  public onCommentAdd: () => Observable<CommentAddEventData>;
404
404
 
405
405
  /**
406
406
  * To get data when comment is updated.
407
- *
407
+ *
408
408
  * @legacy Use action specific events instead
409
409
  */
410
410
  public onCommentUpdate: () => Observable<CommentUpdateEventData>;
@@ -791,28 +791,6 @@ export declare class CommentElement {
791
791
  */
792
792
  public disableMultiThread: () => void;
793
793
 
794
- /**
795
- * To enable group multiple match
796
- * @deprecated Use enableGroupMatchedComments instead
797
- */
798
- public enableGroupMultipleMatch: () => void;
799
-
800
- /**
801
- * To disable group multiple match
802
- * @deprecated Use disableGroupMatchedComments instead
803
- */
804
- public disableGroupMultipleMatch: () => void;
805
-
806
- /**
807
- * To enable group matched comments
808
- */
809
- public enableGroupMatchedComments: () => void;
810
-
811
- /**
812
- * To disable group matched comments
813
- */
814
- public disableGroupMatchedComments: () => void;
815
-
816
794
  /**
817
795
  * To update context of comment annotation
818
796
  * @param annotationId Comment annotation id
@@ -1162,37 +1140,6 @@ export declare class CommentElement {
1162
1140
  * To disable draft mode
1163
1141
  */
1164
1142
  public disableDraftMode: () => void;
1165
-
1166
- /**
1167
- * To enable filter comments on dom
1168
- */
1169
- public enableFilterCommentsOnDom: () => void;
1170
-
1171
- /**
1172
- * To disable filter comments on dom
1173
- */
1174
- public disableFilterCommentsOnDom: () => void;
1175
-
1176
- /**
1177
- * To enable reply avatars
1178
- */
1179
- public enableReplyAvatars: () => void;
1180
-
1181
- /**
1182
- * To disable reply avatars
1183
- */
1184
- public disableReplyAvatars: () => void;
1185
-
1186
- /**
1187
- * To set max reply avatars
1188
- */
1189
- public setMaxReplyAvatars: (maxReplyAvatars: number) => void;
1190
-
1191
- /**
1192
- * To set sidebar button count type
1193
- */
1194
- public setSidebarButtonCountType: (type: SidebarButtonCountType) => void;
1195
-
1196
1143
  constructor();
1197
1144
  /**
1198
1145
  * Subscribe to comments on the current document.
@@ -1308,7 +1255,7 @@ export declare class CommentElement {
1308
1255
 
1309
1256
  /**
1310
1257
  * Subscribe to comment mode change.
1311
- *
1258
+ *
1312
1259
  * Returns Observable<boolean>.
1313
1260
  */
1314
1261
  private _onCommentModeChange;
@@ -1455,7 +1402,7 @@ export declare class CommentElement {
1455
1402
 
1456
1403
  /**
1457
1404
  * @description Sets custom status filters
1458
- * @param statuses
1405
+ * @param statuses
1459
1406
  */
1460
1407
  private _setCustomStatus;
1461
1408
 
@@ -1503,7 +1450,7 @@ export declare class CommentElement {
1503
1450
 
1504
1451
  /**
1505
1452
  * @description Sets the comment context provider
1506
- * @param provider
1453
+ * @param provider
1507
1454
  */
1508
1455
  private _setContextProvider;
1509
1456
 
@@ -1748,7 +1695,7 @@ export declare class CommentElement {
1748
1695
  */
1749
1696
  private _disableRecordingSummary;
1750
1697
 
1751
- /**
1698
+ /**
1752
1699
  * To enable recording transcription
1753
1700
  */
1754
1701
  private _enableRecordingTranscription;
@@ -1963,28 +1910,6 @@ export declare class CommentElement {
1963
1910
  */
1964
1911
  private _disableMultiThread;
1965
1912
 
1966
- /**
1967
- * To enable group multiple match
1968
- * @deprecated Use enableGroupMatchedComments instead
1969
- */
1970
- private _enableGroupMultipleMatch;
1971
-
1972
- /**
1973
- * To disable group multiple match
1974
- * @deprecated Use disableGroupMatchedComments instead
1975
- */
1976
- private _disableGroupMultipleMatch;
1977
-
1978
- /**
1979
- * To enable group matched comments
1980
- */
1981
- private _enableGroupMatchedComments;
1982
-
1983
- /**
1984
- * To disable group matched comments
1985
- */
1986
- private _disableGroupMatchedComments;
1987
-
1988
1913
  /**
1989
1914
  * To update context of comment annotation
1990
1915
  * @param annotationId Comment annotation id
@@ -2043,7 +1968,7 @@ export declare class CommentElement {
2043
1968
  */
2044
1969
  private _disableQueryParamsComments;
2045
1970
 
2046
- /**
1971
+ /**
2047
1972
  * To enable comment sidebar action button click
2048
1973
  */
2049
1974
  private _onCommentSidebarActionButtonClick;
@@ -2335,34 +2260,4 @@ export declare class CommentElement {
2335
2260
  * To disable draft mode
2336
2261
  */
2337
2262
  private _disableDraftMode;
2338
-
2339
- /**
2340
- * To enable filter comments on dom
2341
- */
2342
- private _enableFilterCommentsOnDom;
2343
-
2344
- /**
2345
- * To disable filter comments on dom
2346
- */
2347
- private _disableFilterCommentsOnDom;
2348
-
2349
- /**
2350
- * To enable reply avatars
2351
- */
2352
- private _enableReplyAvatars;
2353
-
2354
- /**
2355
- * To disable reply avatars
2356
- */
2357
- private _disableReplyAvatars;
2358
-
2359
- /**
2360
- * To set max reply avatars
2361
- */
2362
- private _setMaxReplyAvatars;
2363
-
2364
- /**
2365
- * To set sidebar button count type
2366
- */
2367
- private _setSidebarButtonCountType;
2368
2263
  }
@@ -1,6 +1,6 @@
1
1
  // @ts-nocheck
2
2
 
3
- import { GetNotificationsDataQuery, Notification, NotificationInitialSettingsConfig, NotificationSettingsConfig, NotificationTabConfig } from "../data/notification.model";
3
+ import { Notification, NotificationTabConfig } from "../data/notification.model";
4
4
 
5
5
  export declare class NotificationElement {
6
6
  /**
@@ -21,7 +21,7 @@ export declare class NotificationElement {
21
21
  /**
22
22
  * To get notifications data
23
23
  */
24
- getNotificationsData: (query?: GetNotificationsDataQuery) => Observable<Notification[] | null>;
24
+ getNotificationsData: () => Observable<Notification[] | null>;
25
25
 
26
26
  /**
27
27
  * To set max days for notification history
@@ -58,56 +58,6 @@ export declare class NotificationElement {
58
58
  */
59
59
  markNotificationAsReadById: (notificationId: string) => void;
60
60
 
61
- /**
62
- * To set settings
63
- */
64
- setSettings: (config: NotificationSettingsConfig) => void;
65
-
66
- /**
67
- * To get settings
68
- */
69
- getSettings: () => Observable<NotificationSettingsConfig | null>;
70
-
71
- /**
72
- * To mute all notifications
73
- */
74
- muteAllNotifications: () => void;
75
-
76
- /**
77
- * To enable settings
78
- */
79
- enableSettings: () => void;
80
-
81
- /**
82
- * To disable settings
83
- */
84
- disableSettings: () => void;
85
-
86
- /**
87
- * To enable self notifications
88
- */
89
- enableSelfNotifications: () => void;
90
-
91
- /**
92
- * To disable self notifications
93
- */
94
- disableSelfNotifications: () => void;
95
-
96
- /**
97
- * To set settings initial config
98
- */
99
- setSettingsInitialConfig: (settings: NotificationInitialSettingsConfig[]) => void;
100
-
101
- /**
102
- * To open notifications panel
103
- */
104
- openNotificationsPanel: () => void;
105
-
106
- /**
107
- * To close notifications panel
108
- */
109
- closeNotificationsPanel: () => void;
110
-
111
61
  constructor();
112
62
 
113
63
  /**
@@ -164,54 +114,4 @@ export declare class NotificationElement {
164
114
  * To mark notification as read by id
165
115
  */
166
116
  private _markNotificationAsReadById;
167
-
168
- /**
169
- * To set settings
170
- */
171
- private _setSettings;
172
-
173
- /**
174
- * To get settings
175
- */
176
- private _getSettings;
177
-
178
- /**
179
- * To mute all notifications
180
- */
181
- private _muteAllNotifications;
182
-
183
- /**
184
- * To enable settings
185
- */
186
- private _enableSettings;
187
-
188
- /**
189
- * To disable settings
190
- */
191
- private _disableSettings;
192
-
193
- /**
194
- * To enable self notifications
195
- */
196
- private _enableSelfNotifications;
197
-
198
- /**
199
- * To disable self notifications
200
- */
201
- private _disableSelfNotifications;
202
-
203
- /**
204
- * To set settings initial config
205
- */
206
- private _setSettingsInitialConfig;
207
-
208
- /**
209
- * To open notifications panel
210
- */
211
- private _openNotificationsPanel;
212
-
213
- /**
214
- * To close notifications panel
215
- */
216
- private _closeNotificationsPanel;
217
- }
117
+ }
@@ -1,16 +1,13 @@
1
1
  // @ts-nocheck
2
2
  import { Observable } from "rxjs";
3
3
  import { PresenceUser } from "../data/presence-user.data.model";
4
- import { GetPresenceDataResponse, PresenceEventTypesMap } from "../data/presence-events.data.model";
5
- import { PresenceRequestQuery } from "../data/presence-actions.data.model";
6
-
4
+ import { PresenceEventTypesMap } from "../data/presence-events.data.model";
7
5
  export declare class PresenceElement {
8
6
 
9
7
  /**
10
8
  * Subscribe to a list of all online users who are either active or inactive on the current document.
11
9
  *
12
10
  * Returns Observable<PresenceUser[] | null>.
13
- * @deprecated This method is deprecated. Use `getData` method instead.
14
11
  */
15
12
  getOnlineUsersOnCurrentDocument: () => Observable<PresenceUser[] | null>;
16
13
 
@@ -41,11 +38,6 @@ export declare class PresenceElement {
41
38
  */
42
39
  disableSelf: () => void;
43
40
 
44
- /**
45
- * To get the presence data
46
- */
47
- getData: (query?: PresenceRequestQuery) => Observable<GetPresenceDataResponse>;
48
-
49
41
  /**
50
42
  * Subscribe to presence events
51
43
  */
@@ -55,7 +47,6 @@ export declare class PresenceElement {
55
47
  * Subscribe to a list of all online users who are either active or inactive on the current document.
56
48
  *
57
49
  * Returns Observable<PresenceUser[] | null>.
58
- * @deprecated This method is deprecated. Use `getData` method instead.
59
50
  */
60
51
  private _getOnlineUsersOnCurrentDocument;
61
52
 
@@ -86,11 +77,6 @@ export declare class PresenceElement {
86
77
  */
87
78
  private _disableSelf;
88
79
 
89
- /**
90
- * To get the presence data
91
- */
92
- private _getData;
93
-
94
80
  /**
95
81
  * Subscribe to presence events
96
82
  */