@veltdev/sdk-staging 5.0.1-beta.5 → 5.0.1-beta.7
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.
|
@@ -87,6 +87,7 @@ export type CommentEventTypesMap = {
|
|
|
87
87
|
[CommentEventTypes.COMMENT_TOOL_CLICK]: CommentToolClickEvent;
|
|
88
88
|
[CommentEventTypes.SIDEBAR_BUTTON_CLICK]: SidebarButtonClickEvent;
|
|
89
89
|
[CommentEventTypes.ATTACHMENT_DOWNLOAD_CLICKED]: AttachmentDownloadClickedEvent;
|
|
90
|
+
[CommentEventTypes.COMMENT_SAVED]: CommentSavedEvent;
|
|
90
91
|
};
|
|
91
92
|
export interface AddAttachmentEvent {
|
|
92
93
|
annotationId: string;
|
|
@@ -176,6 +177,11 @@ export interface AddCommentEvent {
|
|
|
176
177
|
comment: Comment;
|
|
177
178
|
metadata: VeltEventMetadata;
|
|
178
179
|
}
|
|
180
|
+
export interface CommentSavedEvent {
|
|
181
|
+
annotationId: string;
|
|
182
|
+
commentAnnotation: CommentAnnotation;
|
|
183
|
+
metadata: VeltEventMetadata;
|
|
184
|
+
}
|
|
179
185
|
export interface UpdateCommentEvent {
|
|
180
186
|
annotationId: string;
|
|
181
187
|
commentAnnotation: CommentAnnotation;
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export declare const CommentEventTypes: {
|
|
|
62
62
|
readonly COMMENT_TOOL_CLICK: "commentToolClick";
|
|
63
63
|
readonly SIDEBAR_BUTTON_CLICK: "sidebarButtonClick";
|
|
64
64
|
readonly ATTACHMENT_DOWNLOAD_CLICKED: "attachmentDownloadClicked";
|
|
65
|
+
readonly COMMENT_SAVED: "commentSaved";
|
|
65
66
|
};
|
|
66
67
|
export declare const RecorderEventTypes: {
|
|
67
68
|
readonly TRANSCRIPTION_DONE: "transcriptionDone";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk-staging",
|
|
3
|
-
"version": "5.0.1-beta.
|
|
3
|
+
"version": "5.0.1-beta.7",
|
|
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": [
|