@veltdev/sdk-staging 4.5.0-beta.48 → 4.5.0-beta.5
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 +6 -39
- 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-sidebar-config.model.d.ts +0 -20
- 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 -8
- 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/multi-thread.data.model.d.ts +0 -2
- package/app/models/data/notification.model.d.ts +1 -20
- package/app/models/data/presence-events.data.model.d.ts +0 -8
- package/app/models/data/recorder-annotation.data.model.d.ts +0 -3
- package/app/models/data/recorder-events.data.model.d.ts +0 -10
- package/app/models/data/recorder.model.d.ts +8 -6
- package/app/models/data/resolver.data.model.d.ts +0 -6
- package/app/models/data/user-resolver.data.model.d.ts +0 -2
- package/app/models/element/comment-element.model.d.ts +0 -65
- package/app/models/element/notification-element.model.d.ts +1 -61
- package/app/models/element/presence-element.model.d.ts +1 -15
- package/app/models/element/recorder-element.model.d.ts +0 -11
- package/app/utils/constants.d.ts +0 -1
- package/app/utils/enums.d.ts +1 -17
- package/models.d.ts +0 -2
- package/package.json +1 -1
- package/velt.js +99 -104
- package/app/models/data/notifications-events.data.model.d.ts +0 -9
- package/app/models/data/presence-actions.data.model.d.ts +0 -5
|
@@ -31,7 +31,6 @@ import { FetchDocumentsResponse, FetchFoldersResponse } from "../models/data/doc
|
|
|
31
31
|
import { UserDataProvider } from "../models/data/user-resolver.data.model";
|
|
32
32
|
import { VeltDataProvider } from "../models/data/provider.data.model";
|
|
33
33
|
import { VeltResetButtonStateConfig } from "../models/data/button.data.model";
|
|
34
|
-
import { SetLocationsRequestOptions } from "../models/data/location.model";
|
|
35
34
|
|
|
36
35
|
export declare class Snippyly {
|
|
37
36
|
constructor();
|
|
@@ -49,22 +48,17 @@ export declare class Snippyly {
|
|
|
49
48
|
* @param id unique document ID
|
|
50
49
|
* @param documentMetadata Document Metadata
|
|
51
50
|
*/
|
|
52
|
-
setDocument: (id: string, documentMetadata?: DocumentMetadata) =>
|
|
51
|
+
setDocument: (id: string, documentMetadata?: DocumentMetadata) => void;
|
|
53
52
|
/**
|
|
54
53
|
* Tell us the unique ID of the current document/resource on which you want to enable collaboration.
|
|
55
54
|
* @param id unique document ID
|
|
56
55
|
* @deprecated This method is deprecated. Use `setDocuments` method instead.
|
|
57
56
|
*/
|
|
58
|
-
setDocumentId: (id: string) =>
|
|
57
|
+
setDocumentId: (id: string) => void;
|
|
59
58
|
/**
|
|
60
59
|
* To set multiple documents
|
|
61
60
|
*/
|
|
62
|
-
setDocuments: (documents: Document[], options?: SetDocumentsRequestOptions) =>
|
|
63
|
-
/**
|
|
64
|
-
* To set the root document
|
|
65
|
-
* @param document Document object
|
|
66
|
-
*/
|
|
67
|
-
setRootDocument: (document: Document) => Promise<void>;
|
|
61
|
+
setDocuments: (documents: Document[], options?: SetDocumentsRequestOptions) => void;
|
|
68
62
|
/**
|
|
69
63
|
* To unset the document id
|
|
70
64
|
* @deprecated This method is deprecated. Use `unsetDocuments` method instead.
|
|
@@ -106,39 +100,12 @@ export declare class Snippyly {
|
|
|
106
100
|
* @param params Location
|
|
107
101
|
* @param appendLocation Append location to existing location
|
|
108
102
|
*/
|
|
109
|
-
setLocation: (params: Location, appendLocation?: boolean) =>
|
|
110
|
-
|
|
111
|
-
/**
|
|
112
|
-
* To set the root location
|
|
113
|
-
* @param location Location object
|
|
114
|
-
*/
|
|
115
|
-
setRootLocation: (location: Location) => Promise<void>;
|
|
116
|
-
|
|
117
|
-
/**
|
|
118
|
-
* To set multiple locations
|
|
119
|
-
* @param locations Location objects
|
|
120
|
-
* @param options Set locations options
|
|
121
|
-
*/
|
|
122
|
-
setLocations: (locations: Location[], options?: SetLocationsRequestOptions) => Promise<void>;
|
|
123
|
-
|
|
103
|
+
setLocation: (params: Location, appendLocation?: boolean) => void;
|
|
124
104
|
/**
|
|
125
105
|
* To remove location from a User
|
|
126
106
|
* @param location Location
|
|
127
107
|
*/
|
|
128
108
|
removeLocation: (location?: Location) => void;
|
|
129
|
-
|
|
130
|
-
/**
|
|
131
|
-
* To remove multiple locations
|
|
132
|
-
* @param locations Location objects
|
|
133
|
-
*/
|
|
134
|
-
removeLocations: (locations?: Location[]) => void;
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* To remove location ids
|
|
138
|
-
* @param locationIds Location ids
|
|
139
|
-
*/
|
|
140
|
-
unsetLocationIds: (locationIds?: string[]) => void;
|
|
141
|
-
|
|
142
109
|
/**
|
|
143
110
|
* To exclude data of specific location ids
|
|
144
111
|
* @param ids Location Ids
|
|
@@ -244,7 +211,7 @@ export declare class Snippyly {
|
|
|
244
211
|
* @param location Location object
|
|
245
212
|
* @deprecated This method is deprecated and will be removed in next release. Use `setLocation` method with `appendLocation: true` instead.
|
|
246
213
|
*/
|
|
247
|
-
addLocation: (location: any) =>
|
|
214
|
+
addLocation: (location: any) => any;
|
|
248
215
|
/**
|
|
249
216
|
* To set the dark mode of Velt components.
|
|
250
217
|
* @param value {boolean} true/false
|
|
@@ -348,5 +315,5 @@ export declare class Snippyly {
|
|
|
348
315
|
/**
|
|
349
316
|
* To reset the button toggle map.
|
|
350
317
|
*/
|
|
351
|
-
|
|
318
|
+
resetVeltButtonState: (config?: VeltResetButtonStateConfig) => void;
|
|
352
319
|
}
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { CommentAnnotation } from "./comment-annotation.data.model";
|
|
2
2
|
import { UnreadCommentsMap } from "./comment-utils.data.model";
|
|
3
3
|
import { Comment } from "./comment.data.model";
|
|
4
|
-
import { CustomFilters } from "./custom-filter.data.model";
|
|
5
4
|
import { VeltEventMetadata } from "./event-metadata.data.model";
|
|
6
5
|
import { Notification } from "./notification.model";
|
|
7
6
|
export interface VeltButtonClickEvent extends VeltButtonData {
|
|
8
7
|
buttonContext?: VeltButtonContext;
|
|
9
8
|
metadata?: VeltEventMetadata;
|
|
10
|
-
customFilters?: CustomFilters;
|
|
11
9
|
}
|
|
12
10
|
export interface VeltButtonContext {
|
|
13
11
|
type?: string;
|
|
@@ -164,10 +164,6 @@ export declare class CommentAnnotation {
|
|
|
164
164
|
* Custom context data provided by the user
|
|
165
165
|
*/
|
|
166
166
|
context?: any;
|
|
167
|
-
/**
|
|
168
|
-
* Context id generated from context data
|
|
169
|
-
*/
|
|
170
|
-
contextId?: string;
|
|
171
167
|
iam: CommentIAMConfig;
|
|
172
168
|
isPageAnnotation?: boolean;
|
|
173
169
|
targetInlineCommentElementId?: string;
|
|
@@ -248,6 +244,3 @@ export declare class CommentAnnotationSubscribedGroups {
|
|
|
248
244
|
export declare class UpdateContextConfig {
|
|
249
245
|
merge?: boolean;
|
|
250
246
|
}
|
|
251
|
-
export interface ContextOptions {
|
|
252
|
-
partialMatch?: boolean;
|
|
253
|
-
}
|
|
@@ -1,25 +1,15 @@
|
|
|
1
1
|
import { CommentAnnotation } from "./comment-annotation.data.model";
|
|
2
2
|
import { UnreadCommentsMap } from "./comment-utils.data.model";
|
|
3
|
-
import { CustomFilters } from "./custom-filter.data.model";
|
|
4
3
|
import { Location } from "./location.model";
|
|
5
|
-
declare class FilterOption {
|
|
6
|
-
id: string;
|
|
7
|
-
name: string;
|
|
8
|
-
}
|
|
9
4
|
declare class FilterTypeConfig {
|
|
10
5
|
name?: string;
|
|
11
6
|
enable?: boolean;
|
|
12
7
|
multiSelection?: boolean;
|
|
13
8
|
enableGrouping?: boolean;
|
|
14
9
|
order?: string[];
|
|
15
|
-
placeholder?: string;
|
|
16
|
-
id?: string;
|
|
17
|
-
type?: 'custom' | 'system';
|
|
18
|
-
options?: FilterOption[];
|
|
19
10
|
}
|
|
20
11
|
export declare class CommentSidebarFilterConfig {
|
|
21
12
|
location?: FilterTypeConfig;
|
|
22
|
-
document?: FilterTypeConfig;
|
|
23
13
|
people?: FilterTypeConfig;
|
|
24
14
|
assigned?: FilterTypeConfig;
|
|
25
15
|
tagged?: FilterTypeConfig;
|
|
@@ -28,7 +18,6 @@ export declare class CommentSidebarFilterConfig {
|
|
|
28
18
|
category?: FilterTypeConfig;
|
|
29
19
|
commentType?: FilterTypeConfig;
|
|
30
20
|
version?: FilterTypeConfig;
|
|
31
|
-
[key: string]: FilterTypeConfig | undefined;
|
|
32
21
|
}
|
|
33
22
|
export declare class CommentSidebarGroupConfig {
|
|
34
23
|
enable?: boolean;
|
|
@@ -36,10 +25,6 @@ export declare class CommentSidebarGroupConfig {
|
|
|
36
25
|
}
|
|
37
26
|
export declare class CommentSidebarFilters {
|
|
38
27
|
location?: Location[];
|
|
39
|
-
document?: {
|
|
40
|
-
id?: string;
|
|
41
|
-
documentName?: string;
|
|
42
|
-
}[];
|
|
43
28
|
people?: {
|
|
44
29
|
userId?: string;
|
|
45
30
|
email?: string;
|
|
@@ -62,10 +47,6 @@ export declare class CommentSidebarFilters {
|
|
|
62
47
|
id: string;
|
|
63
48
|
name?: string;
|
|
64
49
|
}[];
|
|
65
|
-
[key: string]: {
|
|
66
|
-
id?: string;
|
|
67
|
-
name?: string;
|
|
68
|
-
}[] | string[] | undefined;
|
|
69
50
|
}
|
|
70
51
|
export interface CommentSidebarCustomActionsState {
|
|
71
52
|
[key: string]: boolean;
|
|
@@ -75,7 +56,6 @@ export interface CommentSidebarCustomActionEventData {
|
|
|
75
56
|
data: CommentAnnotation[];
|
|
76
57
|
unreadDataMap: UnreadCommentsMap;
|
|
77
58
|
systemFilteredData: CommentAnnotation[];
|
|
78
|
-
customFilters: CustomFilters;
|
|
79
59
|
}
|
|
80
60
|
export declare class CommentSidebarData {
|
|
81
61
|
groupId?: string;
|
|
@@ -6,19 +6,10 @@ export type CoreEventTypesMap = {
|
|
|
6
6
|
[CoreEventTypes.USER_UPDATE]: UserUpdateEvent;
|
|
7
7
|
[CoreEventTypes.DOCUMENT_INIT]: DocumentInitEvent;
|
|
8
8
|
[CoreEventTypes.ERROR]: ErrorEvent;
|
|
9
|
-
[CoreEventTypes.INIT_UPDATE]: InitUpdateEvent;
|
|
10
9
|
};
|
|
11
10
|
export type UserUpdateEvent = User | null;
|
|
12
11
|
export type DocumentInitEvent = boolean | undefined;
|
|
13
12
|
export type ErrorEvent = {
|
|
14
|
-
error?: string;
|
|
15
13
|
code: string;
|
|
16
14
|
message?: string;
|
|
17
|
-
source?: string;
|
|
18
|
-
};
|
|
19
|
-
export type InitUpdateEvent = {
|
|
20
|
-
event: string;
|
|
21
|
-
methodName?: string;
|
|
22
|
-
source?: string;
|
|
23
|
-
payload?: any;
|
|
24
15
|
};
|
|
@@ -13,14 +13,6 @@ export interface CustomStatus extends CustomFilter {
|
|
|
13
13
|
svg?: string;
|
|
14
14
|
iconUrl?: string;
|
|
15
15
|
}
|
|
16
|
-
export interface CustomFilterOption {
|
|
17
|
-
id: string;
|
|
18
|
-
name: string;
|
|
19
|
-
selected: boolean;
|
|
20
|
-
}
|
|
21
|
-
export interface CustomFilters {
|
|
22
|
-
[key: string]: CustomFilterOption[];
|
|
23
|
-
}
|
|
24
16
|
export interface CustomCategory extends CustomFilter {
|
|
25
17
|
}
|
|
26
18
|
export interface CustomCategoryMap {
|
|
@@ -3,18 +3,10 @@ export declare class DocumentPaths {
|
|
|
3
3
|
* The document's unique identifier.
|
|
4
4
|
*/
|
|
5
5
|
documentId?: string;
|
|
6
|
-
folderId?: string;
|
|
7
|
-
locationId?: string;
|
|
8
|
-
allDocuments?: boolean;
|
|
9
|
-
veltFolderId?: string;
|
|
10
6
|
/**
|
|
11
7
|
* Presence path.
|
|
12
8
|
*/
|
|
13
9
|
presence?: string;
|
|
14
|
-
/**
|
|
15
|
-
* User config path.
|
|
16
|
-
*/
|
|
17
|
-
userConfig?: string;
|
|
18
10
|
docs?: string;
|
|
19
11
|
/**
|
|
20
12
|
* Cursor path.
|
|
@@ -8,11 +8,9 @@ export interface SetDocumentsRequestOptions {
|
|
|
8
8
|
folderId?: string;
|
|
9
9
|
allDocuments?: boolean;
|
|
10
10
|
locationId?: string;
|
|
11
|
-
rootDocumentId?: string;
|
|
12
11
|
}
|
|
13
12
|
export interface UpdateDocumentsRequest<T = unknown> {
|
|
14
13
|
organizationId?: string;
|
|
15
|
-
folderId?: string;
|
|
16
14
|
documents?: UpdateDocumentMetadata<T>[];
|
|
17
15
|
}
|
|
18
16
|
export interface UpdateDocumentMetadata<T = unknown> {
|
|
@@ -55,8 +55,6 @@ export declare class MultiThreadCommentAnnotation {
|
|
|
55
55
|
isDraft?: boolean;
|
|
56
56
|
sourceId?: string;
|
|
57
57
|
metadata?: MultiThreadMetadata;
|
|
58
|
-
isTemporary?: boolean;
|
|
59
|
-
context?: any;
|
|
60
58
|
}
|
|
61
59
|
export declare class MultiThreadMetadata extends BaseMetadata {
|
|
62
60
|
[key: string]: any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AreaStatus, ArrowStatus, CommentStatus, HuddleActionTypes,
|
|
1
|
+
import { AreaStatus, ArrowStatus, CommentStatus, HuddleActionTypes, NotificationSource, TagStatus, UserActionTypes } from "../../utils/enums";
|
|
2
2
|
import { DocumentMetadata } from "./document-metadata.model";
|
|
3
3
|
import { DocumentUser } from "./document-user.data.model";
|
|
4
4
|
import { Location } from "./location.model";
|
|
@@ -230,22 +230,3 @@ export declare class NotificationTabConfig {
|
|
|
230
230
|
all?: NotificationTabConfigItem;
|
|
231
231
|
people?: NotificationTabConfigItem;
|
|
232
232
|
}
|
|
233
|
-
export declare class NotificationInitialSettingsConfig {
|
|
234
|
-
name?: string;
|
|
235
|
-
id: string;
|
|
236
|
-
default?: string;
|
|
237
|
-
enable?: boolean;
|
|
238
|
-
values?: NotificationConfigValue[];
|
|
239
|
-
}
|
|
240
|
-
export declare class NotificationConfigValue {
|
|
241
|
-
name?: string;
|
|
242
|
-
id: NotificationSettingsItemType;
|
|
243
|
-
}
|
|
244
|
-
export declare class NotificationSettingsConfig {
|
|
245
|
-
[key: string]: NotificationSettingsItemType;
|
|
246
|
-
}
|
|
247
|
-
export interface NotificationsDocConfig {
|
|
248
|
-
inbox: 'ALL' | 'NONE' | 'MINE';
|
|
249
|
-
email: 'ALL' | 'NONE' | 'MINE';
|
|
250
|
-
[key: string]: string;
|
|
251
|
-
}
|
|
@@ -3,14 +3,6 @@ import { PresenceUser } from "./presence-user.data.model";
|
|
|
3
3
|
export interface PresenceMultipleUsersOnlineEvent {
|
|
4
4
|
users: PresenceUser[];
|
|
5
5
|
}
|
|
6
|
-
export interface PresenceUserStateChangeEvent {
|
|
7
|
-
user: PresenceUser;
|
|
8
|
-
state: string;
|
|
9
|
-
}
|
|
10
6
|
export type PresenceEventTypesMap = {
|
|
11
7
|
[PresenceEventTypes.MULTIPLE_USERS_ONLINE]: PresenceMultipleUsersOnlineEvent;
|
|
12
|
-
[PresenceEventTypes.USER_STATE_CHANGE]: PresenceUserStateChangeEvent;
|
|
13
8
|
};
|
|
14
|
-
export interface GetPresenceDataResponse {
|
|
15
|
-
data: PresenceUser[] | null;
|
|
16
|
-
}
|
|
@@ -180,8 +180,6 @@ export interface RecorderBoundedScaleRange {
|
|
|
180
180
|
centerY?: number;
|
|
181
181
|
topLeftX?: number;
|
|
182
182
|
topLeftY?: number;
|
|
183
|
-
topLeftXPixels?: number;
|
|
184
|
-
topLeftYPixels?: number;
|
|
185
183
|
}
|
|
186
184
|
export interface RecorderEditRange {
|
|
187
185
|
trimRanges: RecorderBoundedTrimRange[];
|
|
@@ -215,7 +213,6 @@ declare class RecorderDataAsset {
|
|
|
215
213
|
*/
|
|
216
214
|
fileFormat?: RecorderFileFormat;
|
|
217
215
|
thumbnailUrl?: string;
|
|
218
|
-
transcription: RecorderDataTranscription;
|
|
219
216
|
}
|
|
220
217
|
export declare class RecorderData {
|
|
221
218
|
recorderId: string;
|
|
@@ -8,16 +8,6 @@ export interface RecordingDeleteEvent extends RecorderData {
|
|
|
8
8
|
}
|
|
9
9
|
export interface RecordingEditDoneEvent extends RecorderData {
|
|
10
10
|
}
|
|
11
|
-
export interface RecordingErrorEvent {
|
|
12
|
-
type: string;
|
|
13
|
-
message: string;
|
|
14
|
-
recorderId?: string;
|
|
15
|
-
}
|
|
16
|
-
export interface RecordingSaveInitiatedEvent {
|
|
17
|
-
annotationId?: string;
|
|
18
|
-
message: string;
|
|
19
|
-
type: 'edit' | 'record';
|
|
20
|
-
}
|
|
21
11
|
export type RecorderEventTypesMap = {
|
|
22
12
|
[RecorderEventTypes.TRANSCRIPTION_DONE]: TranscriptionDoneEvent;
|
|
23
13
|
[RecorderEventTypes.RECORDING_DONE]: RecordingDoneEvent;
|
|
@@ -93,13 +93,15 @@ export declare class RecordedData {
|
|
|
93
93
|
};
|
|
94
94
|
getThumbnailTag: (url?: string) => string;
|
|
95
95
|
}
|
|
96
|
-
export declare class RecorderQualityConstraintsOptions {
|
|
97
|
-
video?: MediaTrackConstraints;
|
|
98
|
-
audio?: MediaTrackConstraints;
|
|
99
|
-
}
|
|
100
96
|
export declare class RecorderQualityConstraints {
|
|
101
|
-
safari?:
|
|
102
|
-
|
|
97
|
+
safari?: {
|
|
98
|
+
video?: MediaTrackConstraints;
|
|
99
|
+
audio?: MediaTrackConstraints;
|
|
100
|
+
};
|
|
101
|
+
other?: {
|
|
102
|
+
video?: MediaTrackConstraints;
|
|
103
|
+
audio?: MediaTrackConstraints;
|
|
104
|
+
};
|
|
103
105
|
}
|
|
104
106
|
export declare class RecorderEncodingOptions {
|
|
105
107
|
safari?: MediaRecorderOptions;
|
|
@@ -3,12 +3,6 @@ export interface ResolverConfig {
|
|
|
3
3
|
saveRetryConfig?: RetryConfig;
|
|
4
4
|
deleteRetryConfig?: RetryConfig;
|
|
5
5
|
getRetryConfig?: RetryConfig;
|
|
6
|
-
resolveUsersConfig?: ResolveUsersConfig;
|
|
7
|
-
}
|
|
8
|
-
export interface ResolveUsersConfig {
|
|
9
|
-
organization?: boolean;
|
|
10
|
-
folder?: boolean;
|
|
11
|
-
document?: boolean;
|
|
12
6
|
}
|
|
13
7
|
export interface ResolverResponse<T> {
|
|
14
8
|
data?: T;
|
|
@@ -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,17 +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
1143
|
constructor();
|
|
1177
1144
|
/**
|
|
1178
1145
|
* Subscribe to comments on the current document.
|
|
@@ -1943,28 +1910,6 @@ export declare class CommentElement {
|
|
|
1943
1910
|
*/
|
|
1944
1911
|
private _disableMultiThread;
|
|
1945
1912
|
|
|
1946
|
-
/**
|
|
1947
|
-
* To enable group multiple match
|
|
1948
|
-
* @deprecated Use enableGroupMatchedComments instead
|
|
1949
|
-
*/
|
|
1950
|
-
private _enableGroupMultipleMatch;
|
|
1951
|
-
|
|
1952
|
-
/**
|
|
1953
|
-
* To disable group multiple match
|
|
1954
|
-
* @deprecated Use disableGroupMatchedComments instead
|
|
1955
|
-
*/
|
|
1956
|
-
private _disableGroupMultipleMatch;
|
|
1957
|
-
|
|
1958
|
-
/**
|
|
1959
|
-
* To enable group matched comments
|
|
1960
|
-
*/
|
|
1961
|
-
private _enableGroupMatchedComments;
|
|
1962
|
-
|
|
1963
|
-
/**
|
|
1964
|
-
* To disable group matched comments
|
|
1965
|
-
*/
|
|
1966
|
-
private _disableGroupMatchedComments;
|
|
1967
|
-
|
|
1968
1913
|
/**
|
|
1969
1914
|
* To update context of comment annotation
|
|
1970
1915
|
* @param annotationId Comment annotation id
|
|
@@ -2315,14 +2260,4 @@ export declare class CommentElement {
|
|
|
2315
2260
|
* To disable draft mode
|
|
2316
2261
|
*/
|
|
2317
2262
|
private _disableDraftMode;
|
|
2318
|
-
|
|
2319
|
-
/**
|
|
2320
|
-
* To enable filter comments on dom
|
|
2321
|
-
*/
|
|
2322
|
-
private _enableFilterCommentsOnDom;
|
|
2323
|
-
|
|
2324
|
-
/**
|
|
2325
|
-
* To disable filter comments on dom
|
|
2326
|
-
*/
|
|
2327
|
-
private _disableFilterCommentsOnDom;
|
|
2328
2263
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
|
|
3
|
-
import { Notification, NotificationTabConfig
|
|
3
|
+
import { Notification, NotificationTabConfig } from "../data/notification.model";
|
|
4
4
|
|
|
5
5
|
export declare class NotificationElement {
|
|
6
6
|
/**
|
|
@@ -58,36 +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 set settings initial config
|
|
88
|
-
*/
|
|
89
|
-
setSettingsInitialConfig: (settings: NotificationInitialSettingsConfig[]) => void;
|
|
90
|
-
|
|
91
61
|
constructor();
|
|
92
62
|
|
|
93
63
|
/**
|
|
@@ -144,34 +114,4 @@ export declare class NotificationElement {
|
|
|
144
114
|
* To mark notification as read by id
|
|
145
115
|
*/
|
|
146
116
|
private _markNotificationAsReadById;
|
|
147
|
-
|
|
148
|
-
/**
|
|
149
|
-
* To set settings
|
|
150
|
-
*/
|
|
151
|
-
private _setSettings;
|
|
152
|
-
|
|
153
|
-
/**
|
|
154
|
-
* To get settings
|
|
155
|
-
*/
|
|
156
|
-
private _getSettings;
|
|
157
|
-
|
|
158
|
-
/**
|
|
159
|
-
* To mute all notifications
|
|
160
|
-
*/
|
|
161
|
-
private _muteAllNotifications;
|
|
162
|
-
|
|
163
|
-
/**
|
|
164
|
-
* To enable settings
|
|
165
|
-
*/
|
|
166
|
-
private _enableSettings;
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* To disable settings
|
|
170
|
-
*/
|
|
171
|
-
private _disableSettings;
|
|
172
|
-
|
|
173
|
-
/**
|
|
174
|
-
* To set settings initial config
|
|
175
|
-
*/
|
|
176
|
-
private _setSettingsInitialConfig;
|
|
177
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 {
|
|
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
|
*/
|
|
@@ -83,12 +83,6 @@ export declare class RecorderElement {
|
|
|
83
83
|
* To set recording encoding options
|
|
84
84
|
*/
|
|
85
85
|
setRecordingEncodingOptions: (options: RecorderEncodingOptions) => void;
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* To download latest video
|
|
89
|
-
*/
|
|
90
|
-
downloadLatestVideo: (recorderId: string) => Promise<boolean>;
|
|
91
|
-
|
|
92
86
|
constructor();
|
|
93
87
|
|
|
94
88
|
private _initRecording;
|
|
@@ -168,9 +162,4 @@ export declare class RecorderElement {
|
|
|
168
162
|
* To set recording encoding options
|
|
169
163
|
*/
|
|
170
164
|
private _setRecordingEncodingOptions;
|
|
171
|
-
|
|
172
|
-
/**
|
|
173
|
-
* To download latest video
|
|
174
|
-
*/
|
|
175
|
-
private _downloadLatestVideo;
|
|
176
165
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ 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
17
|
static FIREBASE_PARTIAL_PATH_FOLDER_USERS: string;
|