@veltdev/sdk 4.5.0-beta.8 → 4.5.0
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 +62 -8
- package/app/models/data/button.data.model.d.ts +2 -0
- package/app/models/data/comment-actions.data.model.d.ts +3 -0
- package/app/models/data/comment-annotation.data.model.d.ts +10 -0
- package/app/models/data/comment-resolver.data.model.d.ts +19 -0
- package/app/models/data/comment-sidebar-config.model.d.ts +21 -0
- package/app/models/data/comment.data.model.d.ts +1 -0
- package/app/models/data/core-events.data.model.d.ts +9 -0
- package/app/models/data/crdt.data.model.d.ts +59 -0
- package/app/models/data/custom-filter.data.model.d.ts +8 -0
- package/app/models/data/document-paths.data.model.d.ts +13 -0
- package/app/models/data/document.data.model.d.ts +2 -0
- package/app/models/data/encryption-provider.data.model.d.ts +12 -0
- package/app/models/data/location.model.d.ts +10 -0
- package/app/models/data/media-preview-config.data.model.d.ts +2 -0
- package/app/models/data/multi-thread.data.model.d.ts +2 -0
- package/app/models/data/notification.model.d.ts +23 -1
- package/app/models/data/notifications-events.data.model.d.ts +9 -0
- package/app/models/data/presence-actions.data.model.d.ts +5 -0
- package/app/models/data/presence-events.data.model.d.ts +6 -10
- package/app/models/data/reaction-resolver.data.model.d.ts +4 -2
- package/app/models/data/recorder-annotation.data.model.d.ts +3 -0
- package/app/models/data/recorder-events.data.model.d.ts +19 -0
- package/app/models/data/recorder.model.d.ts +4 -0
- package/app/models/data/resolver.data.model.d.ts +7 -0
- package/app/models/data/user-iam.data.model.d.ts +6 -0
- package/app/models/data/user-resolver.data.model.d.ts +2 -0
- package/app/models/data/user.data.model.d.ts +10 -0
- package/app/models/element/comment-element.model.d.ts +136 -11
- package/app/models/element/crdt-element.model.d.ts +166 -0
- package/app/models/element/notification-element.model.d.ts +103 -3
- package/app/models/element/presence-element.model.d.ts +15 -1
- package/app/models/element/recorder-element.model.d.ts +82 -2
- package/app/utils/constants.d.ts +45 -1
- package/app/utils/enums.d.ts +21 -4
- package/models.d.ts +4 -0
- package/package.json +1 -1
- package/types.d.ts +1 -0
- package/velt.js +116 -105
|
@@ -3,6 +3,13 @@ export interface ResolverConfig {
|
|
|
3
3
|
saveRetryConfig?: RetryConfig;
|
|
4
4
|
deleteRetryConfig?: RetryConfig;
|
|
5
5
|
getRetryConfig?: RetryConfig;
|
|
6
|
+
resolveUsersConfig?: ResolveUsersConfig;
|
|
7
|
+
fieldsToRemove?: string[];
|
|
8
|
+
}
|
|
9
|
+
export interface ResolveUsersConfig {
|
|
10
|
+
organization?: boolean;
|
|
11
|
+
folder?: boolean;
|
|
12
|
+
document?: boolean;
|
|
6
13
|
}
|
|
7
14
|
export interface ResolverResponse<T> {
|
|
8
15
|
data?: T;
|
|
@@ -11,6 +11,12 @@ export declare class UserIAM {
|
|
|
11
11
|
* The user's contact details
|
|
12
12
|
*/
|
|
13
13
|
user: UserContact;
|
|
14
|
+
documentIds?: string[];
|
|
15
|
+
folderIds?: string[];
|
|
16
|
+
organizationIds?: string[];
|
|
17
|
+
documentIdsCount?: number;
|
|
18
|
+
folderIdsCount?: number;
|
|
19
|
+
organizationIdsCount?: number;
|
|
14
20
|
/**
|
|
15
21
|
* The user's role in the document
|
|
16
22
|
*/
|
|
@@ -99,3 +99,13 @@ export declare class Options {
|
|
|
99
99
|
*/
|
|
100
100
|
forceReset?: boolean;
|
|
101
101
|
}
|
|
102
|
+
export interface AuthRetryConfig {
|
|
103
|
+
retryCount?: number;
|
|
104
|
+
retryDelay?: number;
|
|
105
|
+
}
|
|
106
|
+
export interface VeltAuthProvider {
|
|
107
|
+
user: User;
|
|
108
|
+
options?: Options;
|
|
109
|
+
retryConfig?: AuthRetryConfig;
|
|
110
|
+
generateToken?: () => Promise<string>;
|
|
111
|
+
}
|
|
@@ -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 } from "../../utils/enums";
|
|
12
|
+
import { CommentSidebarSystemFiltersOperator, SidebarButtonCountType } 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,6 +791,28 @@ 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
|
+
|
|
794
816
|
/**
|
|
795
817
|
* To update context of comment annotation
|
|
796
818
|
* @param annotationId Comment annotation id
|
|
@@ -1140,6 +1162,47 @@ export declare class CommentElement {
|
|
|
1140
1162
|
* To disable draft mode
|
|
1141
1163
|
*/
|
|
1142
1164
|
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
|
+
/**
|
|
1197
|
+
* To enable filter ghost comments in sidebar
|
|
1198
|
+
*/
|
|
1199
|
+
public enableFilterGhostCommentsInSidebar: () => void;
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* To disable filter ghost comments in sidebar
|
|
1203
|
+
*/
|
|
1204
|
+
public disableFilterGhostCommentsInSidebar: () => void;
|
|
1205
|
+
|
|
1143
1206
|
constructor();
|
|
1144
1207
|
/**
|
|
1145
1208
|
* Subscribe to comments on the current document.
|
|
@@ -1255,7 +1318,7 @@ export declare class CommentElement {
|
|
|
1255
1318
|
|
|
1256
1319
|
/**
|
|
1257
1320
|
* Subscribe to comment mode change.
|
|
1258
|
-
*
|
|
1321
|
+
*
|
|
1259
1322
|
* Returns Observable<boolean>.
|
|
1260
1323
|
*/
|
|
1261
1324
|
private _onCommentModeChange;
|
|
@@ -1402,7 +1465,7 @@ export declare class CommentElement {
|
|
|
1402
1465
|
|
|
1403
1466
|
/**
|
|
1404
1467
|
* @description Sets custom status filters
|
|
1405
|
-
* @param statuses
|
|
1468
|
+
* @param statuses
|
|
1406
1469
|
*/
|
|
1407
1470
|
private _setCustomStatus;
|
|
1408
1471
|
|
|
@@ -1450,7 +1513,7 @@ export declare class CommentElement {
|
|
|
1450
1513
|
|
|
1451
1514
|
/**
|
|
1452
1515
|
* @description Sets the comment context provider
|
|
1453
|
-
* @param provider
|
|
1516
|
+
* @param provider
|
|
1454
1517
|
*/
|
|
1455
1518
|
private _setContextProvider;
|
|
1456
1519
|
|
|
@@ -1695,7 +1758,7 @@ export declare class CommentElement {
|
|
|
1695
1758
|
*/
|
|
1696
1759
|
private _disableRecordingSummary;
|
|
1697
1760
|
|
|
1698
|
-
/**
|
|
1761
|
+
/**
|
|
1699
1762
|
* To enable recording transcription
|
|
1700
1763
|
*/
|
|
1701
1764
|
private _enableRecordingTranscription;
|
|
@@ -1910,6 +1973,28 @@ export declare class CommentElement {
|
|
|
1910
1973
|
*/
|
|
1911
1974
|
private _disableMultiThread;
|
|
1912
1975
|
|
|
1976
|
+
/**
|
|
1977
|
+
* To enable group multiple match
|
|
1978
|
+
* @deprecated Use enableGroupMatchedComments instead
|
|
1979
|
+
*/
|
|
1980
|
+
private _enableGroupMultipleMatch;
|
|
1981
|
+
|
|
1982
|
+
/**
|
|
1983
|
+
* To disable group multiple match
|
|
1984
|
+
* @deprecated Use disableGroupMatchedComments instead
|
|
1985
|
+
*/
|
|
1986
|
+
private _disableGroupMultipleMatch;
|
|
1987
|
+
|
|
1988
|
+
/**
|
|
1989
|
+
* To enable group matched comments
|
|
1990
|
+
*/
|
|
1991
|
+
private _enableGroupMatchedComments;
|
|
1992
|
+
|
|
1993
|
+
/**
|
|
1994
|
+
* To disable group matched comments
|
|
1995
|
+
*/
|
|
1996
|
+
private _disableGroupMatchedComments;
|
|
1997
|
+
|
|
1913
1998
|
/**
|
|
1914
1999
|
* To update context of comment annotation
|
|
1915
2000
|
* @param annotationId Comment annotation id
|
|
@@ -1968,7 +2053,7 @@ export declare class CommentElement {
|
|
|
1968
2053
|
*/
|
|
1969
2054
|
private _disableQueryParamsComments;
|
|
1970
2055
|
|
|
1971
|
-
/**
|
|
2056
|
+
/**
|
|
1972
2057
|
* To enable comment sidebar action button click
|
|
1973
2058
|
*/
|
|
1974
2059
|
private _onCommentSidebarActionButtonClick;
|
|
@@ -2260,4 +2345,44 @@ export declare class CommentElement {
|
|
|
2260
2345
|
* To disable draft mode
|
|
2261
2346
|
*/
|
|
2262
2347
|
private _disableDraftMode;
|
|
2348
|
+
|
|
2349
|
+
/**
|
|
2350
|
+
* To enable filter comments on dom
|
|
2351
|
+
*/
|
|
2352
|
+
private _enableFilterCommentsOnDom;
|
|
2353
|
+
|
|
2354
|
+
/**
|
|
2355
|
+
* To disable filter comments on dom
|
|
2356
|
+
*/
|
|
2357
|
+
private _disableFilterCommentsOnDom;
|
|
2358
|
+
|
|
2359
|
+
/**
|
|
2360
|
+
* To enable reply avatars
|
|
2361
|
+
*/
|
|
2362
|
+
private _enableReplyAvatars;
|
|
2363
|
+
|
|
2364
|
+
/**
|
|
2365
|
+
* To disable reply avatars
|
|
2366
|
+
*/
|
|
2367
|
+
private _disableReplyAvatars;
|
|
2368
|
+
|
|
2369
|
+
/**
|
|
2370
|
+
* To set max reply avatars
|
|
2371
|
+
*/
|
|
2372
|
+
private _setMaxReplyAvatars;
|
|
2373
|
+
|
|
2374
|
+
/**
|
|
2375
|
+
* To set sidebar button count type
|
|
2376
|
+
*/
|
|
2377
|
+
private _setSidebarButtonCountType;
|
|
2378
|
+
|
|
2379
|
+
/**
|
|
2380
|
+
* To enable filter ghost comments in sidebar
|
|
2381
|
+
*/
|
|
2382
|
+
private _enableFilterGhostCommentsInSidebar;
|
|
2383
|
+
|
|
2384
|
+
/**
|
|
2385
|
+
* To disable filter ghost comments in sidebar
|
|
2386
|
+
*/
|
|
2387
|
+
private _disableFilterGhostCommentsInSidebar;
|
|
2263
2388
|
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
import { CrdtGetDataQuery, CrdtGetVersionQuery, CrdtOnDataChangeQuery, CrdtOnPresenceChangeQuery, CrdtOnRegisteredUserChangeQuery, CrdtOnStateChangeQuery, CrdtRegisterSyncUserQuery, CrdtSetPresenceQuery, CrdtSaveVersionQuery, CrdtUpdateDataQuery, CrdtUpdateStateQuery } from "../data/crdt.data.model";
|
|
3
|
+
|
|
4
|
+
export declare class CrdtElement {
|
|
5
|
+
/**
|
|
6
|
+
* Update data for a specific CRDT document
|
|
7
|
+
* @param id Document ID
|
|
8
|
+
* @param state State data as Uint8Array or number array
|
|
9
|
+
*/
|
|
10
|
+
updateData: (updateDataQuery: CrdtUpdateDataQuery) => Promise<any>;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Subscribe to data changes for a specific CRDT document
|
|
14
|
+
* @param id Document ID
|
|
15
|
+
* @param callback Callback function to handle data changes
|
|
16
|
+
* @returns Unsubscribe function
|
|
17
|
+
*/
|
|
18
|
+
onDataChange: (onDataChangeQuery: CrdtOnDataChangeQuery) => () => void;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Get data for a specific CRDT document
|
|
22
|
+
* @param id Document ID
|
|
23
|
+
*/
|
|
24
|
+
getData: (getDataQuery: CrdtGetDataQuery) => Promise<any>;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Subscribe to state changes for a specific CRDT document
|
|
28
|
+
* @param id Document ID
|
|
29
|
+
* @param callback Callback function to handle state changes
|
|
30
|
+
* @returns Unsubscribe function
|
|
31
|
+
*/
|
|
32
|
+
onStateChange: (onStateChangeQuery: CrdtOnStateChangeQuery) => () => void;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Update state for a specific CRDT document
|
|
36
|
+
* @param id Document ID
|
|
37
|
+
* @param state State data as Uint8Array or number array
|
|
38
|
+
*/
|
|
39
|
+
updateState: (updateStateQuery: CrdtUpdateStateQuery) => Promise<any>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Register a user for synchronization on a specific CRDT document
|
|
43
|
+
* @param id Document ID
|
|
44
|
+
*/
|
|
45
|
+
registerSyncUser: (registerSyncUserQuery: CrdtRegisterSyncUserQuery) => Promise<void>;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Subscribe to registered user changes for a specific CRDT document
|
|
49
|
+
*/
|
|
50
|
+
onRegisteredUserChange: (onRegisteredUserChangeQuery: CrdtOnRegisteredUserChangeQuery) => () => void;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Set presence for a specific CRDT document
|
|
54
|
+
* @param id Document ID
|
|
55
|
+
*/
|
|
56
|
+
setPresence: (setPresenceQuery: CrdtSetPresenceQuery) => Promise<void>;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Subscribe to presence changes for a specific CRDT document
|
|
60
|
+
* @param id Document ID
|
|
61
|
+
* @param callback Callback function to handle presence changes
|
|
62
|
+
* @returns Unsubscribe function
|
|
63
|
+
*/
|
|
64
|
+
onPresenceChange: (onPresenceChangeQuery: CrdtOnPresenceChangeQuery) => () => void;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Store a version of a specific CRDT document
|
|
68
|
+
* @param id Document ID
|
|
69
|
+
* @param versionId Version ID
|
|
70
|
+
* @param versionName Version name
|
|
71
|
+
* @param state State data as Uint8Array or number array
|
|
72
|
+
*/
|
|
73
|
+
saveVersion: (saveVersionQuery: CrdtSaveVersionQuery) => Promise<any>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Get a version of a specific CRDT document
|
|
77
|
+
* @param id Document ID
|
|
78
|
+
* @param versionId Version ID
|
|
79
|
+
*/
|
|
80
|
+
getVersion: (getVersionQuery: CrdtGetVersionQuery) => Promise<any>;
|
|
81
|
+
|
|
82
|
+
constructor();
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Update data for a specific CRDT document
|
|
86
|
+
* @param id Document ID
|
|
87
|
+
* @param state State data as Uint8Array or number array
|
|
88
|
+
*/
|
|
89
|
+
private _updateData;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Subscribe to data changes for a specific CRDT document
|
|
93
|
+
* @param id Document ID
|
|
94
|
+
* @param callback Callback function to handle data changes
|
|
95
|
+
* @returns Unsubscribe function
|
|
96
|
+
*/
|
|
97
|
+
private _onDataChange;
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Get data for a specific CRDT document
|
|
101
|
+
* @param id Document ID
|
|
102
|
+
*/
|
|
103
|
+
private _getData;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Subscribe to state changes for a specific CRDT document
|
|
107
|
+
* @param id Document ID
|
|
108
|
+
* @param callback Callback function to handle state changes
|
|
109
|
+
* @returns Unsubscribe function
|
|
110
|
+
*/
|
|
111
|
+
private _onStateChange;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Update state for a specific CRDT document
|
|
115
|
+
* @param id Document ID
|
|
116
|
+
* @param state State data as Uint8Array or number array
|
|
117
|
+
*/
|
|
118
|
+
private _updateState;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Register a user for synchronization on a specific CRDT document
|
|
122
|
+
* @param id Document ID
|
|
123
|
+
*/
|
|
124
|
+
private _registerSyncUser;
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Subscribe to registered user changes for a specific CRDT document
|
|
128
|
+
*/
|
|
129
|
+
private _onRegisteredUserChange;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Set presence for a specific CRDT document
|
|
133
|
+
* @param id Document ID
|
|
134
|
+
*/
|
|
135
|
+
private _setPresence;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Subscribe to presence changes for a specific CRDT document
|
|
139
|
+
* @param id Document ID
|
|
140
|
+
* @param callback Callback function to handle presence changes
|
|
141
|
+
* @returns Unsubscribe function
|
|
142
|
+
*/
|
|
143
|
+
private _onPresenceChange;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Store a version of a specific CRDT document
|
|
147
|
+
* @param id Document ID
|
|
148
|
+
* @param versionId Version ID
|
|
149
|
+
* @param versionName Version name
|
|
150
|
+
* @param state State data as Uint8Array or number array
|
|
151
|
+
*/
|
|
152
|
+
private _saveVersion;
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Get a version of a specific CRDT document
|
|
156
|
+
* @param id Document ID
|
|
157
|
+
* @param versionId Version ID
|
|
158
|
+
*/
|
|
159
|
+
private _getVersion;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Get all versions of a specific CRDT document
|
|
163
|
+
* @param id Document ID
|
|
164
|
+
*/
|
|
165
|
+
private _getVersions;
|
|
166
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
|
|
3
|
-
import { Notification, NotificationTabConfig } from "../data/notification.model";
|
|
3
|
+
import { GetNotificationsDataQuery, Notification, NotificationInitialSettingsConfig, NotificationSettingsConfig, 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: () => Observable<Notification[] | null>;
|
|
24
|
+
getNotificationsData: (query?: GetNotificationsDataQuery) => Observable<Notification[] | null>;
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* To set max days for notification history
|
|
@@ -58,6 +58,56 @@ 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
|
+
|
|
61
111
|
constructor();
|
|
62
112
|
|
|
63
113
|
/**
|
|
@@ -114,4 +164,54 @@ export declare class NotificationElement {
|
|
|
114
164
|
* To mark notification as read by id
|
|
115
165
|
*/
|
|
116
166
|
private _markNotificationAsReadById;
|
|
117
|
-
|
|
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
|
+
}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
3
|
import { PresenceUser } from "../data/presence-user.data.model";
|
|
4
|
-
import { PresenceEventTypesMap } from "../data/presence-events.data.model";
|
|
4
|
+
import { GetPresenceDataResponse, PresenceEventTypesMap } from "../data/presence-events.data.model";
|
|
5
|
+
import { PresenceRequestQuery } from "../data/presence-actions.data.model";
|
|
6
|
+
|
|
5
7
|
export declare class PresenceElement {
|
|
6
8
|
|
|
7
9
|
/**
|
|
8
10
|
* Subscribe to a list of all online users who are either active or inactive on the current document.
|
|
9
11
|
*
|
|
10
12
|
* Returns Observable<PresenceUser[] | null>.
|
|
13
|
+
* @deprecated This method is deprecated. Use `getData` method instead.
|
|
11
14
|
*/
|
|
12
15
|
getOnlineUsersOnCurrentDocument: () => Observable<PresenceUser[] | null>;
|
|
13
16
|
|
|
@@ -38,6 +41,11 @@ export declare class PresenceElement {
|
|
|
38
41
|
*/
|
|
39
42
|
disableSelf: () => void;
|
|
40
43
|
|
|
44
|
+
/**
|
|
45
|
+
* To get the presence data
|
|
46
|
+
*/
|
|
47
|
+
getData: (query?: PresenceRequestQuery) => Observable<GetPresenceDataResponse>;
|
|
48
|
+
|
|
41
49
|
/**
|
|
42
50
|
* Subscribe to presence events
|
|
43
51
|
*/
|
|
@@ -47,6 +55,7 @@ export declare class PresenceElement {
|
|
|
47
55
|
* Subscribe to a list of all online users who are either active or inactive on the current document.
|
|
48
56
|
*
|
|
49
57
|
* Returns Observable<PresenceUser[] | null>.
|
|
58
|
+
* @deprecated This method is deprecated. Use `getData` method instead.
|
|
50
59
|
*/
|
|
51
60
|
private _getOnlineUsersOnCurrentDocument;
|
|
52
61
|
|
|
@@ -77,6 +86,11 @@ export declare class PresenceElement {
|
|
|
77
86
|
*/
|
|
78
87
|
private _disableSelf;
|
|
79
88
|
|
|
89
|
+
/**
|
|
90
|
+
* To get the presence data
|
|
91
|
+
*/
|
|
92
|
+
private _getData;
|
|
93
|
+
|
|
80
94
|
/**
|
|
81
95
|
* Subscribe to presence events
|
|
82
96
|
*/
|