@veltdev/sdk-staging 5.0.2-beta.8 → 5.0.2-beta.80
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 +21 -2
- package/app/models/data/activity-resolver.data.model.d.ts +27 -0
- package/app/models/data/activity.data.model.d.ts +181 -0
- package/app/models/data/agent-suggestion.data.model.d.ts +57 -0
- package/app/models/data/attachment-resolver.data.model.d.ts +2 -2
- package/app/models/data/attachment.model.d.ts +1 -0
- package/app/models/data/autocomplete.data.model.d.ts +4 -3
- package/app/models/data/base-metadata.data.model.d.ts +3 -0
- package/app/models/data/comment-actions.data.model.d.ts +14 -0
- package/app/models/data/comment-annotation.data.model.d.ts +62 -2
- package/app/models/data/comment-events.data.model.d.ts +27 -2
- package/app/models/data/comment-resolver.data.model.d.ts +3 -3
- package/app/models/data/comment-sidebar-config.model.d.ts +2 -0
- package/app/models/data/config.data.model.d.ts +26 -0
- package/app/models/data/core-events.data.model.d.ts +74 -1
- package/app/models/data/crdt.data.model.d.ts +51 -0
- package/app/models/data/document-paths.data.model.d.ts +1 -0
- package/app/models/data/document.data.model.d.ts +2 -0
- package/app/models/data/live-state-events.data.model.d.ts +6 -0
- package/app/models/data/notification-resolver.data.model.d.ts +39 -0
- package/app/models/data/notification.model.d.ts +4 -0
- package/app/models/data/presence-user.data.model.d.ts +5 -0
- package/app/models/data/provider.data.model.d.ts +8 -1
- package/app/models/data/reaction-resolver.data.model.d.ts +3 -3
- package/app/models/data/recorder-annotation.data.model.d.ts +11 -0
- package/app/models/data/recorder-events.data.model.d.ts +3 -0
- package/app/models/data/recorder-resolver.data.model.d.ts +58 -0
- package/app/models/data/resolver.data.model.d.ts +1 -0
- package/app/models/data/rewriter-events.data.model.d.ts +44 -0
- package/app/models/data/suggestion-events.data.model.d.ts +57 -0
- package/app/models/data/suggestion.data.model.d.ts +267 -0
- package/app/models/data/user-resolver.data.model.d.ts +17 -1
- package/app/models/data/user.data.model.d.ts +3 -0
- package/app/models/element/activity-element.model.d.ts +33 -0
- package/app/models/element/comment-element.model.d.ts +48 -8
- package/app/models/element/crdt-element.model.d.ts +88 -1
- package/app/models/element/cross-organization-config.model.d.ts +17 -0
- package/app/models/element/notification-element.model.d.ts +15 -0
- package/app/models/element/presence-element.model.d.ts +25 -0
- package/app/models/element/rewriter-element.model.d.ts +20 -0
- package/app/models/element/suggestion-element.model.d.ts +180 -0
- package/app/utils/constants.d.ts +226 -0
- package/app/utils/enums.d.ts +41 -4
- package/models.d.ts +8 -0
- package/package.json +1 -1
- package/types.d.ts +3 -0
- package/velt.css +1 -1
- package/velt.js +132 -143
|
@@ -9,6 +9,16 @@ export declare class RewriterElement {
|
|
|
9
9
|
* To disable rewriter feature
|
|
10
10
|
*/
|
|
11
11
|
disableRewriter: () => void;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* To enable the default rewriter UI on text selection
|
|
15
|
+
*/
|
|
16
|
+
enableDefaultUI: () => void;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* To disable the default rewriter UI on text selection
|
|
20
|
+
*/
|
|
21
|
+
disableDefaultUI: () => void;
|
|
12
22
|
constructor();
|
|
13
23
|
|
|
14
24
|
/**
|
|
@@ -20,4 +30,14 @@ export declare class RewriterElement {
|
|
|
20
30
|
* To disable rewriter feature
|
|
21
31
|
*/
|
|
22
32
|
private _disableRewriter;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* To enable the default rewriter UI on text selection
|
|
36
|
+
*/
|
|
37
|
+
private _enableDefaultUI;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* To disable the default rewriter UI on text selection
|
|
41
|
+
*/
|
|
42
|
+
private _disableDefaultUI;
|
|
23
43
|
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
import { Observable } from "rxjs";
|
|
3
|
+
import { SuggestionEventType } from "../../utils/enums";
|
|
4
|
+
import { SuggestionEventTypesMap } from "../data/suggestion-events.data.model";
|
|
5
|
+
import { CommitSuggestionConfig, EnableSuggestionModeConfig, RegisterTargetConfig, Suggestion, SuggestionGetSuggestionsFilter } from "../data/suggestion.data.model";
|
|
6
|
+
|
|
7
|
+
export declare class SuggestionElement {
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Turn on suggestion mode for this user/session and (optionally) register
|
|
11
|
+
* the onTargetEditStart / onTargetEditCommit callbacks the SDK invokes
|
|
12
|
+
* during the auto-detect edit lifecycle.
|
|
13
|
+
*
|
|
14
|
+
* Re-calling with a new config replaces the previous callbacks.
|
|
15
|
+
*/
|
|
16
|
+
enableSuggestionMode: (config?: EnableSuggestionModeConfig) => void;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Turn off suggestion mode and clear any registered callbacks.
|
|
20
|
+
*/
|
|
21
|
+
disableSuggestionMode: () => void;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Synchronous read of the current enable flag.
|
|
25
|
+
*/
|
|
26
|
+
isSuggestionModeEnabled: () => boolean;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Reactive enable-flag stream; deduplicated.
|
|
30
|
+
*/
|
|
31
|
+
isSuggestionModeEnabled$: () => Observable<boolean>;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Register a getter that returns the current value of a tagged target.
|
|
35
|
+
* Required for non-primitive (wrapper) targets — the SDK calls this on
|
|
36
|
+
* focus to snapshot the pre-edit value, and again on commit for the diff.
|
|
37
|
+
*
|
|
38
|
+
* The getter must reflect edit-time state (typically read from the DOM),
|
|
39
|
+
* not the persisted customer state. See `RegisterTargetConfig`.
|
|
40
|
+
*/
|
|
41
|
+
registerTarget: <T = unknown>(config: RegisterTargetConfig<T>) => void;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Drop the registered getter for a target.
|
|
45
|
+
*/
|
|
46
|
+
unregisterTarget: (targetId: string) => void;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Manually capture the current value as the snapshot for a target.
|
|
50
|
+
* Use for non-focusable elements (custom widgets, virtualized rows)
|
|
51
|
+
* where the auto-focus snapshot does not fire.
|
|
52
|
+
*/
|
|
53
|
+
startSuggestion: (targetId: string) => void;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Programmatically commit a suggestion. Resolves with the new annotation id.
|
|
57
|
+
* Rejects with one of: INVALID_CONFIG, MODE_NOT_SUGGESTING,
|
|
58
|
+
* TARGET_NOT_REGISTERED, NO_GETTER_FOR_COMPLEX, NO_CHANGE_TO_SUGGEST,
|
|
59
|
+
* SNAPSHOT_FAILED.
|
|
60
|
+
*/
|
|
61
|
+
commitSuggestion: <T = unknown>(config: CommitSuggestionConfig<T>) => Promise<{ id: string }>;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Synchronous read of all suggestions on the current document, optionally filtered.
|
|
65
|
+
*/
|
|
66
|
+
getSuggestions: (filter?: SuggestionGetSuggestionsFilter) => Suggestion[];
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Reactive variant of getSuggestions. Re-emits on every annotation change,
|
|
70
|
+
* deduplicated via the SDK's standard distinct-until-changed comparator.
|
|
71
|
+
*/
|
|
72
|
+
getSuggestions$: (filter?: SuggestionGetSuggestionsFilter) => Observable<Suggestion[]>;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Newest pending suggestion for a target, or null. Convenience for
|
|
76
|
+
* pending-overlay UX patterns where each input shows the proposed
|
|
77
|
+
* value while a suggestion is awaiting resolution.
|
|
78
|
+
*/
|
|
79
|
+
getPendingSuggestion: <T = unknown>(targetId: string) => Suggestion<T> | null;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Reactive variant of getPendingSuggestion.
|
|
83
|
+
*/
|
|
84
|
+
getPendingSuggestion$: <T = unknown>(targetId: string) => Observable<Suggestion<T> | null>;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Subscribe to a suggestion event. Customers call `.subscribe(handler)`
|
|
88
|
+
* on the returned Observable. Event names: 'suggestionCreated',
|
|
89
|
+
* 'suggestionApproved', 'suggestionRejected', 'suggestionStale',
|
|
90
|
+
* 'targetEditStart', 'targetEditCommit'.
|
|
91
|
+
*/
|
|
92
|
+
on: <T extends SuggestionEventType>(action: T) => Observable<SuggestionEventTypesMap[T]>;
|
|
93
|
+
|
|
94
|
+
constructor();
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Turn on suggestion mode for this user/session and (optionally) register
|
|
98
|
+
* the onTargetEditStart / onTargetEditCommit callbacks the SDK invokes
|
|
99
|
+
* during the auto-detect edit lifecycle.
|
|
100
|
+
*
|
|
101
|
+
* Re-calling with a new config replaces the previous callbacks.
|
|
102
|
+
*/
|
|
103
|
+
private _enableSuggestionMode;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Turn off suggestion mode and clear any registered callbacks.
|
|
107
|
+
*/
|
|
108
|
+
private _disableSuggestionMode;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Synchronous read of the current enable flag.
|
|
112
|
+
*/
|
|
113
|
+
private _isSuggestionModeEnabled;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Reactive enable-flag stream; deduplicated.
|
|
117
|
+
*/
|
|
118
|
+
private _isSuggestionModeEnabled$;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Register a getter that returns the current value of a tagged target.
|
|
122
|
+
* Required for non-primitive (wrapper) targets — the SDK calls this on
|
|
123
|
+
* focus to snapshot the pre-edit value, and again on commit for the diff.
|
|
124
|
+
*
|
|
125
|
+
* The getter must reflect edit-time state (typically read from the DOM),
|
|
126
|
+
* not the persisted customer state. See `RegisterTargetConfig`.
|
|
127
|
+
*/
|
|
128
|
+
private _registerTarget;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Drop the registered getter for a target.
|
|
132
|
+
*/
|
|
133
|
+
private _unregisterTarget;
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Manually capture the current value as the snapshot for a target.
|
|
137
|
+
* Use for non-focusable elements (custom widgets, virtualized rows)
|
|
138
|
+
* where the auto-focus snapshot does not fire.
|
|
139
|
+
*/
|
|
140
|
+
private _startSuggestion;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Programmatically commit a suggestion. Resolves with the new annotation id.
|
|
144
|
+
* Rejects with one of: INVALID_CONFIG, MODE_NOT_SUGGESTING,
|
|
145
|
+
* TARGET_NOT_REGISTERED, NO_GETTER_FOR_COMPLEX, NO_CHANGE_TO_SUGGEST,
|
|
146
|
+
* SNAPSHOT_FAILED.
|
|
147
|
+
*/
|
|
148
|
+
private _commitSuggestion;
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Synchronous read of all suggestions on the current document, optionally filtered.
|
|
152
|
+
*/
|
|
153
|
+
private _getSuggestions;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Reactive variant of getSuggestions. Re-emits on every annotation change,
|
|
157
|
+
* deduplicated via the SDK's standard distinct-until-changed comparator.
|
|
158
|
+
*/
|
|
159
|
+
private _getSuggestions$;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Newest pending suggestion for a target, or null. Convenience for
|
|
163
|
+
* pending-overlay UX patterns where each input shows the proposed
|
|
164
|
+
* value while a suggestion is awaiting resolution.
|
|
165
|
+
*/
|
|
166
|
+
private _getPendingSuggestion;
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Reactive variant of getPendingSuggestion.
|
|
170
|
+
*/
|
|
171
|
+
private _getPendingSuggestion$;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Subscribe to a suggestion event. Customers call `.subscribe(handler)`
|
|
175
|
+
* on the returned Observable. Event names: 'suggestionCreated',
|
|
176
|
+
* 'suggestionApproved', 'suggestionRejected', 'suggestionStale',
|
|
177
|
+
* 'targetEditStart', 'targetEditCommit'.
|
|
178
|
+
*/
|
|
179
|
+
private _on;
|
|
180
|
+
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare class Constants {
|
|
|
37
37
|
static FIREBASE_PARTIAL_PATH_NOTIFICATION_USERS: string;
|
|
38
38
|
static FIREBASE_PARTIAL_PATH_DOC_NOTIFICATION: string;
|
|
39
39
|
static FIREBASE_PARTIAL_PATH_USER_NOTIFICATION: string;
|
|
40
|
+
static FIREBASE_PARTIAL_PATH_USER_NOTIFICATION_INDEX: string;
|
|
40
41
|
static FIREBASE_PARTIAL_PATH_GLOBAL: string;
|
|
41
42
|
static FIREBASE_PARTIAL_PATH_LOGINS: string;
|
|
42
43
|
static FIREBASE_PARTIAL_PATH_METADATA: string;
|
|
@@ -57,6 +58,8 @@ export declare class Constants {
|
|
|
57
58
|
static FIREBASE_PARTIAL_PATH_NOTIFICATIONS: string;
|
|
58
59
|
static FIREBASE_PARTIAL_PATH_ORGANIZATION_NOTIFICATIONS: string;
|
|
59
60
|
static FIREBASE_PARTIAL_PATH_LAST_NOTIFICATION_TIMESTAMP: string;
|
|
61
|
+
static FIREBASE_PARTIAL_PATH_ACTIVITIES: string;
|
|
62
|
+
static FIREBASE_PARTIAL_PATH_LAST_ACTIVITY_TIMESTAMP: string;
|
|
60
63
|
static FIREBASE_PARTIAL_PATH_HEARTBEAT: string;
|
|
61
64
|
static FIREBASE_PARTIAL_PATH_HEARTBEAT_BY_DOCUMENT: string;
|
|
62
65
|
static FIREBASE_PARTIAL_PATH_USERS: string;
|
|
@@ -206,13 +209,76 @@ export declare class Constants {
|
|
|
206
209
|
VELT_TEXT_HIGHLIGHT: string;
|
|
207
210
|
VELT_COMMENT_TEXT_PORTAL: string;
|
|
208
211
|
VELT_COMMENTS_SIDEBAR: string;
|
|
212
|
+
VELT_COMMENTS_SIDEBAR_V2: string;
|
|
213
|
+
VELT_COMMENT_SIDEBAR_SKELETON_V2: string;
|
|
214
|
+
VELT_COMMENT_SIDEBAR_PANEL_V2: string;
|
|
215
|
+
VELT_COMMENT_SIDEBAR_LIST_V2: string;
|
|
216
|
+
VELT_COMMENT_SIDEBAR_LIST_ITEM_V2: string;
|
|
217
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_V2: string;
|
|
218
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_V2: string;
|
|
219
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_CONTENT_V2: string;
|
|
220
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_V2: string;
|
|
221
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_INDICATOR_V2: string;
|
|
222
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL_V2: string;
|
|
223
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_V2: string;
|
|
224
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_TRIGGER_V2: string;
|
|
225
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_V2: string;
|
|
226
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_READ_V2: string;
|
|
227
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_RESOLVED_V2: string;
|
|
228
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_V2: string;
|
|
229
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_TRIGGER_V2: string;
|
|
230
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_V2: string;
|
|
231
|
+
VELT_COMMENT_SIDEBAR_HEADER_V2: string;
|
|
232
|
+
VELT_COMMENT_SIDEBAR_CLOSE_BUTTON_V2: string;
|
|
233
|
+
VELT_COMMENT_SIDEBAR_EMPTY_PLACEHOLDER_V2: string;
|
|
234
|
+
VELT_COMMENT_SIDEBAR_RESET_FILTER_BUTTON_V2: string;
|
|
235
|
+
VELT_COMMENT_SIDEBAR_PAGE_MODE_COMPOSER_V2: string;
|
|
236
|
+
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_V2: string;
|
|
237
|
+
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_BACK_BUTTON_V2: string;
|
|
238
|
+
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_DIALOG_CONTAINER_V2: string;
|
|
209
239
|
VELT_COMMENT_BUBBLE: string;
|
|
240
|
+
VELT_COMMENT_BUBBLE_AVATAR: string;
|
|
241
|
+
VELT_COMMENT_BUBBLE_COMMENTS_COUNT: string;
|
|
242
|
+
VELT_COMMENT_BUBBLE_UNREAD_ICON: string;
|
|
210
243
|
VELT_COMMENT_THREAD: string;
|
|
211
244
|
VELT_COMMENT_PIN: string;
|
|
245
|
+
VELT_COMMENT_PIN_NUMBER: string;
|
|
246
|
+
VELT_COMMENT_PIN_INDEX: string;
|
|
247
|
+
VELT_COMMENT_PIN_TRIANGLE: string;
|
|
248
|
+
VELT_COMMENT_PIN_PRIVATE_COMMENT_INDICATOR: string;
|
|
249
|
+
VELT_COMMENT_PIN_GHOST_COMMENT_INDICATOR: string;
|
|
250
|
+
VELT_COMMENT_PIN_UNREAD_COMMENT_INDICATOR: string;
|
|
251
|
+
VELT_SIDEBAR_BUTTON_ICON: string;
|
|
252
|
+
VELT_SIDEBAR_BUTTON_COMMENTS_COUNT: string;
|
|
253
|
+
VELT_SIDEBAR_BUTTON_UNREAD_ICON: string;
|
|
212
254
|
VELT_COMMENT_TEXT: string;
|
|
213
255
|
VELT_CHART_COMMENT: string;
|
|
214
256
|
VELT_CANVAS_COMMENT: string;
|
|
215
257
|
VELT_INLINE_COMMENTS_SECTION: string;
|
|
258
|
+
VELT_INLINE_COMMENTS_SECTION_SKELETON: string;
|
|
259
|
+
VELT_INLINE_COMMENTS_SECTION_PANEL: string;
|
|
260
|
+
VELT_INLINE_COMMENTS_SECTION_LIST: string;
|
|
261
|
+
VELT_INLINE_COMMENTS_SECTION_COMPOSER_CONTAINER: string;
|
|
262
|
+
VELT_INLINE_COMMENTS_SECTION_COMMENT_COUNT: string;
|
|
263
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN: string;
|
|
264
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER: string;
|
|
265
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_NAME: string;
|
|
266
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_ICON: string;
|
|
267
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT: string;
|
|
268
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM: string;
|
|
269
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_ICON: string;
|
|
270
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_TICK: string;
|
|
271
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_NAME: string;
|
|
272
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN: string;
|
|
273
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER: string;
|
|
274
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_NAME: string;
|
|
275
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_ARROW: string;
|
|
276
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT: string;
|
|
277
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST: string;
|
|
278
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM: string;
|
|
279
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_CHECKBOX: string;
|
|
280
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL: string;
|
|
281
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_APPLY_BUTTON: string;
|
|
216
282
|
VELT_COMMENTS_MINIMAP: string;
|
|
217
283
|
VELT_HIGHLIGHT_USER_TEXT: string;
|
|
218
284
|
VELT_AUDIO_HUDDLE: string;
|
|
@@ -240,15 +306,170 @@ export declare class Constants {
|
|
|
240
306
|
VELT_INLINE_REACTIONS_SECTION: string;
|
|
241
307
|
VELT_VIEW_ANALYTICS: string;
|
|
242
308
|
VELT_NOTIFICATIONS_TOOL: string;
|
|
309
|
+
VELT_NOTIFICATIONS_TOOL_ICON: string;
|
|
310
|
+
VELT_NOTIFICATIONS_TOOL_UNREAD_ICON: string;
|
|
311
|
+
VELT_NOTIFICATIONS_TOOL_LABEL: string;
|
|
312
|
+
VELT_NOTIFICATIONS_TOOL_UNREAD_COUNT: string;
|
|
243
313
|
VELT_NOTIFICATIONS_PANEL: string;
|
|
314
|
+
VELT_NOTIFICATIONS_PANEL_TITLE: string;
|
|
315
|
+
VELT_NOTIFICATIONS_PANEL_TITLE_TEXT: string;
|
|
316
|
+
VELT_NOTIFICATIONS_PANEL_HEADER: string;
|
|
317
|
+
VELT_NOTIFICATIONS_PANEL_HEADER_TAB_FOR_YOU: string;
|
|
318
|
+
VELT_NOTIFICATIONS_PANEL_HEADER_TAB_PEOPLE: string;
|
|
319
|
+
VELT_NOTIFICATIONS_PANEL_HEADER_TAB_DOCUMENTS: string;
|
|
320
|
+
VELT_NOTIFICATIONS_PANEL_HEADER_TAB_ALL: string;
|
|
321
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT: string;
|
|
322
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_FOR_YOU: string;
|
|
323
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_ALL: string;
|
|
324
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE: string;
|
|
325
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS: string;
|
|
326
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST: string;
|
|
327
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM: string;
|
|
328
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_AVATAR: string;
|
|
329
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_UNREAD: string;
|
|
330
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_HEADLINE: string;
|
|
331
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_BODY: string;
|
|
332
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_FILE_NAME: string;
|
|
333
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_TIME: string;
|
|
334
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST: string;
|
|
335
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM: string;
|
|
336
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM_LABEL: string;
|
|
337
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM_CONTENT: string;
|
|
338
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST: string;
|
|
339
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM: string;
|
|
340
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_AVATAR: string;
|
|
341
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_NAME: string;
|
|
342
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_COUNT: string;
|
|
343
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_CONTENT: string;
|
|
344
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST: string;
|
|
345
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM: string;
|
|
346
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_NAME: string;
|
|
347
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_COUNT: string;
|
|
348
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_CONTENT: string;
|
|
349
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_UNREAD: string;
|
|
350
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_LOAD_MORE: string;
|
|
351
|
+
VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_READ_CONTAINER: string;
|
|
352
|
+
VELT_NOTIFICATIONS_PANEL_CLOSE_BUTTON: string;
|
|
353
|
+
VELT_NOTIFICATIONS_PANEL_READ_ALL_BUTTON: string;
|
|
354
|
+
VELT_NOTIFICATIONS_PANEL_VIEW_ALL_BUTTON: string;
|
|
355
|
+
VELT_NOTIFICATIONS_PANEL_SKELETON: string;
|
|
356
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_BUTTON: string;
|
|
357
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS: string;
|
|
358
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_HEADER: string;
|
|
359
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_HEADER_TITLE: string;
|
|
360
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_TITLE: string;
|
|
361
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_DESCRIPTION: string;
|
|
362
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_LIST: string;
|
|
363
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_TITLE: string;
|
|
364
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_DESCRIPTION: string;
|
|
365
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_TOGGLE: string;
|
|
366
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION: string;
|
|
367
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER: string;
|
|
368
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_LABEL: string;
|
|
369
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_ICON: string;
|
|
370
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_SELECTED_VALUE: string;
|
|
371
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT: string;
|
|
372
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM: string;
|
|
373
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM_LABEL: string;
|
|
374
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM_ICON: string;
|
|
375
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_BACK_BUTTON: string;
|
|
376
|
+
VELT_NOTIFICATIONS_PANEL_SETTINGS_FOOTER: string;
|
|
244
377
|
VELT_NOTIFICATIONS_HISTORY_PANEL: string;
|
|
245
378
|
VELT_WIREFRAME: string;
|
|
246
379
|
VELT_AUTOCOMPLETE: string;
|
|
380
|
+
VELT_AUTOCOMPLETE_PANEL: string;
|
|
381
|
+
VELT_AUTOCOMPLETE_OPTION: string;
|
|
382
|
+
VELT_AUTOCOMPLETE_OPTION_ICON: string;
|
|
383
|
+
VELT_AUTOCOMPLETE_OPTION_NAME: string;
|
|
384
|
+
VELT_AUTOCOMPLETE_OPTION_DESCRIPTION: string;
|
|
385
|
+
VELT_AUTOCOMPLETE_OPTION_ERROR_ICON: string;
|
|
386
|
+
VELT_AUTOCOMPLETE_GROUP_OPTION: string;
|
|
387
|
+
VELT_AUTOCOMPLETE_TOOL: string;
|
|
388
|
+
VELT_AUTOCOMPLETE_EMPTY: string;
|
|
247
389
|
VELT_AUTOCOMPLETE_CHIP: string;
|
|
390
|
+
VELT_AUTOCOMPLETE_CHIP_TOOLTIP: string;
|
|
391
|
+
VELT_AUTOCOMPLETE_CHIP_TOOLTIP_ICON: string;
|
|
392
|
+
VELT_AUTOCOMPLETE_CHIP_TOOLTIP_NAME: string;
|
|
393
|
+
VELT_AUTOCOMPLETE_CHIP_TOOLTIP_DESCRIPTION: string;
|
|
394
|
+
VELT_AUTOCOMPLETE_CONTEXT_WRAPPER: string;
|
|
395
|
+
VELT_ACTIVITY_LOG: string;
|
|
396
|
+
VELT_ACTIVITY_LOG_HEADER: string;
|
|
397
|
+
VELT_ACTIVITY_LOG_HEADER_TITLE: string;
|
|
398
|
+
VELT_ACTIVITY_LOG_HEADER_CLOSE_BUTTON: string;
|
|
399
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER: string;
|
|
400
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER: string;
|
|
401
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER_LABEL: string;
|
|
402
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER_ICON: string;
|
|
403
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT: string;
|
|
404
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM: string;
|
|
405
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM_LABEL: string;
|
|
406
|
+
VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM_ICON: string;
|
|
407
|
+
VELT_ACTIVITY_LOG_LOADING: string;
|
|
408
|
+
VELT_ACTIVITY_LOG_LIST: string;
|
|
409
|
+
VELT_ACTIVITY_LOG_LIST_DATE_GROUP: string;
|
|
410
|
+
VELT_ACTIVITY_LOG_LIST_DATE_GROUP_LABEL: string;
|
|
411
|
+
VELT_ACTIVITY_LOG_LIST_ITEM: string;
|
|
412
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_ICON: string;
|
|
413
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_AVATAR: string;
|
|
414
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT: string;
|
|
415
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_USER: string;
|
|
416
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_ACTION: string;
|
|
417
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_TARGET: string;
|
|
418
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_DETAIL: string;
|
|
419
|
+
VELT_ACTIVITY_LOG_LIST_ITEM_TIME: string;
|
|
420
|
+
VELT_ACTIVITY_LOG_LIST_SHOW_MORE: string;
|
|
421
|
+
VELT_ACTIVITY_LOG_EMPTY: string;
|
|
422
|
+
VELT_ACTIVITY_LOG_CONTEXT_WRAPPER: string;
|
|
423
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER: string;
|
|
424
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_ICON: string;
|
|
425
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_TEXT: string;
|
|
426
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN: string;
|
|
427
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER: string;
|
|
428
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_LABEL: string;
|
|
429
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST: string;
|
|
430
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_ITEM: string;
|
|
431
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_REMAINING_COUNT: string;
|
|
432
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_ICON: string;
|
|
433
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT: string;
|
|
434
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM: string;
|
|
435
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_ICON: string;
|
|
436
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_LABEL: string;
|
|
437
|
+
VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_USER_PICKER: string;
|
|
248
438
|
VELT_COMMENT_COMPOSER: string;
|
|
249
439
|
VELT_SKELETON_LOADER: string;
|
|
250
440
|
VELT_SHADOW_DOM_INTERNAL: string;
|
|
251
441
|
VELT_SINGLE_EDITOR_MODE_PANEL: string;
|
|
442
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG: string;
|
|
443
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_LIST: string;
|
|
444
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_PANEL: string;
|
|
445
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_COMPOSER_CONTAINER: string;
|
|
446
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_COMMENT_COUNT: string;
|
|
447
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_EMPTY_PLACEHOLDER: string;
|
|
448
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_CLOSE_BUTTON: string;
|
|
449
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_NEW_THREAD_BUTTON: string;
|
|
450
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_RESET_FILTER_BUTTON: string;
|
|
451
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN: string;
|
|
452
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_TRIGGER: string;
|
|
453
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT: string;
|
|
454
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_ALL: string;
|
|
455
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_READ: string;
|
|
456
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_RESOLVED: string;
|
|
457
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_UNREAD: string;
|
|
458
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SELECTED_ICON: string;
|
|
459
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_DATE: string;
|
|
460
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_UNREAD: string;
|
|
461
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN: string;
|
|
462
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_TRIGGER: string;
|
|
463
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT: string;
|
|
464
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_READ: string;
|
|
465
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_RESOLVED: string;
|
|
466
|
+
VELT_TEXT_COMMENT: string;
|
|
467
|
+
VELT_TEXT_COMMENT_TOOL: string;
|
|
468
|
+
VELT_TEXT_COMMENT_TOOLBAR: string;
|
|
469
|
+
VELT_TEXT_COMMENT_TOOLBAR_COMMENT_ANNOTATION: string;
|
|
470
|
+
VELT_TEXT_COMMENT_TOOLBAR_DIVIDER: string;
|
|
471
|
+
VELT_TEXT_COMMENT_TOOLBAR_COPYWRITER: string;
|
|
472
|
+
VELT_TEXT_COMMENT_TOOLBAR_GENERIC: string;
|
|
252
473
|
};
|
|
253
474
|
static ATTRIBUTES: {
|
|
254
475
|
VELT_COMMENT_CONTAINER: string;
|
|
@@ -300,6 +521,7 @@ export declare class Constants {
|
|
|
300
521
|
VELT_AREA_PIN_HOST_STATIC: string;
|
|
301
522
|
VELT_AREA_DISABLED: string;
|
|
302
523
|
VELT_AREA_PIN_ACTIVE: string;
|
|
524
|
+
VELT_SUGGESTION_TARGET: string;
|
|
303
525
|
VELT_ONGOING_RECORDING: string;
|
|
304
526
|
VELT_COMMENT_RECORDING: string;
|
|
305
527
|
SYNC_VIDEO_PLAYER_ID: string;
|
|
@@ -330,6 +552,9 @@ export declare class Constants {
|
|
|
330
552
|
VELT_AVATAR_COLOR: string;
|
|
331
553
|
VELT_COMMENT_PRIORITY_COLOR: string;
|
|
332
554
|
};
|
|
555
|
+
static BODY_CLASSES: {
|
|
556
|
+
VELT_PIN_DRAGGING: string;
|
|
557
|
+
};
|
|
333
558
|
static INJECTION_ATTRIBUTES: {
|
|
334
559
|
/**
|
|
335
560
|
* @deprecated Use VELT_AVATAR_IMG instead
|
|
@@ -366,6 +591,7 @@ export declare class Constants {
|
|
|
366
591
|
VELT_VERSION: string;
|
|
367
592
|
VELT_ADVANCED_QUERIES: string;
|
|
368
593
|
VELT_COMMENT_VIEWS_MIGRATED: string;
|
|
594
|
+
VELT_AUTH_PROXY_HOST: string;
|
|
369
595
|
};
|
|
370
596
|
static NON_NESTABLE_ELEMENTS: {
|
|
371
597
|
[tag: string]: boolean;
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -14,7 +14,9 @@ export declare enum CommentStatus {
|
|
|
14
14
|
REACTION_ADDED = "reactionAdded",
|
|
15
15
|
REACTION_DELETED = "reactionDeleted",
|
|
16
16
|
SUBSCRIBED = "subscribed",
|
|
17
|
-
UNSUBSCRIBED = "unsubscribed"
|
|
17
|
+
UNSUBSCRIBED = "unsubscribed",
|
|
18
|
+
SUGGESTION_ACCEPTED = "suggestionAccepted",
|
|
19
|
+
SUGGESTION_REJECTED = "suggestionRejected"
|
|
18
20
|
}
|
|
19
21
|
export declare enum ResolverActions {
|
|
20
22
|
COMMENT_ANNOTATION_ADD = "comment_annotation.add",
|
|
@@ -25,7 +27,11 @@ export declare enum ResolverActions {
|
|
|
25
27
|
REACTION_ADD = "reaction.add",
|
|
26
28
|
REACTION_DELETE = "reaction.delete",
|
|
27
29
|
ATTACHMENT_ADD = "attachment.add",
|
|
28
|
-
ATTACHMENT_DELETE = "attachment.delete"
|
|
30
|
+
ATTACHMENT_DELETE = "attachment.delete",
|
|
31
|
+
RECORDER_ANNOTATION_ADD = "recorder_annotation.add",
|
|
32
|
+
RECORDER_ANNOTATION_UPDATE = "recorder_annotation.update",
|
|
33
|
+
RECORDER_ANNOTATION_DELETE = "recorder_annotation.delete",
|
|
34
|
+
ACTIVITY_SAVE = "activity.save"
|
|
29
35
|
}
|
|
30
36
|
export declare const CommentEventTypes: {
|
|
31
37
|
readonly ADD_COMMENT_ANNOTATION: "addCommentAnnotation";
|
|
@@ -42,6 +48,7 @@ export declare const CommentEventTypes: {
|
|
|
42
48
|
readonly UPDATE_ACCESS: "updateAccess";
|
|
43
49
|
readonly RESOLVE_COMMENT: "resolveComment";
|
|
44
50
|
readonly ADD_COMMENT: "addComment";
|
|
51
|
+
readonly ADD_COMMENT_DRAFT: "addCommentDraft";
|
|
45
52
|
readonly UPDATE_COMMENT: "updateComment";
|
|
46
53
|
readonly DELETE_COMMENT: "deleteComment";
|
|
47
54
|
readonly ADD_ATTACHMENT: "addAttachment";
|
|
@@ -67,6 +74,8 @@ export declare const CommentEventTypes: {
|
|
|
67
74
|
readonly COMMENT_SAVED: "commentSaved";
|
|
68
75
|
readonly COMMENT_SAVE_TRIGGERED: "commentSaveTriggered";
|
|
69
76
|
readonly VISIBILITY_OPTION_CLICKED: "visibilityOptionClicked";
|
|
77
|
+
readonly SUGGESTION_ACCEPTED: "suggestionAccepted";
|
|
78
|
+
readonly SUGGESTION_REJECTED: "suggestionRejected";
|
|
70
79
|
};
|
|
71
80
|
export declare const RecorderEventTypes: {
|
|
72
81
|
readonly TRANSCRIPTION_DONE: "transcriptionDone";
|
|
@@ -80,6 +89,18 @@ export declare const RecorderEventTypes: {
|
|
|
80
89
|
readonly RECORDING_RESUMED: "recordingResumed";
|
|
81
90
|
readonly RECORDING_CANCELLED: "recordingCancelled";
|
|
82
91
|
readonly RECORDING_STOPPED: "recordingStopped";
|
|
92
|
+
readonly RECORDING_DONE_LOCAL: "recordingDoneLocal";
|
|
93
|
+
};
|
|
94
|
+
export declare const RewriterEventTypes: {
|
|
95
|
+
readonly TEXT_SELECTED: "textSelected";
|
|
96
|
+
};
|
|
97
|
+
export declare const SuggestionEventTypes: {
|
|
98
|
+
readonly SUGGESTION_CREATED: "suggestionCreated";
|
|
99
|
+
readonly SUGGESTION_APPROVED: "suggestionApproved";
|
|
100
|
+
readonly SUGGESTION_REJECTED: "suggestionRejected";
|
|
101
|
+
readonly SUGGESTION_STALE: "suggestionStale";
|
|
102
|
+
readonly TARGET_EDIT_START: "targetEditStart";
|
|
103
|
+
readonly TARGET_EDIT_COMMIT: "targetEditCommit";
|
|
83
104
|
};
|
|
84
105
|
export declare const CoreEventTypes: {
|
|
85
106
|
readonly PERMISSION_PROVIDER: "permissionProvider";
|
|
@@ -87,6 +108,9 @@ export declare const CoreEventTypes: {
|
|
|
87
108
|
readonly COMMENT_RESOLVER: "commentResolver";
|
|
88
109
|
readonly ATTACHMENT_RESOLVER: "attachmentResolver";
|
|
89
110
|
readonly REACTION_RESOLVER: "reactionResolver";
|
|
111
|
+
readonly RECORDER_RESOLVER: "recorderResolver";
|
|
112
|
+
readonly NOTIFICATION_RESOLVER: "notificationResolver";
|
|
113
|
+
readonly ACTIVITY_RESOLVER: "activityResolver";
|
|
90
114
|
readonly VELT_BUTTON_CLICK: "veltButtonClick";
|
|
91
115
|
readonly USER_UPDATE: "userUpdate";
|
|
92
116
|
readonly INIT_UPDATE: "initUpdate";
|
|
@@ -118,6 +142,8 @@ export type CoreEventType = typeof CoreEventTypes[keyof typeof CoreEventTypes];
|
|
|
118
142
|
export type LiveStateSyncEventType = typeof LiveStateSyncEventTypes[keyof typeof LiveStateSyncEventTypes];
|
|
119
143
|
export type PresenceEventType = typeof PresenceEventTypes[keyof typeof PresenceEventTypes];
|
|
120
144
|
export type NotificationEventType = typeof NotificationEventTypes[keyof typeof NotificationEventTypes];
|
|
145
|
+
export type RewriterEventType = typeof RewriterEventTypes[keyof typeof RewriterEventTypes];
|
|
146
|
+
export type SuggestionEventType = typeof SuggestionEventTypes[keyof typeof SuggestionEventTypes];
|
|
121
147
|
export type CrdtEventType = typeof CrdtEventTypes[keyof typeof CrdtEventTypes];
|
|
122
148
|
export declare enum TagStatus {
|
|
123
149
|
ADDED = "added",
|
|
@@ -172,7 +198,8 @@ export declare enum Features {
|
|
|
172
198
|
REWRITER = "rewriter",
|
|
173
199
|
LIVE_SELECTION = "liveSelection",
|
|
174
200
|
NOTIFICATION = "notification",
|
|
175
|
-
REACTION = "reaction"
|
|
201
|
+
REACTION = "reaction",
|
|
202
|
+
ACTIVITY = "activity"
|
|
176
203
|
}
|
|
177
204
|
export declare enum AnalyticsFeatures {
|
|
178
205
|
AREA = "area",
|
|
@@ -194,7 +221,7 @@ export declare enum AnalyticsFeatures {
|
|
|
194
221
|
INLINE_COMMENT = "inlineComment",
|
|
195
222
|
COMMENT_SIDEBAR = "commentSidebar"
|
|
196
223
|
}
|
|
197
|
-
export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread';
|
|
224
|
+
export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread' | 'activity';
|
|
198
225
|
export type AssignToType = 'dropdown' | 'checkbox';
|
|
199
226
|
export declare enum DeviceType {
|
|
200
227
|
DESKTOP = "Desktop",
|
|
@@ -313,3 +340,13 @@ export type NotificationSettingsItemType = 'ALL' | 'MINE' | 'NONE' | string;
|
|
|
313
340
|
* Type for notification settings layout
|
|
314
341
|
*/
|
|
315
342
|
export type NotificationSettingsLayout = 'accordion' | 'dropdown';
|
|
343
|
+
/**
|
|
344
|
+
* Enum for comment visibility options in the visibility banner dropdown
|
|
345
|
+
*/
|
|
346
|
+
export declare enum CommentVisibilityOption {
|
|
347
|
+
RESTRICTED_SELF = "restrictedSelf",
|
|
348
|
+
RESTRICTED_SELECTED_PEOPLE = "restrictedSelectedPeople",
|
|
349
|
+
ORGANIZATION_PRIVATE = "organizationPrivate",
|
|
350
|
+
PUBLIC = "public"
|
|
351
|
+
}
|
|
352
|
+
export type CommentVisibilityOptionType = `${CommentVisibilityOption}`;
|
package/models.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export * from './app/utils/enums';
|
|
2
2
|
export * from './app/models/data/anchor-record.data.model';
|
|
3
3
|
export * from './app/models/data/attachment.model';
|
|
4
|
+
export * from './app/models/data/activity.data.model';
|
|
4
5
|
export * from './app/models/data/area-annotation.data.model';
|
|
5
6
|
export * from './app/models/data/arrow-annotation.data.model';
|
|
7
|
+
export * from './app/models/data/agent-suggestion.data.model';
|
|
6
8
|
export * from './app/models/data/base-metadata.data.model';
|
|
7
9
|
export * from './app/models/data/button.data.model';
|
|
8
10
|
export * from './app/models/data/chatgpt.data.model';
|
|
@@ -37,6 +39,7 @@ export * from './app/models/data/location.model';
|
|
|
37
39
|
export * from './app/models/data/media-preview-config.data.model';
|
|
38
40
|
export * from './app/models/data/multi-thread.data.model';
|
|
39
41
|
export * from './app/models/data/notification.model';
|
|
42
|
+
export * from './app/models/data/notification-resolver.data.model';
|
|
40
43
|
export * from './app/models/data/notifications-events.data.model';
|
|
41
44
|
export * from './app/models/data/page-info.model';
|
|
42
45
|
export * from './app/models/data/permission.data.model';
|
|
@@ -47,6 +50,9 @@ export * from './app/models/data/recorder.model';
|
|
|
47
50
|
export * from './app/models/data/recorder-annotation.data.model';
|
|
48
51
|
export * from './app/models/data/recorder-events.data.model';
|
|
49
52
|
export * from './app/models/data/rewriter-annotation.data.model';
|
|
53
|
+
export * from './app/models/data/rewriter-events.data.model';
|
|
54
|
+
export * from './app/models/data/suggestion.data.model';
|
|
55
|
+
export * from './app/models/data/suggestion-events.data.model';
|
|
50
56
|
export * from './app/models/data/screen-size.data.model';
|
|
51
57
|
export * from './app/models/data/screenshot.data.model';
|
|
52
58
|
export * from './app/models/data/selection.model';
|
|
@@ -71,7 +77,9 @@ export * from './app/models/data/views.data.model';
|
|
|
71
77
|
export * from './app/models/data/autocomplete.data.model';
|
|
72
78
|
export * from './app/models/data/reaction-annotation.data.model';
|
|
73
79
|
export * from './app/models/data/reaction-resolver.data.model';
|
|
80
|
+
export * from './app/models/data/recorder-resolver.data.model';
|
|
74
81
|
export * from './app/models/data/attachment-resolver.data.model';
|
|
82
|
+
export * from './app/models/data/activity-resolver.data.model';
|
|
75
83
|
export * from './app/models/data/reaction.data.model';
|
|
76
84
|
export * from './app/models/data/organization-groups.data.model';
|
|
77
85
|
export * from './app/models/data/organization-metadata.model';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk-staging",
|
|
3
|
-
"version": "5.0.2-beta.
|
|
3
|
+
"version": "5.0.2-beta.80",
|
|
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": [
|
package/types.d.ts
CHANGED
|
@@ -14,7 +14,10 @@ export * from './app/models/element/selection-element.model';
|
|
|
14
14
|
export * from './app/models/element/tag-element.model';
|
|
15
15
|
export * from './app/models/element/views-element.model';
|
|
16
16
|
export * from './app/models/element/notification-element.model';
|
|
17
|
+
export * from './app/models/element/cross-organization-config.model';
|
|
17
18
|
export * from './app/models/element/autocomplete-element.model';
|
|
18
19
|
export * from './app/models/element/reaction-element.model';
|
|
19
20
|
export * from './app/models/element/crdt-element.model';
|
|
21
|
+
export * from './app/models/element/activity-element.model';
|
|
22
|
+
export * from './app/models/element/suggestion-element.model';
|
|
20
23
|
export * from './models';
|