@veltdev/react 3.0.66 → 3.0.68

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.
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.66";
1
+ export declare const VELT_SDK_VERSION = "3.0.68";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
@@ -0,0 +1,68 @@
1
+ import { AddAttachmentConfig, AddAttachmentResponse, AddCommentAnnotationConfig, AddCommentAnnotationEvent, AddCommentConfig, AddCommentEvent, AddReactionConfig, AddReactionEvent, ApproveCommentAnnotationConfig, ApproveCommentAnnotationEvent, Attachment, CopyLinkConfig, CopyLinkEvent, DeleteAttachmentConfig, DeleteAttachmentEvent, DeleteCommentAnnotationConfig, DeleteCommentAnnotationEvent, DeleteCommentConfig, DeleteCommentEvent, DeleteReactionConfig, DeleteReactionEvent, DeleteRecordingConfig, DeleteRecordingEvent, GetAttachmentConfig, GetCommentConfig, GetLinkConfig, GetLinkEvent, GetRecordingConfig, RecordedData, RejectCommentAnnotationConfig, RejectCommentAnnotationEvent, ResolveCommentAnnotationConfig, ToggleReactionConfig, ToggleReactionEvent, UpdateAccessConfig, UpdateAccessEvent, UpdateCommentConfig, UpdateCommentEvent, UpdatePriorityConfig, UpdatePriorityEvent, UpdateStatusConfig, UpdateStatusEvent } from "@veltdev/types";
2
+ export declare function useAddCommentAnnotation(): {
3
+ addCommentAnnotation: (config: AddCommentAnnotationConfig) => Promise<AddCommentAnnotationEvent | null>;
4
+ };
5
+ export declare function useApproveCommentAnnotation(): {
6
+ approveCommentAnnotation: (config: ApproveCommentAnnotationConfig) => Promise<ApproveCommentAnnotationEvent | null>;
7
+ };
8
+ export declare function useRejectCommentAnnotation(): {
9
+ rejectCommentAnnotation: (config: RejectCommentAnnotationConfig) => Promise<RejectCommentAnnotationEvent | null>;
10
+ };
11
+ export declare function useDeleteCommentAnnotation(): {
12
+ deleteCommentAnnotation: (config: DeleteCommentAnnotationConfig) => Promise<DeleteCommentAnnotationEvent | null>;
13
+ };
14
+ export declare function useUpdatePriority(): {
15
+ updatePriority: (config: UpdatePriorityConfig) => Promise<UpdatePriorityEvent | null>;
16
+ };
17
+ export declare function useUpdateStatus(): {
18
+ updateStatus: (config: UpdateStatusConfig) => Promise<UpdateStatusEvent | null>;
19
+ };
20
+ export declare function useUpdateAccess(): {
21
+ updateAccess: (config: UpdateAccessConfig) => Promise<UpdateAccessEvent | null>;
22
+ };
23
+ export declare function useResolveCommentAnnotation(): {
24
+ resolveCommentAnnotation: (config: ResolveCommentAnnotationConfig) => Promise<any>;
25
+ };
26
+ export declare function useGetLink(): {
27
+ getLink: (config: GetLinkConfig) => Promise<GetLinkEvent | null>;
28
+ };
29
+ export declare function useCopyLink(): {
30
+ copyLink: (config: CopyLinkConfig) => Promise<CopyLinkEvent | null>;
31
+ };
32
+ export declare function useAddComment(): {
33
+ addComment: (config: AddCommentConfig) => Promise<AddCommentEvent | null>;
34
+ };
35
+ export declare function useUpdateComment(): {
36
+ updateComment: (config: UpdateCommentConfig) => Promise<UpdateCommentEvent | null>;
37
+ };
38
+ export declare function useDeleteComment(): {
39
+ deleteComment: (config: DeleteCommentConfig) => Promise<DeleteCommentEvent | null>;
40
+ };
41
+ export declare function useGetComment(): {
42
+ getComment: (config: GetCommentConfig) => Promise<Comment[]>;
43
+ };
44
+ export declare function useAddAttachment(): {
45
+ addAttachment: (config: AddAttachmentConfig) => Promise<AddAttachmentResponse[] | null>;
46
+ };
47
+ export declare function useDeleteAttachment(): {
48
+ deleteAttachment: (config: DeleteAttachmentConfig) => Promise<DeleteAttachmentEvent | null>;
49
+ };
50
+ export declare function useGetAttachment(): {
51
+ getAttachment: (config: GetAttachmentConfig) => Promise<Attachment[] | null>;
52
+ };
53
+ export declare function useDeleteRecording(): {
54
+ deleteRecording: (config: DeleteRecordingConfig) => Promise<DeleteRecordingEvent | null>;
55
+ };
56
+ export declare function useGetRecording(): {
57
+ getRecording: (config: GetRecordingConfig) => Promise<RecordedData[] | null>;
58
+ };
59
+ export declare function useAddReaction(): {
60
+ addReaction: (config: AddReactionConfig) => Promise<AddReactionEvent | null>;
61
+ };
62
+ export declare function useDeleteReaction(): {
63
+ deleteReaction: (config: DeleteReactionConfig) => Promise<DeleteReactionEvent | null>;
64
+ };
65
+ export declare function useToggleReaction(): {
66
+ toggleReaction: (config: ToggleReactionConfig) => Promise<ToggleReactionEvent | null>;
67
+ };
68
+ export declare function useCommentActionCallback(action: string): any;
@@ -1,5 +1,6 @@
1
1
  export { useSetLocation, useSetDocument, useSetDocumentId, useUnsetDocumentId, useIdentify, useClient, useVeltInitState, } from './Client';
2
2
  export { useCommentUtils, useCommentAnnotations, useCommentAddHandler, useCommentModeState, useCommentUpdateHandler, useCommentDialogSidebarClickHandler, useCommentSelectionChangeHandler, useUnreadCommentCountByAnnotationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountOnCurrentDocument, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentCountByLocationId, useCommentCopyLinkHandler, useCommentAnnotationById, useCommentSidebarActionButtonClick, useCommentSidebarInit, useCommentSidebarData, } from './CommentElement';
3
+ export { useAddAttachment, useDeleteAttachment, useGetAttachment, useDeleteRecording, useGetRecording, useAddReaction, useDeleteReaction, useToggleReaction, useAddComment, useUpdateComment, useDeleteComment, useAddCommentAnnotation, useDeleteCommentAnnotation, useApproveCommentAnnotation, useCopyLink, useGetComment, useGetLink, useRejectCommentAnnotation, useResolveCommentAnnotation, useUpdateAccess, useUpdatePriority, useUpdateStatus, useCommentActionCallback, } from './CommentActions';
3
4
  export { useCursorUtils, useCursorUsers, } from './CursorElement';
4
5
  export { useHuddleUtils, } from './HuddleElement';
5
6
  export { useLiveStateSyncUtils, useLiveStateData, useSetLiveStateData, useUserEditorState, useEditor, useEditorAccessTimer, useEditorAccessRequestHandler, useServerConnectionStateChangeHandler, useLiveState, } from './LiveStateSyncElement';
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import React from 'react';
3
- import { Config, Velt, ReactionMap, CommentAnnotation, AutocompleteItem, User, Options, DocumentMetadata, Location as Location$1, CommentElement, CommentAddEventData, CommentUpdateEventData, CommentSelectionChangeData, CommentSidebarCustomActionEventData, CursorElement, CursorUser, LiveStateSyncElement, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RecordedData, RewriterElement, SelectionElement, LiveSelectionData, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact } from '@veltdev/types';
3
+ import { Config, Velt, ReactionMap, CommentAnnotation, AutocompleteItem, User, Options, DocumentMetadata, Location as Location$1, CommentElement, CommentAddEventData, CommentUpdateEventData, CommentSelectionChangeData, CommentSidebarCustomActionEventData, AddCommentAnnotationConfig, AddCommentAnnotationEvent, ApproveCommentAnnotationConfig, ApproveCommentAnnotationEvent, RejectCommentAnnotationConfig, RejectCommentAnnotationEvent, DeleteCommentAnnotationConfig, DeleteCommentAnnotationEvent, UpdatePriorityConfig, UpdatePriorityEvent, UpdateStatusConfig, UpdateStatusEvent, UpdateAccessConfig, UpdateAccessEvent, ResolveCommentAnnotationConfig, GetLinkConfig, GetLinkEvent, CopyLinkConfig, CopyLinkEvent, AddCommentConfig, AddCommentEvent, UpdateCommentConfig, UpdateCommentEvent, DeleteCommentConfig, DeleteCommentEvent, GetCommentConfig, AddAttachmentConfig, AddAttachmentResponse, DeleteAttachmentConfig, DeleteAttachmentEvent, GetAttachmentConfig, Attachment, DeleteRecordingConfig, DeleteRecordingEvent, GetRecordingConfig, RecordedData, AddReactionConfig, AddReactionEvent, DeleteReactionConfig, DeleteReactionEvent, ToggleReactionConfig, ToggleReactionEvent, CursorElement, CursorUser, LiveStateSyncElement, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RewriterElement, SelectionElement, LiveSelectionData, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact } from '@veltdev/types';
4
4
 
5
5
  interface IVeltProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
6
6
  apiKey: string;
@@ -3698,6 +3698,74 @@ declare function useCommentSidebarActionButtonClick(): CommentSidebarCustomActio
3698
3698
  declare function useCommentSidebarInit(): CommentSidebarCustomActionEventData | null;
3699
3699
  declare function useCommentSidebarData(): CommentSidebarCustomActionEventData | null;
3700
3700
 
3701
+ declare function useAddCommentAnnotation(): {
3702
+ addCommentAnnotation: (config: AddCommentAnnotationConfig) => Promise<AddCommentAnnotationEvent | null>;
3703
+ };
3704
+ declare function useApproveCommentAnnotation(): {
3705
+ approveCommentAnnotation: (config: ApproveCommentAnnotationConfig) => Promise<ApproveCommentAnnotationEvent | null>;
3706
+ };
3707
+ declare function useRejectCommentAnnotation(): {
3708
+ rejectCommentAnnotation: (config: RejectCommentAnnotationConfig) => Promise<RejectCommentAnnotationEvent | null>;
3709
+ };
3710
+ declare function useDeleteCommentAnnotation(): {
3711
+ deleteCommentAnnotation: (config: DeleteCommentAnnotationConfig) => Promise<DeleteCommentAnnotationEvent | null>;
3712
+ };
3713
+ declare function useUpdatePriority(): {
3714
+ updatePriority: (config: UpdatePriorityConfig) => Promise<UpdatePriorityEvent | null>;
3715
+ };
3716
+ declare function useUpdateStatus(): {
3717
+ updateStatus: (config: UpdateStatusConfig) => Promise<UpdateStatusEvent | null>;
3718
+ };
3719
+ declare function useUpdateAccess(): {
3720
+ updateAccess: (config: UpdateAccessConfig) => Promise<UpdateAccessEvent | null>;
3721
+ };
3722
+ declare function useResolveCommentAnnotation(): {
3723
+ resolveCommentAnnotation: (config: ResolveCommentAnnotationConfig) => Promise<any>;
3724
+ };
3725
+ declare function useGetLink(): {
3726
+ getLink: (config: GetLinkConfig) => Promise<GetLinkEvent | null>;
3727
+ };
3728
+ declare function useCopyLink(): {
3729
+ copyLink: (config: CopyLinkConfig) => Promise<CopyLinkEvent | null>;
3730
+ };
3731
+ declare function useAddComment(): {
3732
+ addComment: (config: AddCommentConfig) => Promise<AddCommentEvent | null>;
3733
+ };
3734
+ declare function useUpdateComment(): {
3735
+ updateComment: (config: UpdateCommentConfig) => Promise<UpdateCommentEvent | null>;
3736
+ };
3737
+ declare function useDeleteComment(): {
3738
+ deleteComment: (config: DeleteCommentConfig) => Promise<DeleteCommentEvent | null>;
3739
+ };
3740
+ declare function useGetComment(): {
3741
+ getComment: (config: GetCommentConfig) => Promise<Comment[]>;
3742
+ };
3743
+ declare function useAddAttachment(): {
3744
+ addAttachment: (config: AddAttachmentConfig) => Promise<AddAttachmentResponse[] | null>;
3745
+ };
3746
+ declare function useDeleteAttachment(): {
3747
+ deleteAttachment: (config: DeleteAttachmentConfig) => Promise<DeleteAttachmentEvent | null>;
3748
+ };
3749
+ declare function useGetAttachment(): {
3750
+ getAttachment: (config: GetAttachmentConfig) => Promise<Attachment[] | null>;
3751
+ };
3752
+ declare function useDeleteRecording(): {
3753
+ deleteRecording: (config: DeleteRecordingConfig) => Promise<DeleteRecordingEvent | null>;
3754
+ };
3755
+ declare function useGetRecording(): {
3756
+ getRecording: (config: GetRecordingConfig) => Promise<RecordedData[] | null>;
3757
+ };
3758
+ declare function useAddReaction(): {
3759
+ addReaction: (config: AddReactionConfig) => Promise<AddReactionEvent | null>;
3760
+ };
3761
+ declare function useDeleteReaction(): {
3762
+ deleteReaction: (config: DeleteReactionConfig) => Promise<DeleteReactionEvent | null>;
3763
+ };
3764
+ declare function useToggleReaction(): {
3765
+ toggleReaction: (config: ToggleReactionConfig) => Promise<ToggleReactionEvent | null>;
3766
+ };
3767
+ declare function useCommentActionCallback(action: string): any;
3768
+
3701
3769
  declare function useCursorUtils(): CursorElement | undefined;
3702
3770
  declare function useCursorUsers(): CursorUser[] | null;
3703
3771
 
@@ -3766,4 +3834,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
3766
3834
  updateLiveStateDataId: (newId?: string) => void;
3767
3835
  };
3768
3836
 
3769
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesButtonWireframe as VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useRecordingDataByRecorderId, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
3837
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesButtonWireframe as VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useApproveCommentAnnotation, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCopyLink, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetLink, useGetRecording, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useRecordingDataByRecorderId, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "3.0.66",
3
+ "version": "3.0.68",
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": [