@veltdev/types 4.0.0-beta.8 → 4.0.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 +220 -195
- package/app/models/data/arrow-annotation.data.model.d.ts +51 -0
- package/app/models/data/base-metadata.data.model.d.ts +2 -0
- package/app/models/data/comment-actions.data.model.d.ts +20 -0
- package/app/models/data/comment-events.data.model.d.ts +15 -0
- package/app/models/data/comment-utils.data.model.d.ts +8 -0
- package/app/models/data/cursor-position.data.model.d.ts +15 -0
- package/app/models/data/document-events.data.model.d.ts +8 -0
- package/app/models/data/document-metadata.model.d.ts +8 -0
- package/app/models/data/document.data.model.d.ts +23 -0
- package/app/models/data/folder-metadata.model.d.ts +40 -0
- package/app/models/data/multi-thread.data.model.d.ts +61 -0
- package/app/models/data/notification.model.d.ts +16 -0
- package/app/models/data/recorder-annotation.data.model.d.ts +6 -0
- package/app/models/data/recorder-events.data.model.d.ts +2 -10
- package/app/models/data/user-resolver.data.model.d.ts +5 -0
- package/app/models/element/comment-element.model.d.ts +31 -1
- package/app/models/element/recorder-element.model.d.ts +13 -1
- package/app/utils/constants.d.ts +5 -0
- package/app/utils/enums.d.ts +2 -0
- package/models.d.ts +4 -0
- package/package.json +1 -1
|
@@ -26,210 +26,214 @@ import { DocumentMetadata } from "../models/data/document-metadata.model";
|
|
|
26
26
|
import { ReactionElement } from "../models/element/reaction-element.model";
|
|
27
27
|
import { VeltEventMetadata } from "../models/data/event-metadata.data.model";
|
|
28
28
|
import { CoreEventTypesMap } from "../models/data/core-events.data.model";
|
|
29
|
-
import { Document, SetDocumentsRequestOptions } from "../models/data/document.data.model";
|
|
29
|
+
import { Document, SetDocumentsRequestOptions, FetchDocumentsRequest, FetchFoldersRequest } from "../models/data/document.data.model";
|
|
30
|
+
import { FetchDocumentsResponse, FetchFoldersResponse } from "../models/data/document-events.data.model";
|
|
31
|
+
import { UserDataProvider } from "../models/data/user-resolver.data.model";
|
|
32
|
+
|
|
30
33
|
export declare class Snippyly {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
34
|
+
constructor();
|
|
35
|
+
initConfig: (apiKey: string, config?: Config) => void;
|
|
36
|
+
identify: (user: User, userOptions?: UserOptions) => Promise<unknown>;
|
|
37
|
+
/**
|
|
38
|
+
* Tell us who the currently logged in user is.
|
|
39
|
+
*
|
|
40
|
+
* Call whenever the user is updated: signs in, signs out, signs up etc.
|
|
41
|
+
* @deprecated This method is deprecated.
|
|
42
|
+
*/
|
|
43
|
+
updateUser: (user: User) => void;
|
|
44
|
+
/**
|
|
45
|
+
* Tell us the unique ID of the current document/resource on which you want to enable collaboration.
|
|
46
|
+
* @param id unique document ID
|
|
47
|
+
* @param documentMetadata Document Metadata
|
|
48
|
+
*/
|
|
49
|
+
setDocument: (id: string, documentMetadata?: DocumentMetadata) => void;
|
|
50
|
+
/**
|
|
51
|
+
* Tell us the unique ID of the current document/resource on which you want to enable collaboration.
|
|
52
|
+
* @param id unique document ID
|
|
53
|
+
* @deprecated This method is deprecated. Use `setDocuments` method instead.
|
|
54
|
+
*/
|
|
55
|
+
setDocumentId: (id: string) => void;
|
|
56
|
+
/**
|
|
57
|
+
* To set multiple documents
|
|
58
|
+
*/
|
|
59
|
+
setDocuments: (documents: Document[], options?: SetDocumentsRequestOptions) => void;
|
|
60
|
+
/**
|
|
61
|
+
* To unset the document id
|
|
62
|
+
* @deprecated This method is deprecated. Use `unsetDocuments` method instead.
|
|
63
|
+
*/
|
|
64
|
+
unsetDocumentId: () => void;
|
|
65
|
+
/**
|
|
66
|
+
* To unset the documents
|
|
67
|
+
*/
|
|
68
|
+
unsetDocuments: () => void;
|
|
69
|
+
/**
|
|
70
|
+
* To fetch documents
|
|
71
|
+
*/
|
|
72
|
+
fetchDocuments: (options?: FetchDocumentsRequest) => Promise<FetchDocumentsResponse>;
|
|
73
|
+
/**
|
|
74
|
+
* To fetch folders
|
|
75
|
+
*/
|
|
76
|
+
fetchFolders: (options?: FetchFoldersRequest) => Promise<FetchFoldersResponse>;
|
|
77
|
+
/**
|
|
78
|
+
* To set the user data provider.
|
|
79
|
+
*/
|
|
80
|
+
setUserDataProvider: (userDataProvider: UserDataProvider) => void;
|
|
81
|
+
/**
|
|
82
|
+
* Get Document ID
|
|
83
|
+
*/
|
|
84
|
+
getDocumentId: () => string;
|
|
85
|
+
/**
|
|
86
|
+
* Tell us the custom params of the current document/resource to identify sub document inside a document.
|
|
87
|
+
* @param params Location
|
|
88
|
+
* @param appendLocation Append location to existing location
|
|
89
|
+
*/
|
|
90
|
+
setLocation: (params: Location, appendLocation?: boolean) => void;
|
|
91
|
+
/**
|
|
92
|
+
* To remove location from a User
|
|
93
|
+
* @param location Location
|
|
94
|
+
*/
|
|
95
|
+
removeLocation: (location?: Location) => void;
|
|
96
|
+
/**
|
|
97
|
+
* To exclude data of specific location ids
|
|
98
|
+
* @param ids Location Ids
|
|
99
|
+
*/
|
|
100
|
+
excludeLocationIds: (ids: string[]) => void;
|
|
101
|
+
/**
|
|
102
|
+
* Tell us the about the scrollable document ids to keep track on its scroll changes
|
|
103
|
+
* @param ids scrollable elements ids
|
|
104
|
+
*/
|
|
105
|
+
setScrollableElementsIds: (ids: string[]) => void;
|
|
106
|
+
/**
|
|
107
|
+
* To remove document params from a User
|
|
108
|
+
*/
|
|
109
|
+
removeScrollableElementsIds: () => void;
|
|
110
|
+
/**
|
|
111
|
+
* Get the Presence Element Object to access the raw presence data.
|
|
112
|
+
*
|
|
113
|
+
* This is for Pros who don’t want to use Snippyly Presence web component and want to design their own UI.
|
|
114
|
+
*/
|
|
115
|
+
getPresenceElement: () => PresenceElement;
|
|
116
|
+
/**
|
|
117
|
+
* Get the Cursor Element Object to access the raw cursor data.
|
|
118
|
+
*
|
|
119
|
+
* This is for Pros who don’t want to use Snippyly Presence web component and want to design their own UI.
|
|
120
|
+
*/
|
|
121
|
+
getCursorElement: () => CursorElement;
|
|
122
|
+
/**
|
|
123
|
+
* Get the Comment Element Object to access the raw comment data.
|
|
124
|
+
*
|
|
125
|
+
* This is for Pros who don’t want to use Snippyly Comment web component and want to design their own UI.
|
|
126
|
+
*/
|
|
127
|
+
getCommentElement: () => CommentElement;
|
|
128
|
+
/**
|
|
129
|
+
* Get the Tag Pin Annotation Object to access the raw tag data.
|
|
130
|
+
*
|
|
131
|
+
* This is for Pros who don’t want to use Snippyly Tag web component and want to design their own UI.
|
|
132
|
+
*/
|
|
133
|
+
getTagElement: () => TagElement;
|
|
134
|
+
/**
|
|
135
|
+
* Get the Selection Object to enable/disable the feature.
|
|
136
|
+
*/
|
|
137
|
+
getSelectionElement: () => SelectionElement;
|
|
138
|
+
/**
|
|
139
|
+
* Get the Recorder Object.
|
|
140
|
+
*/
|
|
141
|
+
getRecorderElement: () => RecorderElement;
|
|
142
|
+
/**
|
|
143
|
+
* Get the Contact Object.
|
|
144
|
+
*/
|
|
145
|
+
getContactElement: () => ContactElement;
|
|
146
|
+
/**
|
|
147
|
+
* Get the Rewriter Object.
|
|
148
|
+
*/
|
|
149
|
+
getRewriterElement: () => RewriterElement;
|
|
150
|
+
/**
|
|
151
|
+
* Get the Huddle element.
|
|
152
|
+
*/
|
|
153
|
+
getHuddleElement: () => HuddleElement;
|
|
154
|
+
/**
|
|
155
|
+
* Get the LiveStateSync Object.
|
|
156
|
+
*/
|
|
157
|
+
getLiveStateSyncElement: () => LiveStateSyncElement;
|
|
158
|
+
/**
|
|
159
|
+
* Get the Arrow Object.
|
|
160
|
+
*/
|
|
161
|
+
getArrowElement: () => ArrowElement;
|
|
162
|
+
/**
|
|
163
|
+
* Get the Views Object.
|
|
164
|
+
*/
|
|
165
|
+
getViewsElement: () => ViewsElement;
|
|
166
|
+
/**
|
|
167
|
+
* Get the Notification Object.
|
|
168
|
+
*/
|
|
169
|
+
getNotificationElement: () => NotificationElement;
|
|
170
|
+
/**
|
|
171
|
+
* Get the Autocomplete Object.
|
|
172
|
+
*/
|
|
173
|
+
getAutocompleteElement: () => AutocompleteElement;
|
|
174
|
+
/**
|
|
175
|
+
* Get the Area Object.
|
|
176
|
+
*/
|
|
177
|
+
getAreaElement: () => AreaElement;
|
|
178
|
+
/**
|
|
179
|
+
* Get the Area Object.
|
|
180
|
+
*/
|
|
181
|
+
getReactionElement: () => ReactionElement;
|
|
182
|
+
/**
|
|
183
|
+
* Get the metadata of the current resource.
|
|
184
|
+
*/
|
|
185
|
+
getMetadata: () => Promise<VeltEventMetadata | null>;
|
|
186
|
+
/**
|
|
187
|
+
* To signout a user
|
|
188
|
+
*/
|
|
189
|
+
signOutUser: () => any;
|
|
190
|
+
/**
|
|
191
|
+
* Provide a list of features to disable.
|
|
192
|
+
* Provide an empty array to enable all the features.
|
|
193
|
+
* @param features List of features
|
|
194
|
+
*/
|
|
195
|
+
disableFeatures: (features: Array<FeatureType>) => void;
|
|
196
|
+
/**
|
|
187
197
|
* Add location to show comments, tags, recorders etc. for provided location also.
|
|
188
198
|
* @param location Location object
|
|
189
199
|
* @deprecated This method is deprecated and will be removed in next release. Use `setLocation` method with `appendLocation: true` instead.
|
|
190
200
|
*/
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
/**
|
|
199
|
-
* To check if user allowed in provided document or not.
|
|
200
|
-
*/
|
|
201
|
-
isUserAllowed$: () => Observable<boolean>;
|
|
201
|
+
addLocation: (location: any) => any;
|
|
202
|
+
/**
|
|
203
|
+
* To set the dark mode of Velt components.
|
|
204
|
+
* @param value {boolean} true/false
|
|
205
|
+
*/
|
|
206
|
+
setDarkMode: (darkMode: boolean) => void;
|
|
202
207
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
208
|
+
/**
|
|
209
|
+
* To check if user allowed in provided document or not.
|
|
210
|
+
*/
|
|
211
|
+
isUserAllowed$: () => Observable<boolean>;
|
|
207
212
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
213
|
+
/**
|
|
214
|
+
* To get user.
|
|
215
|
+
*/
|
|
216
|
+
getUser: () => User | null;
|
|
212
217
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
getVeltInitState: () => Observable<boolean | undefined>;
|
|
218
|
+
/**
|
|
219
|
+
* To get user role in provided document.
|
|
220
|
+
*/
|
|
221
|
+
getUserRole$: () => Observable<string | null>;
|
|
218
222
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
inviteUsers: (documentUsers: Array<DocumentUser>) => void;
|
|
223
|
+
/**
|
|
224
|
+
* To check if plan is expired or not.
|
|
225
|
+
*/
|
|
226
|
+
isPlanExpired$: () => Observable<boolean>;
|
|
224
227
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
228
|
+
/**
|
|
229
|
+
* To get if the Velt is initialized or not.
|
|
230
|
+
* @returns Observable<boolean | undefined>
|
|
231
|
+
*/
|
|
232
|
+
getVeltInitState: () => Observable<boolean | undefined>;
|
|
229
233
|
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
234
|
+
/**
|
|
235
|
+
* To remove velt specific content from provided html content.
|
|
236
|
+
*/
|
|
233
237
|
removeVeltContent: (htmlContent: string) => string;
|
|
234
238
|
|
|
235
239
|
/**
|
|
@@ -263,10 +267,11 @@ export declare class Snippyly {
|
|
|
263
267
|
/**
|
|
264
268
|
* To update user contact list.
|
|
265
269
|
*/
|
|
266
|
-
updateContactList: (userContacts: UserContact[], config?: {merge: boolean}) => void;
|
|
270
|
+
updateContactList: (userContacts: UserContact[], config?: { merge: boolean }) => void;
|
|
267
271
|
|
|
268
272
|
/**
|
|
269
273
|
* To get document metadata.
|
|
274
|
+
* @deprecated This method is deprecated. Use `fetchDocuments` method instead.
|
|
270
275
|
*/
|
|
271
276
|
getDocumentMetadata: () => Observable<DocumentMetadata | null>;
|
|
272
277
|
|
|
@@ -274,4 +279,24 @@ export declare class Snippyly {
|
|
|
274
279
|
* To subscribe to core actions
|
|
275
280
|
*/
|
|
276
281
|
on: <T extends keyof CoreEventTypesMap>(action: T) => Observable<CoreEventTypesMap[T]>;
|
|
277
|
-
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* To set the ui state.
|
|
285
|
+
*/
|
|
286
|
+
setUiState: <T extends object>(uiState: T) => void;
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* To get the ui state.
|
|
290
|
+
*/
|
|
291
|
+
getUiState: <T extends object>() => Observable<T>;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* To enable logs.
|
|
295
|
+
*/
|
|
296
|
+
enableLogs: () => void;
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* To disable logs.
|
|
300
|
+
*/
|
|
301
|
+
disableLogs: () => void;
|
|
302
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { AnnotationProperty } from "./annotation-property.data.model";
|
|
2
|
+
import { CursorPosition } from "./cursor-position.data.model";
|
|
3
|
+
import { Location } from "./location.model";
|
|
4
|
+
import { PageInfo } from "./page-info.model";
|
|
5
|
+
import { TargetElement } from "./target-element.data.model";
|
|
6
|
+
import { User } from "./user.data.model";
|
|
7
|
+
export declare class ArrowAnnotation {
|
|
8
|
+
/**
|
|
9
|
+
* Unique identifier for the arrow pin annotation.
|
|
10
|
+
*
|
|
11
|
+
* Auto generated.
|
|
12
|
+
*/
|
|
13
|
+
annotationId: string;
|
|
14
|
+
/**
|
|
15
|
+
* The user who created this arrow pin annotation.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
from: User;
|
|
19
|
+
/**
|
|
20
|
+
* Color used for the arrow pin annotation.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
color?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Timestamp when the arrow annotation was last updated.
|
|
26
|
+
*
|
|
27
|
+
* Auto generated.
|
|
28
|
+
*/
|
|
29
|
+
lastUpdated?: any;
|
|
30
|
+
/**
|
|
31
|
+
* Target element of attached annotation.
|
|
32
|
+
*/
|
|
33
|
+
targetElement?: TargetElement | null;
|
|
34
|
+
position?: CursorPosition | null;
|
|
35
|
+
/**
|
|
36
|
+
* Unique location id generated from provided location
|
|
37
|
+
*/
|
|
38
|
+
locationId?: number | null;
|
|
39
|
+
/**
|
|
40
|
+
* Set location to identify user on sub document
|
|
41
|
+
*/
|
|
42
|
+
location?: Location | null;
|
|
43
|
+
type?: string;
|
|
44
|
+
props: AnnotationProperty;
|
|
45
|
+
/**
|
|
46
|
+
* To maintain index of current annotation in available list of annotations
|
|
47
|
+
* It will start from 1, so no need to add 1 in that.
|
|
48
|
+
*/
|
|
49
|
+
annotationIndex?: number;
|
|
50
|
+
pageInfo?: PageInfo;
|
|
51
|
+
}
|
|
@@ -9,8 +9,10 @@ import { User } from "./user.data.model";
|
|
|
9
9
|
export interface RequestOptions {
|
|
10
10
|
organizationId?: string;
|
|
11
11
|
documentId?: string;
|
|
12
|
+
folderId?: string;
|
|
12
13
|
filters?: any;
|
|
13
14
|
documentIds?: string[];
|
|
15
|
+
allDocuments?: boolean;
|
|
14
16
|
}
|
|
15
17
|
export interface UpdatePriorityRequest {
|
|
16
18
|
annotationId: string;
|
|
@@ -63,6 +65,9 @@ export interface CommentRequestQuery {
|
|
|
63
65
|
documentIds?: string[];
|
|
64
66
|
locationIds?: string[];
|
|
65
67
|
statusIds?: string[];
|
|
68
|
+
folderId?: string;
|
|
69
|
+
allDocuments?: boolean;
|
|
70
|
+
locationId?: string;
|
|
66
71
|
}
|
|
67
72
|
export interface SubscribeCommentAnnotationRequest {
|
|
68
73
|
annotationId: string;
|
|
@@ -161,3 +166,18 @@ export interface ToggleReactionRequest {
|
|
|
161
166
|
};
|
|
162
167
|
options?: RequestOptions;
|
|
163
168
|
}
|
|
169
|
+
export interface FetchCommentAnnotationsRequest {
|
|
170
|
+
createdAfter?: number;
|
|
171
|
+
createdBefore?: number;
|
|
172
|
+
updatedAfter?: number;
|
|
173
|
+
updatedBefore?: number;
|
|
174
|
+
statusIds?: string[];
|
|
175
|
+
order?: 'asc' | 'desc';
|
|
176
|
+
pageToken?: string;
|
|
177
|
+
allDocuments?: boolean;
|
|
178
|
+
pageSize?: number;
|
|
179
|
+
organizationId?: string;
|
|
180
|
+
locationId?: string;
|
|
181
|
+
documentIds?: string[];
|
|
182
|
+
folderId?: string;
|
|
183
|
+
}
|
|
@@ -77,6 +77,8 @@ export type CommentEventTypesMap = {
|
|
|
77
77
|
[CommentEventTypes.TOGGLE_REACTION]: ToggleReactionEvent;
|
|
78
78
|
[CommentEventTypes.COMMENT_SIDEBAR_DATA_INIT]: CommentSidebarDataInitEvent;
|
|
79
79
|
[CommentEventTypes.COMMENT_SIDEBAR_DATA_UPDATE]: CommentSidebarDataUpdateEvent;
|
|
80
|
+
[CommentEventTypes.AUTOCOMPLETE_SEARCH]: AutocompleteSearchEvent;
|
|
81
|
+
[CommentEventTypes.COMPOSER_CLICKED]: ComposerClickedEvent;
|
|
80
82
|
};
|
|
81
83
|
export interface AddAttachmentEvent {
|
|
82
84
|
annotationId: string;
|
|
@@ -129,6 +131,9 @@ export interface DeleteCommentAnnotationEvent {
|
|
|
129
131
|
export interface GetCommentAnnotationsResponse {
|
|
130
132
|
data: Record<string, CommentAnnotation[]> | null;
|
|
131
133
|
}
|
|
134
|
+
export interface FetchCommentAnnotationsResponse extends GetCommentAnnotationsResponse {
|
|
135
|
+
nextPageToken: string;
|
|
136
|
+
}
|
|
132
137
|
export interface GetCommentAnnotationsCountResponse {
|
|
133
138
|
data: Record<string, CommentAnnotationsCount> | null;
|
|
134
139
|
}
|
|
@@ -235,3 +240,13 @@ export interface CommentSidebarDataInitEvent extends VeltButtonClickEvent {
|
|
|
235
240
|
}
|
|
236
241
|
export interface CommentSidebarDataUpdateEvent extends VeltButtonClickEvent {
|
|
237
242
|
}
|
|
243
|
+
export interface AutocompleteSearchEvent {
|
|
244
|
+
event: KeyboardEvent | InputEvent | Event;
|
|
245
|
+
searchText: string;
|
|
246
|
+
type?: 'contact' | 'custom' | 'group';
|
|
247
|
+
metadata?: VeltEventMetadata;
|
|
248
|
+
}
|
|
249
|
+
export interface ComposerClickedEvent {
|
|
250
|
+
commentAnnotation?: CommentAnnotation;
|
|
251
|
+
metadata?: VeltEventMetadata;
|
|
252
|
+
}
|
|
@@ -6,3 +6,11 @@ export interface IUnreadCommentsCount {
|
|
|
6
6
|
count: number;
|
|
7
7
|
}
|
|
8
8
|
export type UnreadCommentsCount = IUnreadCommentsCount | null;
|
|
9
|
+
export interface TransformContext {
|
|
10
|
+
containerSelector: string;
|
|
11
|
+
transforms: {
|
|
12
|
+
scale: number;
|
|
13
|
+
transformOrigin: string;
|
|
14
|
+
inverseScale?: number;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
@@ -7,4 +7,19 @@ export declare class CursorPosition {
|
|
|
7
7
|
* Position left of cursor on viewer user's screen
|
|
8
8
|
*/
|
|
9
9
|
left: number;
|
|
10
|
+
/**
|
|
11
|
+
* Scale factor of the parent element in X direction
|
|
12
|
+
* Used for transform handling
|
|
13
|
+
*/
|
|
14
|
+
parentScaleX?: number;
|
|
15
|
+
/**
|
|
16
|
+
* Scale factor of the parent element in Y direction
|
|
17
|
+
* Used for transform handling
|
|
18
|
+
*/
|
|
19
|
+
parentScaleY?: number;
|
|
20
|
+
/**
|
|
21
|
+
* Transform context information
|
|
22
|
+
* Used to handle transforms properly
|
|
23
|
+
*/
|
|
24
|
+
transformContext?: any;
|
|
10
25
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DocumentMetadata } from "./document-metadata.model";
|
|
2
|
+
import { FolderMetadata } from "./folder-metadata.model";
|
|
3
|
+
export interface FetchDocumentsResponse {
|
|
4
|
+
data: Record<string, DocumentMetadata> | null;
|
|
5
|
+
}
|
|
6
|
+
export interface FetchFoldersResponse {
|
|
7
|
+
data: Record<string, FolderMetadata> | null;
|
|
8
|
+
}
|
|
@@ -6,6 +6,14 @@ export declare class DocumentMetadata {
|
|
|
6
6
|
* Unique document id generated from client document id
|
|
7
7
|
*/
|
|
8
8
|
documentId?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Folders
|
|
11
|
+
*/
|
|
12
|
+
folderId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Velt folder id
|
|
15
|
+
*/
|
|
16
|
+
veltFolderId?: string;
|
|
9
17
|
/**
|
|
10
18
|
* API key
|
|
11
19
|
*/
|
|
@@ -5,4 +5,27 @@ export interface Document {
|
|
|
5
5
|
}
|
|
6
6
|
export interface SetDocumentsRequestOptions {
|
|
7
7
|
organizationId?: string;
|
|
8
|
+
folderId?: string;
|
|
9
|
+
allDocuments?: boolean;
|
|
10
|
+
locationId?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface FetchDocumentsRequest {
|
|
13
|
+
organizationId?: string;
|
|
14
|
+
documentIds?: string[];
|
|
15
|
+
folderId?: string;
|
|
16
|
+
allDocuments?: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface FetchFoldersRequest {
|
|
19
|
+
organizationId?: string;
|
|
20
|
+
folderId?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface FolderConfig {
|
|
23
|
+
folderId?: string;
|
|
24
|
+
allDocuments?: boolean;
|
|
25
|
+
locationId?: string;
|
|
26
|
+
veltFolderId?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface OrganizationConfig {
|
|
29
|
+
organizationId: string;
|
|
30
|
+
clientOrganizationId: string;
|
|
8
31
|
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export declare class FolderMetadata {
|
|
2
|
+
folderId?: string;
|
|
3
|
+
/**
|
|
4
|
+
* Velt folder id
|
|
5
|
+
*/
|
|
6
|
+
veltFolderId?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Parent folder id
|
|
9
|
+
*/
|
|
10
|
+
parentFolderId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Velt parent folder id
|
|
13
|
+
*/
|
|
14
|
+
veltParentFolderId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Created at
|
|
17
|
+
*/
|
|
18
|
+
createdAt?: number;
|
|
19
|
+
/**
|
|
20
|
+
* Last updated
|
|
21
|
+
*/
|
|
22
|
+
lastUpdated?: number;
|
|
23
|
+
/**
|
|
24
|
+
* API key
|
|
25
|
+
*/
|
|
26
|
+
apiKey?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Organization id
|
|
29
|
+
*/
|
|
30
|
+
organizationId?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Client organization id
|
|
33
|
+
*/
|
|
34
|
+
clientOrganizationId?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Folder name
|
|
37
|
+
*/
|
|
38
|
+
folderName?: string;
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { BaseMetadata } from "./base-metadata.data.model";
|
|
2
|
+
import { CommentAnnotation, GhostComment, InlineCommentSectionConfig } from "./comment-annotation.data.model";
|
|
3
|
+
import { CursorPosition } from "./cursor-position.data.model";
|
|
4
|
+
import { Location } from "./location.model";
|
|
5
|
+
import { TargetElement } from "./target-element.data.model";
|
|
6
|
+
import { TargetTextRange } from "./target-text-range.data.model";
|
|
7
|
+
import { User } from "./user.data.model";
|
|
8
|
+
export declare class MultiThreadCommentAnnotation {
|
|
9
|
+
/**
|
|
10
|
+
* The id of the annotation.
|
|
11
|
+
*/
|
|
12
|
+
annotationId: string;
|
|
13
|
+
/**
|
|
14
|
+
* The id of the area annotation.
|
|
15
|
+
*/
|
|
16
|
+
areaAnnotationId?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The target element of the annotation.
|
|
19
|
+
*/
|
|
20
|
+
targetElement?: TargetElement | null;
|
|
21
|
+
/**
|
|
22
|
+
* The id of the target element.
|
|
23
|
+
*/
|
|
24
|
+
targetElementId?: string | null;
|
|
25
|
+
/**
|
|
26
|
+
* Selected text range of comment annotation
|
|
27
|
+
*/
|
|
28
|
+
targetTextRange?: TargetTextRange | null;
|
|
29
|
+
/**
|
|
30
|
+
* The id of the target inline comment element.
|
|
31
|
+
*/
|
|
32
|
+
targetInlineCommentElementId?: string;
|
|
33
|
+
/**
|
|
34
|
+
* The inline comment section config.
|
|
35
|
+
*/
|
|
36
|
+
inlineCommentSectionConfig?: InlineCommentSectionConfig;
|
|
37
|
+
commentAnnotations?: {
|
|
38
|
+
[commentAnnotationId: string]: boolean;
|
|
39
|
+
};
|
|
40
|
+
commentAnnotationsMap?: {
|
|
41
|
+
[commentAnnotationId: string]: CommentAnnotation;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Unique location id generated from provided location
|
|
45
|
+
*/
|
|
46
|
+
locationId?: number | null;
|
|
47
|
+
/**
|
|
48
|
+
* Set location to identify user on sub document
|
|
49
|
+
*/
|
|
50
|
+
location?: Location | null;
|
|
51
|
+
position?: CursorPosition | null;
|
|
52
|
+
ghostComment?: GhostComment | null;
|
|
53
|
+
from: User;
|
|
54
|
+
type: string;
|
|
55
|
+
isDraft?: boolean;
|
|
56
|
+
sourceId?: string;
|
|
57
|
+
metadata?: MultiThreadMetadata;
|
|
58
|
+
}
|
|
59
|
+
export declare class MultiThreadMetadata extends BaseMetadata {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
}
|
|
@@ -88,6 +88,11 @@ export declare class NotificationRawData {
|
|
|
88
88
|
[key: string]: any;
|
|
89
89
|
};
|
|
90
90
|
displayBodyMessage?: string;
|
|
91
|
+
displayBodyMessageTemplate?: string;
|
|
92
|
+
displayBodyMessageTemplateData?: {
|
|
93
|
+
users?: User[];
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
};
|
|
91
96
|
customData?: any;
|
|
92
97
|
notifyUsers?: {
|
|
93
98
|
[email: string]: boolean;
|
|
@@ -127,6 +132,17 @@ export declare class Notification {
|
|
|
127
132
|
* Notification body message
|
|
128
133
|
*/
|
|
129
134
|
displayBodyMessage?: string;
|
|
135
|
+
/**
|
|
136
|
+
* Display body message template
|
|
137
|
+
*/
|
|
138
|
+
displayBodyMessageTemplate?: string;
|
|
139
|
+
/**
|
|
140
|
+
* Display body message template data
|
|
141
|
+
*/
|
|
142
|
+
displayBodyMessageTemplateData?: {
|
|
143
|
+
users?: User[];
|
|
144
|
+
[key: string]: any;
|
|
145
|
+
};
|
|
130
146
|
/**
|
|
131
147
|
* Display message template
|
|
132
148
|
*/
|
|
@@ -164,4 +164,10 @@ export declare class RecorderData {
|
|
|
164
164
|
assets: RecorderDataAsset[];
|
|
165
165
|
transcription: RecorderDataTranscription;
|
|
166
166
|
}
|
|
167
|
+
export interface RecorderRequestQuery {
|
|
168
|
+
recorderIds: string[];
|
|
169
|
+
}
|
|
170
|
+
export interface GetRecordingDataResponse {
|
|
171
|
+
data: Record<string, RecorderData> | null;
|
|
172
|
+
}
|
|
167
173
|
export {};
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
import { RecorderEventTypes } from "../../utils/enums";
|
|
2
|
+
import { RecorderData } from "./recorder-annotation.data.model";
|
|
2
3
|
export interface TranscriptionDoneEvent {
|
|
3
|
-
|
|
4
|
-
id?: string;
|
|
5
|
-
tag?: string;
|
|
6
|
-
type?: string;
|
|
7
|
-
thumbnailUrl?: string;
|
|
8
|
-
thumbnailWithPlayIconUrl?: string;
|
|
9
|
-
videoUrl?: string;
|
|
10
|
-
audioUrl?: string;
|
|
11
|
-
videoPlayerUrl?: string;
|
|
12
|
-
getThumbnailTag?: (url?: string) => string;
|
|
4
|
+
data: Record<string, RecorderData> | null;
|
|
13
5
|
}
|
|
14
6
|
export type RecorderEventTypesMap = {
|
|
15
7
|
[RecorderEventTypes.TRANSCRIPTION_DONE]: TranscriptionDoneEvent;
|
|
@@ -8,7 +8,7 @@ import { AutocompleteData } from "../data/autocomplete.data.model";
|
|
|
8
8
|
import { CommentSidebarCustomActionEventData, CommentSidebarData, CommentSidebarDataOptions } from "../data/comment-sidebar-config.model";
|
|
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 } from "../data/comment-actions.data.model";
|
|
11
|
-
import { UnreadCommentsCount } from "../data/comment-utils.data.model";
|
|
11
|
+
import { UnreadCommentsCount, TransformContext } from "../data/comment-utils.data.model";
|
|
12
12
|
export declare class CommentElement {
|
|
13
13
|
/**
|
|
14
14
|
* Subscribe to comments on the current document.
|
|
@@ -1073,6 +1073,21 @@ export declare class CommentElement {
|
|
|
1073
1073
|
*/
|
|
1074
1074
|
public disableReadOnly: () => void;
|
|
1075
1075
|
|
|
1076
|
+
/**
|
|
1077
|
+
* To enable custom autocomplete search
|
|
1078
|
+
*/
|
|
1079
|
+
public enableCustomAutocompleteSearch: () => void;
|
|
1080
|
+
|
|
1081
|
+
/**
|
|
1082
|
+
* To disable custom autocomplete search
|
|
1083
|
+
*/
|
|
1084
|
+
public disableCustomAutocompleteSearch: () => void;
|
|
1085
|
+
|
|
1086
|
+
/**
|
|
1087
|
+
* To set transform context
|
|
1088
|
+
*/
|
|
1089
|
+
public setTransformContext: (transformContext: TransformContext) => void;
|
|
1090
|
+
|
|
1076
1091
|
constructor();
|
|
1077
1092
|
/**
|
|
1078
1093
|
* Subscribe to comments on the current document.
|
|
@@ -2127,4 +2142,19 @@ export declare class CommentElement {
|
|
|
2127
2142
|
* To disable read only
|
|
2128
2143
|
*/
|
|
2129
2144
|
private _disableReadOnly;
|
|
2145
|
+
|
|
2146
|
+
/**
|
|
2147
|
+
* To enable custom autocomplete search
|
|
2148
|
+
*/
|
|
2149
|
+
private _enableCustomAutocompleteSearch;
|
|
2150
|
+
|
|
2151
|
+
/**
|
|
2152
|
+
* To disable custom autocomplete search
|
|
2153
|
+
*/
|
|
2154
|
+
private _disableCustomAutocompleteSearch;
|
|
2155
|
+
|
|
2156
|
+
/**
|
|
2157
|
+
* To set transform context
|
|
2158
|
+
*/
|
|
2159
|
+
private _setTransformContext;
|
|
2130
2160
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
|
-
import { RecorderData } from "../data/recorder-annotation.data.model";
|
|
3
|
+
import { RecorderData, RecorderRequestQuery, GetRecordingDataResponse } from "../data/recorder-annotation.data.model";
|
|
4
4
|
import { RecorderEventTypesMap } from "../data/recorder-events.data.model";
|
|
5
5
|
|
|
6
6
|
export declare class RecorderElement {
|
|
@@ -21,6 +21,7 @@ export declare class RecorderElement {
|
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* To get recording data by recorder id
|
|
24
|
+
* @deprecated Use getRecordingData() method instead
|
|
24
25
|
*/
|
|
25
26
|
getRecordingDataByRecorderId: (recorderId: string) => Observable<RecorderData | null>;
|
|
26
27
|
|
|
@@ -39,6 +40,11 @@ export declare class RecorderElement {
|
|
|
39
40
|
*/
|
|
40
41
|
public on: <T extends keyof RecorderEventTypesMap>(action: T) => Observable<RecorderEventTypesMap[T]>;
|
|
41
42
|
|
|
43
|
+
/**
|
|
44
|
+
* To get recording data by recorder ids
|
|
45
|
+
*/
|
|
46
|
+
getRecordingData: (query: RecorderRequestQuery) => Promise<GetRecordingDataResponse>;
|
|
47
|
+
|
|
42
48
|
constructor();
|
|
43
49
|
|
|
44
50
|
private _initRecording;
|
|
@@ -57,6 +63,7 @@ export declare class RecorderElement {
|
|
|
57
63
|
|
|
58
64
|
/**
|
|
59
65
|
* To get recording data by recorder id
|
|
66
|
+
* @deprecated Use getRecordingData() method instead
|
|
60
67
|
*/
|
|
61
68
|
private _getRecordingDataByRecorderId;
|
|
62
69
|
|
|
@@ -74,4 +81,9 @@ export declare class RecorderElement {
|
|
|
74
81
|
* Subscribe to recorder actions
|
|
75
82
|
*/
|
|
76
83
|
private _on;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* To get recording data by recorder ids
|
|
87
|
+
*/
|
|
88
|
+
private _getRecordingData;
|
|
77
89
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -8,10 +8,13 @@ export declare class Constants {
|
|
|
8
8
|
static LOCALSTORAGE_DATA_ID: string;
|
|
9
9
|
static NO_ORGANIZATION_ID: string;
|
|
10
10
|
static DEFAULT_QUERY_HASH: string;
|
|
11
|
+
static LISTENER_BATCH_SIZE: number;
|
|
11
12
|
static FIREBASE_PARTIAL_PATH_ORGANIZATIONS: string;
|
|
13
|
+
static FIREBASE_PARTIAL_PATH_FOLDERS: string;
|
|
12
14
|
static FIREBASE_PARTIAL_PATH_DOCS: string;
|
|
13
15
|
static FIREBASE_PARTIAL_PATH_PRESENCE: string;
|
|
14
16
|
static FIREBASE_PARTIAL_PATH_ORGANIZATION_USERS: string;
|
|
17
|
+
static FIREBASE_PARTIAL_PATH_FOLDER_USERS: string;
|
|
15
18
|
static FIREBASE_PARTIAL_PATH_DOCUMENT_USERS: string;
|
|
16
19
|
static FIREBASE_PARTIAL_PATH_CURSOR: string;
|
|
17
20
|
static FIREBASE_PARTIAL_PATH_ARROW: string;
|
|
@@ -242,6 +245,7 @@ export declare class Constants {
|
|
|
242
245
|
VELT_COMMENT_DIALOG_BODY_THREAD_CARD: string;
|
|
243
246
|
VELT_COMMENT_DIALOG_PRIVATE_BANNER: string;
|
|
244
247
|
VELT_COMMENT_COMPOSER: string;
|
|
248
|
+
VELT_SKELETON_LOADER: string;
|
|
245
249
|
VELT_SHADOW_DOM_INTERNAL: string;
|
|
246
250
|
};
|
|
247
251
|
static ATTRIBUTES: {
|
|
@@ -252,6 +256,7 @@ export declare class Constants {
|
|
|
252
256
|
TARGET_ELEMENT_ID: string;
|
|
253
257
|
VELT_ID: string;
|
|
254
258
|
VELT_ELEMENT: string;
|
|
259
|
+
VELT_SCREEN_RECORDER_PANEL: string;
|
|
255
260
|
VELT_SOURCE_ID: string;
|
|
256
261
|
VELT_ANNOTATION_ID: string;
|
|
257
262
|
VELT_ANNOTATION_IDS: string;
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export declare const CommentEventTypes: {
|
|
|
41
41
|
readonly TOGGLE_REACTION: "toggleReaction";
|
|
42
42
|
readonly COMMENT_SIDEBAR_DATA_INIT: "commentSidebarDataInit";
|
|
43
43
|
readonly COMMENT_SIDEBAR_DATA_UPDATE: "commentSidebarDataUpdate";
|
|
44
|
+
readonly AUTOCOMPLETE_SEARCH: "autocompleteSearch";
|
|
45
|
+
readonly COMPOSER_CLICKED: "composerClicked";
|
|
44
46
|
};
|
|
45
47
|
export declare const RecorderEventTypes: {
|
|
46
48
|
readonly TRANSCRIPTION_DONE: "transcriptionDone";
|
package/models.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './app/utils/enums';
|
|
2
2
|
export * from './app/models/data/attachment.model';
|
|
3
3
|
export * from './app/models/data/area-annotation.data.model';
|
|
4
|
+
export * from './app/models/data/arrow-annotation.data.model';
|
|
4
5
|
export * from './app/models/data/base-metadata.data.model';
|
|
5
6
|
export * from './app/models/data/button.data.model';
|
|
6
7
|
export * from './app/models/data/chatgpt.data.model';
|
|
@@ -17,6 +18,7 @@ export * from './app/models/data/custom-css.data.model';
|
|
|
17
18
|
export * from './app/models/data/custom-chip-dropdown.data.model';
|
|
18
19
|
export * from './app/models/data/device-info.model';
|
|
19
20
|
export * from './app/models/data/document.data.model';
|
|
21
|
+
export * from './app/models/data/document-events.data.model';
|
|
20
22
|
export * from './app/models/data/document-iam.data.model';
|
|
21
23
|
export * from './app/models/data/document-metadata.model';
|
|
22
24
|
export * from './app/models/data/document-paths.data.model';
|
|
@@ -28,6 +30,7 @@ export * from './app/models/data/localstorage.data.model';
|
|
|
28
30
|
export * from './app/models/data/location-metadata.model';
|
|
29
31
|
export * from './app/models/data/location.model';
|
|
30
32
|
export * from './app/models/data/media-preview-config.data.model';
|
|
33
|
+
export * from './app/models/data/multi-thread.data.model';
|
|
31
34
|
export * from './app/models/data/notification.model';
|
|
32
35
|
export * from './app/models/data/page-info.model';
|
|
33
36
|
export * from './app/models/data/permission.data.model';
|
|
@@ -63,3 +66,4 @@ export * from './app/models/data/organization-groups.data.model';
|
|
|
63
66
|
export * from './app/models/data/organization-metadata.model';
|
|
64
67
|
export * from './app/models/data/user-organization.data.model';
|
|
65
68
|
export * from './app/models/data/event-metadata.data.model';
|
|
69
|
+
export * from './app/models/data/user-resolver.data.model';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/types",
|
|
3
|
-
"version": "4.0.0
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|