@replyke/core 7.0.0-beta.99 → 7.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/dist/cjs/config/axios.d.ts +1 -0
- package/dist/cjs/config/axios.js +5 -5
- package/dist/cjs/config/axios.js.map +1 -1
- package/dist/cjs/config/useAxiosPrivate.d.ts +2 -1
- package/dist/cjs/config/useAxiosPrivate.js +29 -73
- package/dist/cjs/config/useAxiosPrivate.js.map +1 -1
- package/dist/cjs/context/chat-context.d.ts +17 -0
- package/dist/cjs/context/chat-context.js +312 -0
- package/dist/cjs/context/chat-context.js.map +1 -0
- package/dist/cjs/context/comment-section-context.js +5 -17
- package/dist/cjs/context/comment-section-context.js.map +1 -1
- package/dist/cjs/context/conversation-context.d.ts +14 -0
- package/dist/cjs/context/conversation-context.js +168 -0
- package/dist/cjs/context/conversation-context.js.map +1 -0
- package/dist/cjs/context/entity-context.js +6 -19
- package/dist/cjs/context/entity-context.js.map +1 -1
- package/dist/cjs/context/index.d.ts +3 -0
- package/dist/cjs/context/index.js +13 -1
- package/dist/cjs/context/index.js.map +1 -1
- package/dist/cjs/context/message-thread-context.d.ts +13 -0
- package/dist/cjs/context/message-thread-context.js +20 -0
- package/dist/cjs/context/message-thread-context.js.map +1 -0
- package/dist/cjs/context/replyke-context.js +6 -7
- package/dist/cjs/context/replyke-context.js.map +1 -1
- package/dist/cjs/context/replyke-integration-context.js +20 -22
- package/dist/cjs/context/replyke-integration-context.js.map +1 -1
- package/dist/cjs/context/replyke-store-context.js +17 -19
- package/dist/cjs/context/replyke-store-context.js.map +1 -1
- package/dist/cjs/context/space-context.js +6 -19
- package/dist/cjs/context/space-context.js.map +1 -1
- package/dist/cjs/helpers/addCommentsToTree.js +28 -29
- package/dist/cjs/helpers/addCommentsToTree.js.map +1 -1
- package/dist/cjs/helpers/addNotificationsMessages.js +190 -99
- package/dist/cjs/helpers/addNotificationsMessages.js.map +1 -1
- package/dist/cjs/helpers/getPublicFileUrl.js +1 -1
- package/dist/cjs/helpers/getPublicFileUrl.js.map +1 -1
- package/dist/cjs/helpers/getUserName.js +2 -4
- package/dist/cjs/helpers/getUserName.js.map +1 -1
- package/dist/cjs/helpers/markCommentAsDeletedInTree.js +16 -14
- package/dist/cjs/helpers/markCommentAsDeletedInTree.js.map +1 -1
- package/dist/cjs/helpers/markCommentAsFailed.js +3 -14
- package/dist/cjs/helpers/markCommentAsFailed.js.map +1 -1
- package/dist/cjs/helpers/removeCommentFromTree.js +10 -30
- package/dist/cjs/helpers/removeCommentFromTree.js.map +1 -1
- package/dist/cjs/helpers/safeMergeStyleProps.js +4 -8
- package/dist/cjs/helpers/safeMergeStyleProps.js.map +1 -1
- package/dist/cjs/hooks/app-notifications/useAppNotifications.d.ts +3 -1
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js +34 -35
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.d.ts +6 -2
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js +122 -217
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/cjs/hooks/auth/index.d.ts +2 -0
- package/dist/cjs/hooks/auth/index.js +5 -1
- package/dist/cjs/hooks/auth/index.js.map +1 -1
- package/dist/cjs/hooks/auth/useAccountSync.d.ts +2 -2
- package/dist/cjs/hooks/auth/useAccountSync.js +61 -107
- package/dist/cjs/hooks/auth/useAccountSync.js.map +1 -1
- package/dist/cjs/hooks/auth/useAccounts.js +10 -11
- package/dist/cjs/hooks/auth/useAccounts.js.map +1 -1
- package/dist/cjs/hooks/auth/useAddAccount.js +11 -11
- package/dist/cjs/hooks/auth/useAddAccount.js.map +1 -1
- package/dist/cjs/hooks/auth/useAuth.js +69 -153
- package/dist/cjs/hooks/auth/useAuth.js.map +1 -1
- package/dist/cjs/hooks/auth/useOAuthIdentities.d.ts +3 -1
- package/dist/cjs/hooks/auth/useOAuthIdentities.js +41 -104
- package/dist/cjs/hooks/auth/useOAuthIdentities.js.map +1 -1
- package/dist/cjs/hooks/auth/useRemoveAccount.d.ts +3 -1
- package/dist/cjs/hooks/auth/useRemoveAccount.js +53 -106
- package/dist/cjs/hooks/auth/useRemoveAccount.js.map +1 -1
- package/dist/cjs/hooks/auth/useRequestPasswordReset.js +14 -60
- package/dist/cjs/hooks/auth/useRequestPasswordReset.js.map +1 -1
- package/dist/cjs/hooks/auth/useSendVerificationEmail.d.ts +10 -0
- package/dist/cjs/hooks/auth/useSendVerificationEmail.js +21 -0
- package/dist/cjs/hooks/auth/useSendVerificationEmail.js.map +1 -0
- package/dist/cjs/hooks/auth/useSignOutAll.js +16 -62
- package/dist/cjs/hooks/auth/useSignOutAll.js.map +1 -1
- package/dist/cjs/hooks/auth/useSwitchAccount.d.ts +3 -1
- package/dist/cjs/hooks/auth/useSwitchAccount.js +45 -94
- package/dist/cjs/hooks/auth/useSwitchAccount.js.map +1 -1
- package/dist/cjs/hooks/auth/useVerifyEmail.d.ts +7 -0
- package/dist/cjs/hooks/auth/useVerifyEmail.js +31 -0
- package/dist/cjs/hooks/auth/useVerifyEmail.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/index.d.ts +16 -0
- package/dist/cjs/hooks/chat/conversations/index.js +23 -0
- package/dist/cjs/hooks/chat/conversations/index.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useConversation.d.ts +13 -0
- package/dist/cjs/hooks/chat/conversations/useConversation.js +51 -0
- package/dist/cjs/hooks/chat/conversations/useConversation.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useConversationMembers.d.ts +27 -0
- package/dist/cjs/hooks/chat/conversations/useConversationMembers.js +116 -0
- package/dist/cjs/hooks/chat/conversations/useConversationMembers.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useConversations.d.ts +17 -0
- package/dist/cjs/hooks/chat/conversations/useConversations.js +101 -0
- package/dist/cjs/hooks/chat/conversations/useConversations.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useCreateDirectConversation.d.ts +6 -0
- package/dist/cjs/hooks/chat/conversations/useCreateDirectConversation.js +35 -0
- package/dist/cjs/hooks/chat/conversations/useCreateDirectConversation.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useDeleteConversation.d.ts +5 -0
- package/dist/cjs/hooks/chat/conversations/useDeleteConversation.js +22 -0
- package/dist/cjs/hooks/chat/conversations/useDeleteConversation.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useFetchConversation.d.ts +6 -0
- package/dist/cjs/hooks/chat/conversations/useFetchConversation.js +23 -0
- package/dist/cjs/hooks/chat/conversations/useFetchConversation.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useFetchSpaceConversation.d.ts +10 -0
- package/dist/cjs/hooks/chat/conversations/useFetchSpaceConversation.js +41 -0
- package/dist/cjs/hooks/chat/conversations/useFetchSpaceConversation.js.map +1 -0
- package/dist/cjs/hooks/chat/conversations/useUpdateConversation.d.ts +10 -0
- package/dist/cjs/hooks/chat/conversations/useUpdateConversation.js +23 -0
- package/dist/cjs/hooks/chat/conversations/useUpdateConversation.js.map +1 -0
- package/dist/cjs/hooks/chat/index.d.ts +16 -0
- package/dist/cjs/hooks/chat/index.js +41 -0
- package/dist/cjs/hooks/chat/index.js.map +1 -0
- package/dist/cjs/hooks/chat/messages/index.d.ts +12 -0
- package/dist/cjs/hooks/chat/messages/index.js +19 -0
- package/dist/cjs/hooks/chat/messages/index.js.map +1 -0
- package/dist/cjs/hooks/chat/messages/useChatMessages.d.ts +15 -0
- package/dist/cjs/hooks/chat/messages/useChatMessages.js +144 -0
- package/dist/cjs/hooks/chat/messages/useChatMessages.js.map +1 -0
- package/dist/cjs/hooks/chat/messages/useDeleteMessage.d.ts +6 -0
- package/dist/cjs/hooks/chat/messages/useDeleteMessage.js +32 -0
- package/dist/cjs/hooks/chat/messages/useDeleteMessage.js.map +1 -0
- package/dist/cjs/hooks/chat/messages/useEditMessage.d.ts +13 -0
- package/dist/cjs/hooks/chat/messages/useEditMessage.js +33 -0
- package/dist/cjs/hooks/chat/messages/useEditMessage.js.map +1 -0
- package/dist/cjs/hooks/chat/messages/useMessageThread.d.ts +15 -0
- package/dist/cjs/hooks/chat/messages/useMessageThread.js +24 -0
- package/dist/cjs/hooks/chat/messages/useMessageThread.js.map +1 -0
- package/dist/cjs/hooks/chat/messages/useSendMessage.d.ts +17 -0
- package/dist/cjs/hooks/chat/messages/useSendMessage.js +103 -0
- package/dist/cjs/hooks/chat/messages/useSendMessage.js.map +1 -0
- package/dist/cjs/hooks/chat/messages/useToggleReaction.d.ts +11 -0
- package/dist/cjs/hooks/chat/messages/useToggleReaction.js +46 -0
- package/dist/cjs/hooks/chat/messages/useToggleReaction.js.map +1 -0
- package/dist/cjs/hooks/chat/useChatSocket.d.ts +11 -0
- package/dist/cjs/hooks/chat/useChatSocket.js +13 -0
- package/dist/cjs/hooks/chat/useChatSocket.js.map +1 -0
- package/dist/cjs/hooks/chat/useConversationData.d.ts +33 -0
- package/dist/cjs/hooks/chat/useConversationData.js +46 -0
- package/dist/cjs/hooks/chat/useConversationData.js.map +1 -0
- package/dist/cjs/hooks/chat/useMarkConversationAsRead.d.ts +12 -0
- package/dist/cjs/hooks/chat/useMarkConversationAsRead.js +37 -0
- package/dist/cjs/hooks/chat/useMarkConversationAsRead.js.map +1 -0
- package/dist/cjs/hooks/chat/useReportMessage.d.ts +8 -0
- package/dist/cjs/hooks/chat/useReportMessage.js +27 -0
- package/dist/cjs/hooks/chat/useReportMessage.js.map +1 -0
- package/dist/cjs/hooks/chat/useTotalUnreadCount.d.ts +7 -0
- package/dist/cjs/hooks/chat/useTotalUnreadCount.js +14 -0
- package/dist/cjs/hooks/chat/useTotalUnreadCount.js.map +1 -0
- package/dist/cjs/hooks/chat/useTypingIndicator.d.ts +21 -0
- package/dist/cjs/hooks/chat/useTypingIndicator.js +67 -0
- package/dist/cjs/hooks/chat/useTypingIndicator.js.map +1 -0
- package/dist/cjs/hooks/chat/useUnreadConversationCount.d.ts +12 -0
- package/dist/cjs/hooks/chat/useUnreadConversationCount.js +19 -0
- package/dist/cjs/hooks/chat/useUnreadConversationCount.js.map +1 -0
- package/dist/cjs/hooks/collections/index.d.ts +0 -1
- package/dist/cjs/hooks/collections/index.js +1 -3
- package/dist/cjs/hooks/collections/index.js.map +1 -1
- package/dist/cjs/hooks/collections/useCollectionEntitiesWrapper.js +92 -162
- package/dist/cjs/hooks/collections/useCollectionEntitiesWrapper.js.map +1 -1
- package/dist/cjs/hooks/collections/useCollections.d.ts +4 -1
- package/dist/cjs/hooks/collections/useCollections.js +136 -210
- package/dist/cjs/hooks/collections/useCollections.js.map +1 -1
- package/dist/cjs/hooks/collections/useCollectionsActions.d.ts +33 -9
- package/dist/cjs/hooks/collections/useCollectionsActions.js +155 -282
- package/dist/cjs/hooks/collections/useCollectionsActions.js.map +1 -1
- package/dist/cjs/hooks/comments/index.d.ts +1 -1
- package/dist/cjs/hooks/comments/index.js.map +1 -1
- package/dist/cjs/hooks/comments/useCommentSection.js +2 -2
- package/dist/cjs/hooks/comments/useCommentSection.js.map +1 -1
- package/dist/cjs/hooks/comments/useCommentSectionData.d.ts +13 -2
- package/dist/cjs/hooks/comments/useCommentSectionData.js +295 -377
- package/dist/cjs/hooks/comments/useCommentSectionData.js.map +1 -1
- package/dist/cjs/hooks/comments/useCreateComment.js +33 -78
- package/dist/cjs/hooks/comments/useCreateComment.js.map +1 -1
- package/dist/cjs/hooks/comments/useDeleteComment.js +14 -60
- package/dist/cjs/hooks/comments/useDeleteComment.js.map +1 -1
- package/dist/cjs/hooks/comments/useEntityComments.d.ts +6 -2
- package/dist/cjs/hooks/comments/useEntityComments.js +103 -170
- package/dist/cjs/hooks/comments/useEntityComments.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchComment.js +19 -65
- package/dist/cjs/hooks/comments/useFetchComment.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchCommentByForeignId.js +21 -67
- package/dist/cjs/hooks/comments/useFetchCommentByForeignId.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchManyComments.d.ts +1 -1
- package/dist/cjs/hooks/comments/useFetchManyComments.js +36 -81
- package/dist/cjs/hooks/comments/useFetchManyComments.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchManyCommentsWrapper.js +82 -152
- package/dist/cjs/hooks/comments/useFetchManyCommentsWrapper.js.map +1 -1
- package/dist/cjs/hooks/comments/useReplies.js +50 -102
- package/dist/cjs/hooks/comments/useReplies.js.map +1 -1
- package/dist/cjs/hooks/comments/useUpdateComment.js +35 -80
- package/dist/cjs/hooks/comments/useUpdateComment.js.map +1 -1
- package/dist/cjs/hooks/crypto/useSignTestingJwt.js +30 -67
- package/dist/cjs/hooks/crypto/useSignTestingJwt.js.map +1 -1
- package/dist/cjs/hooks/entities/index.d.ts +2 -1
- package/dist/cjs/hooks/entities/index.js +3 -3
- package/dist/cjs/hooks/entities/index.js.map +1 -1
- package/dist/cjs/hooks/entities/useCreateEntity.js +99 -139
- package/dist/cjs/hooks/entities/useCreateEntity.js.map +1 -1
- package/dist/cjs/hooks/entities/useDeleteEntity.js +14 -60
- package/dist/cjs/hooks/entities/useDeleteEntity.js.map +1 -1
- package/dist/cjs/hooks/entities/useEntity.js +2 -2
- package/dist/cjs/hooks/entities/useEntity.js.map +1 -1
- package/dist/cjs/hooks/entities/useEntityData.d.ts +0 -1
- package/dist/cjs/hooks/entities/useEntityData.js +89 -197
- package/dist/cjs/hooks/entities/useEntityData.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchDrafts.d.ts +1 -1
- package/dist/cjs/hooks/entities/useFetchDrafts.js +26 -71
- package/dist/cjs/hooks/entities/useFetchDrafts.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchEntity.js +18 -64
- package/dist/cjs/hooks/entities/useFetchEntity.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchEntityByForeignId.js +20 -66
- package/dist/cjs/hooks/entities/useFetchEntityByForeignId.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchEntityByShortId.js +19 -65
- package/dist/cjs/hooks/entities/useFetchEntityByShortId.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchManyEntities.d.ts +1 -1
- package/dist/cjs/hooks/entities/useFetchManyEntities.js +71 -119
- package/dist/cjs/hooks/entities/useFetchManyEntities.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js +108 -181
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -1
- package/dist/cjs/hooks/entities/useIsEntitySaved.d.ts +13 -0
- package/dist/cjs/hooks/entities/useIsEntitySaved.js +32 -0
- package/dist/cjs/hooks/entities/useIsEntitySaved.js.map +1 -0
- package/dist/cjs/hooks/entities/usePublishDraft.js +15 -61
- package/dist/cjs/hooks/entities/usePublishDraft.js.map +1 -1
- package/dist/cjs/hooks/entities/useUpdateEntity.js +25 -70
- package/dist/cjs/hooks/entities/useUpdateEntity.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/index.d.ts +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityList.js +211 -316
- package/dist/cjs/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityListActions.js +112 -181
- package/dist/cjs/hooks/entity-lists/useEntityListActions.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useInfusedData.js +41 -111
- package/dist/cjs/hooks/entity-lists/useInfusedData.js.map +1 -1
- package/dist/cjs/hooks/projects/useProject.js +2 -2
- package/dist/cjs/hooks/projects/useProject.js.map +1 -1
- package/dist/cjs/hooks/projects/useProjectData.js +17 -65
- package/dist/cjs/hooks/projects/useProjectData.js.map +1 -1
- package/dist/cjs/hooks/reactions/useAddReaction.js +23 -67
- package/dist/cjs/hooks/reactions/useAddReaction.js.map +1 -1
- package/dist/cjs/hooks/reactions/useFetchCommentReactions.d.ts +1 -1
- package/dist/cjs/hooks/reactions/useFetchCommentReactions.js +29 -74
- package/dist/cjs/hooks/reactions/useFetchCommentReactions.js.map +1 -1
- package/dist/cjs/hooks/reactions/useFetchCommentReactionsWrapper.js +73 -143
- package/dist/cjs/hooks/reactions/useFetchCommentReactionsWrapper.js.map +1 -1
- package/dist/cjs/hooks/reactions/useFetchEntityReactions.d.ts +1 -1
- package/dist/cjs/hooks/reactions/useFetchEntityReactions.js +29 -74
- package/dist/cjs/hooks/reactions/useFetchEntityReactions.js.map +1 -1
- package/dist/cjs/hooks/reactions/useFetchEntityReactionsWrapper.js +73 -143
- package/dist/cjs/hooks/reactions/useFetchEntityReactionsWrapper.js.map +1 -1
- package/dist/cjs/hooks/reactions/useReactionToggle.js +64 -126
- package/dist/cjs/hooks/reactions/useReactionToggle.js.map +1 -1
- package/dist/cjs/hooks/reactions/useRemoveReaction.js +20 -64
- package/dist/cjs/hooks/reactions/useRemoveReaction.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useAcceptConnection.js +21 -66
- package/dist/cjs/hooks/relationships/connections/useAcceptConnection.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useConnectionManager.js +183 -302
- package/dist/cjs/hooks/relationships/connections/useConnectionManager.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useDeclineConnection.js +21 -66
- package/dist/cjs/hooks/relationships/connections/useDeclineConnection.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionStatus.js +24 -69
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionStatus.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.js +20 -81
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsByUserId.js +19 -64
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsCount.js +17 -62
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsCount.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsCountByUserId.js +15 -60
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsCountByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.js +20 -81
- package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.js +20 -81
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useRemoveConnection.js +21 -66
- package/dist/cjs/hooks/relationships/connections/useRemoveConnection.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useRemoveConnectionByUserId.js +24 -69
- package/dist/cjs/hooks/relationships/connections/useRemoveConnectionByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useRequestConnection.js +16 -61
- package/dist/cjs/hooks/relationships/connections/useRequestConnection.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowStatus.js +24 -69
- package/dist/cjs/hooks/relationships/follows/useFetchFollowStatus.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.d.ts +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.js +16 -77
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersByUserId.d.ts +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersByUserId.js +14 -60
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersCount.js +17 -62
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersCount.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersCountByUserId.js +14 -60
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersCountByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowing.d.ts +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowing.js +19 -80
- package/dist/cjs/hooks/relationships/follows/useFetchFollowing.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingByUserId.d.ts +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingByUserId.js +18 -64
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingCount.js +17 -62
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingCount.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingCountByUserId.js +14 -60
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingCountByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFollowManager.js +47 -108
- package/dist/cjs/hooks/relationships/follows/useFollowManager.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFollowUser.js +15 -61
- package/dist/cjs/hooks/relationships/follows/useFollowUser.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useUnfollowByFollowId.js +20 -66
- package/dist/cjs/hooks/relationships/follows/useUnfollowByFollowId.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useUnfollowUserByUserId.js +23 -69
- package/dist/cjs/hooks/relationships/follows/useUnfollowUserByUserId.js.map +1 -1
- package/dist/cjs/hooks/reports/useCreateReport.js +34 -97
- package/dist/cjs/hooks/reports/useCreateReport.js.map +1 -1
- package/dist/cjs/hooks/reports/useFetchModeratedReports.d.ts +1 -1
- package/dist/cjs/hooks/reports/useFetchModeratedReports.js +12 -58
- package/dist/cjs/hooks/reports/useFetchModeratedReports.js.map +1 -1
- package/dist/cjs/hooks/reports/useHandleSpaceCommentReport.js +20 -66
- package/dist/cjs/hooks/reports/useHandleSpaceCommentReport.js.map +1 -1
- package/dist/cjs/hooks/reports/useHandleSpaceEntityReport.js +20 -66
- package/dist/cjs/hooks/reports/useHandleSpaceEntityReport.js.map +1 -1
- package/dist/cjs/hooks/search/index.d.ts +8 -0
- package/dist/cjs/hooks/search/index.js +15 -0
- package/dist/cjs/hooks/search/index.js.map +1 -0
- package/dist/cjs/hooks/search/useAskContent.d.ts +23 -0
- package/dist/cjs/hooks/search/useAskContent.js +167 -0
- package/dist/cjs/hooks/search/useAskContent.js.map +1 -0
- package/dist/cjs/hooks/search/useSearchContent.d.ts +23 -0
- package/dist/cjs/hooks/search/useSearchContent.js +41 -0
- package/dist/cjs/hooks/search/useSearchContent.js.map +1 -0
- package/dist/cjs/hooks/search/useSearchSpaces.d.ts +17 -0
- package/dist/cjs/hooks/search/useSearchSpaces.js +41 -0
- package/dist/cjs/hooks/search/useSearchSpaces.js.map +1 -0
- package/dist/cjs/hooks/search/useSearchUsers.d.ts +17 -0
- package/dist/cjs/hooks/search/useSearchUsers.js +41 -0
- package/dist/cjs/hooks/search/useSearchUsers.js.map +1 -0
- package/dist/cjs/hooks/space-lists/useSpaceList.js +149 -257
- package/dist/cjs/hooks/space-lists/useSpaceList.js.map +1 -1
- package/dist/cjs/hooks/space-lists/useSpaceListActions.js +108 -195
- package/dist/cjs/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/cjs/hooks/spaces/index.d.ts +8 -0
- package/dist/cjs/hooks/spaces/index.js +11 -1
- package/dist/cjs/hooks/spaces/index.js.map +1 -1
- package/dist/cjs/hooks/spaces/rules/useCreateRule.js +20 -66
- package/dist/cjs/hooks/spaces/rules/useCreateRule.js.map +1 -1
- package/dist/cjs/hooks/spaces/rules/useDeleteRule.js +18 -64
- package/dist/cjs/hooks/spaces/rules/useDeleteRule.js.map +1 -1
- package/dist/cjs/hooks/spaces/rules/useFetchManyRules.js +15 -61
- package/dist/cjs/hooks/spaces/rules/useFetchManyRules.js.map +1 -1
- package/dist/cjs/hooks/spaces/rules/useFetchRule.js +18 -64
- package/dist/cjs/hooks/spaces/rules/useFetchRule.js.map +1 -1
- package/dist/cjs/hooks/spaces/rules/useReorderRules.js +18 -64
- package/dist/cjs/hooks/spaces/rules/useReorderRules.js.map +1 -1
- package/dist/cjs/hooks/spaces/rules/useUpdateRule.js +18 -64
- package/dist/cjs/hooks/spaces/rules/useUpdateRule.js.map +1 -1
- package/dist/cjs/hooks/spaces/useApproveMember.js +15 -61
- package/dist/cjs/hooks/spaces/useApproveMember.js.map +1 -1
- package/dist/cjs/hooks/spaces/useCheckMyMembership.js +15 -61
- package/dist/cjs/hooks/spaces/useCheckMyMembership.js.map +1 -1
- package/dist/cjs/hooks/spaces/useCheckSlugAvailability.js +15 -61
- package/dist/cjs/hooks/spaces/useCheckSlugAvailability.js.map +1 -1
- package/dist/cjs/hooks/spaces/useCreateSpace.js +68 -110
- package/dist/cjs/hooks/spaces/useCreateSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useDeclineMember.js +15 -61
- package/dist/cjs/hooks/spaces/useDeclineMember.js.map +1 -1
- package/dist/cjs/hooks/spaces/useDeleteSpace.js +15 -61
- package/dist/cjs/hooks/spaces/useDeleteSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchDigestConfig.d.ts +6 -0
- package/dist/cjs/hooks/spaces/useFetchDigestConfig.js +25 -0
- package/dist/cjs/hooks/spaces/useFetchDigestConfig.js.map +1 -0
- package/dist/cjs/hooks/spaces/useFetchManySpaces.d.ts +1 -1
- package/dist/cjs/hooks/spaces/useFetchManySpaces.js +37 -82
- package/dist/cjs/hooks/spaces/useFetchManySpaces.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpace.js +18 -64
- package/dist/cjs/hooks/spaces/useFetchSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceBreadcrumb.js +15 -61
- package/dist/cjs/hooks/spaces/useFetchSpaceBreadcrumb.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceByShortId.js +19 -65
- package/dist/cjs/hooks/spaces/useFetchSpaceByShortId.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceBySlug.js +19 -65
- package/dist/cjs/hooks/spaces/useFetchSpaceBySlug.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.d.ts +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.js +19 -65
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceMembers.js +15 -61
- package/dist/cjs/hooks/spaces/useFetchSpaceMembers.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceTeam.js +16 -62
- package/dist/cjs/hooks/spaces/useFetchSpaceTeam.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchUserSpaces.js +16 -95
- package/dist/cjs/hooks/spaces/useFetchUserSpaces.js.map +1 -1
- package/dist/cjs/hooks/spaces/useJoinSpace.js +15 -61
- package/dist/cjs/hooks/spaces/useJoinSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useLeaveSpace.js +15 -61
- package/dist/cjs/hooks/spaces/useLeaveSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useModerateSpaceComment.js +15 -61
- package/dist/cjs/hooks/spaces/useModerateSpaceComment.js.map +1 -1
- package/dist/cjs/hooks/spaces/useModerateSpaceEntity.js +15 -61
- package/dist/cjs/hooks/spaces/useModerateSpaceEntity.js.map +1 -1
- package/dist/cjs/hooks/spaces/useRemoveMember.js +15 -61
- package/dist/cjs/hooks/spaces/useRemoveMember.js.map +1 -1
- package/dist/cjs/hooks/spaces/useSpace.js +4 -4
- package/dist/cjs/hooks/spaces/useSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useSpaceData.js +186 -307
- package/dist/cjs/hooks/spaces/useSpaceData.js.map +1 -1
- package/dist/cjs/hooks/spaces/useSpaceMentions.d.ts +24 -0
- package/dist/cjs/hooks/spaces/useSpaceMentions.js +136 -0
- package/dist/cjs/hooks/spaces/useSpaceMentions.js.map +1 -0
- package/dist/cjs/hooks/spaces/useSpacePermissions.js +16 -17
- package/dist/cjs/hooks/spaces/useSpacePermissions.js.map +1 -1
- package/dist/cjs/hooks/spaces/useUnbanMember.d.ts +11 -0
- package/dist/cjs/hooks/spaces/useUnbanMember.js +25 -0
- package/dist/cjs/hooks/spaces/useUnbanMember.js.map +1 -0
- package/dist/cjs/hooks/spaces/useUpdateDigestConfig.d.ts +7 -0
- package/dist/cjs/hooks/spaces/useUpdateDigestConfig.js +25 -0
- package/dist/cjs/hooks/spaces/useUpdateDigestConfig.js.map +1 -0
- package/dist/cjs/hooks/spaces/useUpdateMemberRole.js +15 -61
- package/dist/cjs/hooks/spaces/useUpdateMemberRole.js.map +1 -1
- package/dist/cjs/hooks/spaces/useUpdateSpace.js +62 -105
- package/dist/cjs/hooks/spaces/useUpdateSpace.js.map +1 -1
- package/dist/cjs/hooks/storage/useUploadFile.js +49 -93
- package/dist/cjs/hooks/storage/useUploadFile.js.map +1 -1
- package/dist/cjs/hooks/storage/useUploadImage.js +95 -142
- package/dist/cjs/hooks/storage/useUploadImage.js.map +1 -1
- package/dist/cjs/hooks/useStableObject.js +3 -3
- package/dist/cjs/hooks/useStableObject.js.map +1 -1
- package/dist/cjs/hooks/user/useUser.js +35 -83
- package/dist/cjs/hooks/user/useUser.js.map +1 -1
- package/dist/cjs/hooks/user/useUserActions.d.ts +6 -1
- package/dist/cjs/hooks/user/useUserActions.js +62 -105
- package/dist/cjs/hooks/user/useUserActions.js.map +1 -1
- package/dist/cjs/hooks/users/index.d.ts +1 -1
- package/dist/cjs/hooks/users/index.js +3 -3
- package/dist/cjs/hooks/users/index.js.map +1 -1
- package/dist/cjs/hooks/users/useCheckUsernameAvailability.js +15 -61
- package/dist/cjs/hooks/users/useCheckUsernameAvailability.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUser.js +17 -63
- package/dist/cjs/hooks/users/useFetchUser.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUserByForeignId.js +18 -64
- package/dist/cjs/hooks/users/useFetchUserByForeignId.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUserByUsername.js +18 -64
- package/dist/cjs/hooks/users/useFetchUserByUsername.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUserSuggestions.js +15 -61
- package/dist/cjs/hooks/users/useFetchUserSuggestions.js.map +1 -1
- package/dist/cjs/hooks/users/{useMentions.d.ts → useUserMentions.d.ts} +8 -4
- package/dist/cjs/hooks/users/useUserMentions.js +136 -0
- package/dist/cjs/hooks/users/useUserMentions.js.map +1 -0
- package/dist/cjs/hooks/utils/useGetMetadata.js +23 -69
- package/dist/cjs/hooks/utils/useGetMetadata.js.map +1 -1
- package/dist/cjs/index.d.ts +20 -13
- package/dist/cjs/index.js +86 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/{IAccountStorage.d.ts → AccountStorage.d.ts} +1 -1
- package/dist/cjs/interfaces/{IAccountStorage.js → AccountStorage.js} +1 -1
- package/dist/cjs/interfaces/AccountStorage.js.map +1 -0
- package/dist/cjs/interfaces/EntityListSortByOptions.js +4 -4
- package/dist/cjs/interfaces/EntityListSortByOptions.js.map +1 -1
- package/dist/cjs/interfaces/{IPaginatedResponse.js → PaginatedResponse.js} +1 -1
- package/dist/cjs/interfaces/PaginatedResponse.js.map +1 -0
- package/dist/cjs/interfaces/models/AppNotification.d.ts +131 -21
- package/dist/cjs/interfaces/models/ChatMessage.d.ts +34 -0
- package/dist/cjs/interfaces/models/ChatMessage.js +3 -0
- package/dist/cjs/interfaces/models/ChatMessage.js.map +1 -0
- package/dist/cjs/interfaces/models/Collection.d.ts +1 -1
- package/dist/cjs/interfaces/models/Connection.d.ts +0 -1
- package/dist/cjs/interfaces/models/Conversation.d.ts +25 -0
- package/dist/cjs/interfaces/models/Conversation.js +3 -0
- package/dist/cjs/interfaces/models/Conversation.js.map +1 -0
- package/dist/cjs/interfaces/models/ConversationMember.d.ts +16 -0
- package/dist/cjs/interfaces/models/ConversationMember.js +3 -0
- package/dist/cjs/interfaces/models/ConversationMember.js.map +1 -0
- package/dist/cjs/interfaces/models/Entity.d.ts +1 -0
- package/dist/cjs/interfaces/models/File.d.ts +1 -0
- package/dist/cjs/interfaces/models/Mention.d.ts +8 -1
- package/dist/cjs/interfaces/models/Space.d.ts +15 -1
- package/dist/cjs/interfaces/models/SpaceMember.d.ts +2 -2
- package/dist/cjs/store/api/appNotificationsApi.d.ts +1 -1
- package/dist/cjs/store/api/appNotificationsApi.js +92 -196
- package/dist/cjs/store/api/appNotificationsApi.js.map +1 -1
- package/dist/cjs/store/api/baseApi.js +9 -11
- package/dist/cjs/store/api/baseApi.js.map +1 -1
- package/dist/cjs/store/api/collectionsApi.js +100 -207
- package/dist/cjs/store/api/collectionsApi.js.map +1 -1
- package/dist/cjs/store/api/entityListsApi.d.ts +193 -192
- package/dist/cjs/store/api/entityListsApi.js +83 -173
- package/dist/cjs/store/api/entityListsApi.js.map +1 -1
- package/dist/cjs/store/api/spacesApi.d.ts +364 -0
- package/dist/cjs/store/api/spacesApi.js +211 -398
- package/dist/cjs/store/api/spacesApi.js.map +1 -1
- package/dist/cjs/store/api/userApi.js +12 -13
- package/dist/cjs/store/api/userApi.js.map +1 -1
- package/dist/cjs/store/hooks.d.ts +1 -0
- package/dist/cjs/store/hooks.js +2 -2
- package/dist/cjs/store/hooks.js.map +1 -1
- package/dist/cjs/store/index.d.ts +2 -0
- package/dist/cjs/store/index.js +42 -44
- package/dist/cjs/store/index.js.map +1 -1
- package/dist/cjs/store/integration.js +6 -14
- package/dist/cjs/store/integration.js.map +1 -1
- package/dist/cjs/store/middleware.js +13 -21
- package/dist/cjs/store/middleware.js.map +1 -1
- package/dist/cjs/store/replykeReducers.d.ts +2 -0
- package/dist/cjs/store/replykeReducers.js +10 -8
- package/dist/cjs/store/replykeReducers.js.map +1 -1
- package/dist/cjs/store/rootReducer.d.ts +3 -0
- package/dist/cjs/store/rootReducer.js +7 -9
- package/dist/cjs/store/rootReducer.js.map +1 -1
- package/dist/cjs/store/slices/accountsSlice.js +18 -26
- package/dist/cjs/store/slices/accountsSlice.js.map +1 -1
- package/dist/cjs/store/slices/appNotificationsSlice.d.ts +528 -330
- package/dist/cjs/store/slices/appNotificationsSlice.js +30 -47
- package/dist/cjs/store/slices/appNotificationsSlice.js.map +1 -1
- package/dist/cjs/store/slices/authSlice.js +19 -31
- package/dist/cjs/store/slices/authSlice.js.map +1 -1
- package/dist/cjs/store/slices/authThunks.js +267 -455
- package/dist/cjs/store/slices/authThunks.js.map +1 -1
- package/dist/cjs/store/slices/chatSlice.d.ts +131 -0
- package/dist/cjs/store/slices/chatSlice.js +368 -0
- package/dist/cjs/store/slices/chatSlice.js.map +1 -0
- package/dist/cjs/store/slices/collectionsSlice.d.ts +14 -14
- package/dist/cjs/store/slices/collectionsSlice.js +48 -58
- package/dist/cjs/store/slices/collectionsSlice.js.map +1 -1
- package/dist/cjs/store/slices/entityListsSlice.d.ts +180 -24
- package/dist/cjs/store/slices/entityListsSlice.js +76 -89
- package/dist/cjs/store/slices/entityListsSlice.js.map +1 -1
- package/dist/cjs/store/slices/spaceListsSlice.d.ts +24 -0
- package/dist/cjs/store/slices/spaceListsSlice.js +58 -79
- package/dist/cjs/store/slices/spaceListsSlice.js.map +1 -1
- package/dist/cjs/store/slices/userSlice.d.ts +16 -0
- package/dist/cjs/store/slices/userSlice.js +22 -45
- package/dist/cjs/store/slices/userSlice.js.map +1 -1
- package/dist/cjs/types/socket.d.ts +73 -0
- package/dist/cjs/types/socket.js +3 -0
- package/dist/cjs/types/socket.js.map +1 -0
- package/dist/cjs/utils/env.js +11 -12
- package/dist/cjs/utils/env.js.map +1 -1
- package/dist/cjs/utils/handleError.js +3 -4
- package/dist/cjs/utils/handleError.js.map +1 -1
- package/dist/cjs/utils/isAbsoluteUrl.js +1 -1
- package/dist/cjs/utils/isAbsoluteUrl.js.map +1 -1
- package/dist/cjs/utils/isReactNative.js +1 -3
- package/dist/cjs/utils/isReactNative.js.map +1 -1
- package/dist/cjs/utils/isUUID.js +1 -1
- package/dist/cjs/utils/isUUID.js.map +1 -1
- package/dist/cjs/utils/keywordHelpers.js +27 -39
- package/dist/cjs/utils/keywordHelpers.js.map +1 -1
- package/dist/cjs/utils/objectComparison.js +6 -8
- package/dist/cjs/utils/objectComparison.js.map +1 -1
- package/dist/esm/config/axios.d.ts +1 -0
- package/dist/esm/config/axios.js +2 -2
- package/dist/esm/config/axios.js.map +1 -1
- package/dist/esm/config/useAxiosPrivate.d.ts +2 -1
- package/dist/esm/config/useAxiosPrivate.js +26 -70
- package/dist/esm/config/useAxiosPrivate.js.map +1 -1
- package/dist/esm/constants/reportReasons.js +1 -1
- package/dist/esm/constants/reportReasons.js.map +1 -1
- package/dist/esm/context/chat-context.d.ts +17 -0
- package/dist/esm/context/chat-context.js +304 -0
- package/dist/esm/context/chat-context.js.map +1 -0
- package/dist/esm/context/comment-section-context.js +3 -15
- package/dist/esm/context/comment-section-context.js.map +1 -1
- package/dist/esm/context/conversation-context.d.ts +14 -0
- package/dist/esm/context/conversation-context.js +160 -0
- package/dist/esm/context/conversation-context.js.map +1 -0
- package/dist/esm/context/entity-context.js +4 -17
- package/dist/esm/context/entity-context.js.map +1 -1
- package/dist/esm/context/index.d.ts +3 -0
- package/dist/esm/context/index.js +3 -0
- package/dist/esm/context/index.js.map +1 -1
- package/dist/esm/context/message-thread-context.d.ts +13 -0
- package/dist/esm/context/message-thread-context.js +12 -0
- package/dist/esm/context/message-thread-context.js.map +1 -0
- package/dist/esm/context/replyke-context.js +3 -4
- package/dist/esm/context/replyke-context.js.map +1 -1
- package/dist/esm/context/replyke-integration-context.js +12 -14
- package/dist/esm/context/replyke-integration-context.js.map +1 -1
- package/dist/esm/context/replyke-store-context.js +10 -12
- package/dist/esm/context/replyke-store-context.js.map +1 -1
- package/dist/esm/context/space-context.js +4 -17
- package/dist/esm/context/space-context.js.map +1 -1
- package/dist/esm/helpers/addCommentsToTree.js +27 -28
- package/dist/esm/helpers/addCommentsToTree.js.map +1 -1
- package/dist/esm/helpers/addNotificationsMessages.js +189 -98
- package/dist/esm/helpers/addNotificationsMessages.js.map +1 -1
- package/dist/esm/helpers/getPublicFileUrl.js +1 -1
- package/dist/esm/helpers/getPublicFileUrl.js.map +1 -1
- package/dist/esm/helpers/getUserName.js +2 -4
- package/dist/esm/helpers/getUserName.js.map +1 -1
- package/dist/esm/helpers/markCommentAsDeletedInTree.js +16 -14
- package/dist/esm/helpers/markCommentAsDeletedInTree.js.map +1 -1
- package/dist/esm/helpers/markCommentAsFailed.js +3 -14
- package/dist/esm/helpers/markCommentAsFailed.js.map +1 -1
- package/dist/esm/helpers/removeCommentFromTree.js +10 -30
- package/dist/esm/helpers/removeCommentFromTree.js.map +1 -1
- package/dist/esm/helpers/safeMergeStyleProps.js +4 -8
- package/dist/esm/helpers/safeMergeStyleProps.js.map +1 -1
- package/dist/esm/hooks/app-notifications/useAppNotifications.d.ts +3 -1
- package/dist/esm/hooks/app-notifications/useAppNotifications.js +27 -28
- package/dist/esm/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.d.ts +6 -2
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js +115 -210
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/esm/hooks/auth/index.d.ts +2 -0
- package/dist/esm/hooks/auth/index.js +2 -0
- package/dist/esm/hooks/auth/index.js.map +1 -1
- package/dist/esm/hooks/auth/useAccountSync.d.ts +2 -2
- package/dist/esm/hooks/auth/useAccountSync.js +55 -101
- package/dist/esm/hooks/auth/useAccountSync.js.map +1 -1
- package/dist/esm/hooks/auth/useAccounts.js +7 -8
- package/dist/esm/hooks/auth/useAccounts.js.map +1 -1
- package/dist/esm/hooks/auth/useAddAccount.js +5 -5
- package/dist/esm/hooks/auth/useAddAccount.js.map +1 -1
- package/dist/esm/hooks/auth/useAuth.js +64 -148
- package/dist/esm/hooks/auth/useAuth.js.map +1 -1
- package/dist/esm/hooks/auth/useOAuthIdentities.d.ts +3 -1
- package/dist/esm/hooks/auth/useOAuthIdentities.js +38 -101
- package/dist/esm/hooks/auth/useOAuthIdentities.js.map +1 -1
- package/dist/esm/hooks/auth/useRemoveAccount.d.ts +3 -1
- package/dist/esm/hooks/auth/useRemoveAccount.js +43 -96
- package/dist/esm/hooks/auth/useRemoveAccount.js.map +1 -1
- package/dist/esm/hooks/auth/useRequestPasswordReset.js +11 -57
- package/dist/esm/hooks/auth/useRequestPasswordReset.js.map +1 -1
- package/dist/esm/hooks/auth/useSendVerificationEmail.d.ts +10 -0
- package/dist/esm/hooks/auth/useSendVerificationEmail.js +16 -0
- package/dist/esm/hooks/auth/useSendVerificationEmail.js.map +1 -0
- package/dist/esm/hooks/auth/useSignOutAll.js +12 -58
- package/dist/esm/hooks/auth/useSignOutAll.js.map +1 -1
- package/dist/esm/hooks/auth/useSwitchAccount.d.ts +3 -1
- package/dist/esm/hooks/auth/useSwitchAccount.js +37 -86
- package/dist/esm/hooks/auth/useSwitchAccount.js.map +1 -1
- package/dist/esm/hooks/auth/useVerifyEmail.d.ts +7 -0
- package/dist/esm/hooks/auth/useVerifyEmail.js +26 -0
- package/dist/esm/hooks/auth/useVerifyEmail.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/index.d.ts +16 -0
- package/dist/esm/hooks/chat/conversations/index.js +9 -0
- package/dist/esm/hooks/chat/conversations/index.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useConversation.d.ts +13 -0
- package/dist/esm/hooks/chat/conversations/useConversation.js +46 -0
- package/dist/esm/hooks/chat/conversations/useConversation.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useConversationMembers.d.ts +27 -0
- package/dist/esm/hooks/chat/conversations/useConversationMembers.js +111 -0
- package/dist/esm/hooks/chat/conversations/useConversationMembers.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useConversations.d.ts +17 -0
- package/dist/esm/hooks/chat/conversations/useConversations.js +96 -0
- package/dist/esm/hooks/chat/conversations/useConversations.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useCreateDirectConversation.d.ts +6 -0
- package/dist/esm/hooks/chat/conversations/useCreateDirectConversation.js +30 -0
- package/dist/esm/hooks/chat/conversations/useCreateDirectConversation.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useDeleteConversation.d.ts +5 -0
- package/dist/esm/hooks/chat/conversations/useDeleteConversation.js +17 -0
- package/dist/esm/hooks/chat/conversations/useDeleteConversation.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useFetchConversation.d.ts +6 -0
- package/dist/esm/hooks/chat/conversations/useFetchConversation.js +18 -0
- package/dist/esm/hooks/chat/conversations/useFetchConversation.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useFetchSpaceConversation.d.ts +10 -0
- package/dist/esm/hooks/chat/conversations/useFetchSpaceConversation.js +36 -0
- package/dist/esm/hooks/chat/conversations/useFetchSpaceConversation.js.map +1 -0
- package/dist/esm/hooks/chat/conversations/useUpdateConversation.d.ts +10 -0
- package/dist/esm/hooks/chat/conversations/useUpdateConversation.js +18 -0
- package/dist/esm/hooks/chat/conversations/useUpdateConversation.js.map +1 -0
- package/dist/esm/hooks/chat/index.d.ts +16 -0
- package/dist/esm/hooks/chat/index.js +14 -0
- package/dist/esm/hooks/chat/index.js.map +1 -0
- package/dist/esm/hooks/chat/messages/index.d.ts +12 -0
- package/dist/esm/hooks/chat/messages/index.js +7 -0
- package/dist/esm/hooks/chat/messages/index.js.map +1 -0
- package/dist/esm/hooks/chat/messages/useChatMessages.d.ts +15 -0
- package/dist/esm/hooks/chat/messages/useChatMessages.js +139 -0
- package/dist/esm/hooks/chat/messages/useChatMessages.js.map +1 -0
- package/dist/esm/hooks/chat/messages/useDeleteMessage.d.ts +6 -0
- package/dist/esm/hooks/chat/messages/useDeleteMessage.js +27 -0
- package/dist/esm/hooks/chat/messages/useDeleteMessage.js.map +1 -0
- package/dist/esm/hooks/chat/messages/useEditMessage.d.ts +13 -0
- package/dist/esm/hooks/chat/messages/useEditMessage.js +28 -0
- package/dist/esm/hooks/chat/messages/useEditMessage.js.map +1 -0
- package/dist/esm/hooks/chat/messages/useMessageThread.d.ts +15 -0
- package/dist/esm/hooks/chat/messages/useMessageThread.js +19 -0
- package/dist/esm/hooks/chat/messages/useMessageThread.js.map +1 -0
- package/dist/esm/hooks/chat/messages/useSendMessage.d.ts +17 -0
- package/dist/esm/hooks/chat/messages/useSendMessage.js +98 -0
- package/dist/esm/hooks/chat/messages/useSendMessage.js.map +1 -0
- package/dist/esm/hooks/chat/messages/useToggleReaction.d.ts +11 -0
- package/dist/esm/hooks/chat/messages/useToggleReaction.js +41 -0
- package/dist/esm/hooks/chat/messages/useToggleReaction.js.map +1 -0
- package/dist/esm/hooks/chat/useChatSocket.d.ts +11 -0
- package/dist/esm/hooks/chat/useChatSocket.js +11 -0
- package/dist/esm/hooks/chat/useChatSocket.js.map +1 -0
- package/dist/esm/hooks/chat/useConversationData.d.ts +33 -0
- package/dist/esm/hooks/chat/useConversationData.js +41 -0
- package/dist/esm/hooks/chat/useConversationData.js.map +1 -0
- package/dist/esm/hooks/chat/useMarkConversationAsRead.d.ts +12 -0
- package/dist/esm/hooks/chat/useMarkConversationAsRead.js +32 -0
- package/dist/esm/hooks/chat/useMarkConversationAsRead.js.map +1 -0
- package/dist/esm/hooks/chat/useReportMessage.d.ts +8 -0
- package/dist/esm/hooks/chat/useReportMessage.js +22 -0
- package/dist/esm/hooks/chat/useReportMessage.js.map +1 -0
- package/dist/esm/hooks/chat/useTotalUnreadCount.d.ts +7 -0
- package/dist/esm/hooks/chat/useTotalUnreadCount.js +12 -0
- package/dist/esm/hooks/chat/useTotalUnreadCount.js.map +1 -0
- package/dist/esm/hooks/chat/useTypingIndicator.d.ts +21 -0
- package/dist/esm/hooks/chat/useTypingIndicator.js +65 -0
- package/dist/esm/hooks/chat/useTypingIndicator.js.map +1 -0
- package/dist/esm/hooks/chat/useUnreadConversationCount.d.ts +12 -0
- package/dist/esm/hooks/chat/useUnreadConversationCount.js +17 -0
- package/dist/esm/hooks/chat/useUnreadConversationCount.js.map +1 -0
- package/dist/esm/hooks/collections/index.d.ts +0 -1
- package/dist/esm/hooks/collections/index.js +0 -1
- package/dist/esm/hooks/collections/index.js.map +1 -1
- package/dist/esm/hooks/collections/useCollectionEntitiesWrapper.js +87 -157
- package/dist/esm/hooks/collections/useCollectionEntitiesWrapper.js.map +1 -1
- package/dist/esm/hooks/collections/useCollections.d.ts +4 -1
- package/dist/esm/hooks/collections/useCollections.js +129 -203
- package/dist/esm/hooks/collections/useCollections.js.map +1 -1
- package/dist/esm/hooks/collections/useCollectionsActions.d.ts +33 -9
- package/dist/esm/hooks/collections/useCollectionsActions.js +150 -277
- package/dist/esm/hooks/collections/useCollectionsActions.js.map +1 -1
- package/dist/esm/hooks/comments/index.d.ts +1 -1
- package/dist/esm/hooks/comments/index.js.map +1 -1
- package/dist/esm/hooks/comments/useCommentSectionData.d.ts +13 -2
- package/dist/esm/hooks/comments/useCommentSectionData.js +284 -366
- package/dist/esm/hooks/comments/useCommentSectionData.js.map +1 -1
- package/dist/esm/hooks/comments/useCreateComment.js +29 -74
- package/dist/esm/hooks/comments/useCreateComment.js.map +1 -1
- package/dist/esm/hooks/comments/useDeleteComment.js +11 -57
- package/dist/esm/hooks/comments/useDeleteComment.js.map +1 -1
- package/dist/esm/hooks/comments/useEntityComments.d.ts +6 -2
- package/dist/esm/hooks/comments/useEntityComments.js +97 -164
- package/dist/esm/hooks/comments/useEntityComments.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchComment.js +16 -62
- package/dist/esm/hooks/comments/useFetchComment.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchCommentByForeignId.js +18 -64
- package/dist/esm/hooks/comments/useFetchCommentByForeignId.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchManyComments.d.ts +1 -1
- package/dist/esm/hooks/comments/useFetchManyComments.js +33 -78
- package/dist/esm/hooks/comments/useFetchManyComments.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchManyCommentsWrapper.js +79 -149
- package/dist/esm/hooks/comments/useFetchManyCommentsWrapper.js.map +1 -1
- package/dist/esm/hooks/comments/useReplies.js +45 -97
- package/dist/esm/hooks/comments/useReplies.js.map +1 -1
- package/dist/esm/hooks/comments/useUpdateComment.js +32 -77
- package/dist/esm/hooks/comments/useUpdateComment.js.map +1 -1
- package/dist/esm/hooks/crypto/useSignTestingJwt.js +28 -65
- package/dist/esm/hooks/crypto/useSignTestingJwt.js.map +1 -1
- package/dist/esm/hooks/entities/index.d.ts +2 -1
- package/dist/esm/hooks/entities/index.js +1 -1
- package/dist/esm/hooks/entities/index.js.map +1 -1
- package/dist/esm/hooks/entities/useCreateEntity.js +96 -136
- package/dist/esm/hooks/entities/useCreateEntity.js.map +1 -1
- package/dist/esm/hooks/entities/useDeleteEntity.js +11 -57
- package/dist/esm/hooks/entities/useDeleteEntity.js.map +1 -1
- package/dist/esm/hooks/entities/useEntityData.d.ts +0 -1
- package/dist/esm/hooks/entities/useEntityData.js +82 -190
- package/dist/esm/hooks/entities/useEntityData.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchDrafts.d.ts +1 -1
- package/dist/esm/hooks/entities/useFetchDrafts.js +23 -68
- package/dist/esm/hooks/entities/useFetchDrafts.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchEntity.js +15 -61
- package/dist/esm/hooks/entities/useFetchEntity.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchEntityByForeignId.js +17 -63
- package/dist/esm/hooks/entities/useFetchEntityByForeignId.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchEntityByShortId.js +16 -62
- package/dist/esm/hooks/entities/useFetchEntityByShortId.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchManyEntities.d.ts +1 -1
- package/dist/esm/hooks/entities/useFetchManyEntities.js +68 -116
- package/dist/esm/hooks/entities/useFetchManyEntities.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js +105 -178
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -1
- package/dist/esm/hooks/entities/useIsEntitySaved.d.ts +13 -0
- package/dist/esm/hooks/entities/useIsEntitySaved.js +27 -0
- package/dist/esm/hooks/entities/useIsEntitySaved.js.map +1 -0
- package/dist/esm/hooks/entities/usePublishDraft.js +12 -58
- package/dist/esm/hooks/entities/usePublishDraft.js.map +1 -1
- package/dist/esm/hooks/entities/useUpdateEntity.js +21 -66
- package/dist/esm/hooks/entities/useUpdateEntity.js.map +1 -1
- package/dist/esm/hooks/entity-lists/index.d.ts +1 -1
- package/dist/esm/hooks/entity-lists/useEntityList.js +205 -310
- package/dist/esm/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useEntityListActions.js +106 -175
- package/dist/esm/hooks/entity-lists/useEntityListActions.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useInfusedData.js +38 -108
- package/dist/esm/hooks/entity-lists/useInfusedData.js.map +1 -1
- package/dist/esm/hooks/projects/useProjectData.js +14 -62
- package/dist/esm/hooks/projects/useProjectData.js.map +1 -1
- package/dist/esm/hooks/reactions/useAddReaction.js +20 -64
- package/dist/esm/hooks/reactions/useAddReaction.js.map +1 -1
- package/dist/esm/hooks/reactions/useFetchCommentReactions.d.ts +1 -1
- package/dist/esm/hooks/reactions/useFetchCommentReactions.js +26 -71
- package/dist/esm/hooks/reactions/useFetchCommentReactions.js.map +1 -1
- package/dist/esm/hooks/reactions/useFetchCommentReactionsWrapper.js +70 -140
- package/dist/esm/hooks/reactions/useFetchCommentReactionsWrapper.js.map +1 -1
- package/dist/esm/hooks/reactions/useFetchEntityReactions.d.ts +1 -1
- package/dist/esm/hooks/reactions/useFetchEntityReactions.js +26 -71
- package/dist/esm/hooks/reactions/useFetchEntityReactions.js.map +1 -1
- package/dist/esm/hooks/reactions/useFetchEntityReactionsWrapper.js +70 -140
- package/dist/esm/hooks/reactions/useFetchEntityReactionsWrapper.js.map +1 -1
- package/dist/esm/hooks/reactions/useReactionToggle.js +60 -122
- package/dist/esm/hooks/reactions/useReactionToggle.js.map +1 -1
- package/dist/esm/hooks/reactions/useRemoveReaction.js +17 -61
- package/dist/esm/hooks/reactions/useRemoveReaction.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useAcceptConnection.js +17 -62
- package/dist/esm/hooks/relationships/connections/useAcceptConnection.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useConnectionManager.js +175 -294
- package/dist/esm/hooks/relationships/connections/useConnectionManager.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useDeclineConnection.js +17 -62
- package/dist/esm/hooks/relationships/connections/useDeclineConnection.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionStatus.js +20 -65
- package/dist/esm/hooks/relationships/connections/useFetchConnectionStatus.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnections.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnections.js +16 -77
- package/dist/esm/hooks/relationships/connections/useFetchConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsByUserId.js +16 -61
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsCount.js +13 -58
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsCount.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsCountByUserId.js +12 -57
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsCountByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.js +16 -77
- package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.js +16 -77
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useRemoveConnection.js +17 -62
- package/dist/esm/hooks/relationships/connections/useRemoveConnection.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useRemoveConnectionByUserId.js +20 -65
- package/dist/esm/hooks/relationships/connections/useRemoveConnectionByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useRequestConnection.js +13 -58
- package/dist/esm/hooks/relationships/connections/useRequestConnection.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowStatus.js +20 -65
- package/dist/esm/hooks/relationships/follows/useFetchFollowStatus.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.d.ts +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.js +12 -73
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowersByUserId.d.ts +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowersByUserId.js +11 -57
- package/dist/esm/hooks/relationships/follows/useFetchFollowersByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowersCount.js +13 -58
- package/dist/esm/hooks/relationships/follows/useFetchFollowersCount.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowersCountByUserId.js +11 -57
- package/dist/esm/hooks/relationships/follows/useFetchFollowersCountByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowing.d.ts +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowing.js +15 -76
- package/dist/esm/hooks/relationships/follows/useFetchFollowing.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowingByUserId.d.ts +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowingByUserId.js +15 -61
- package/dist/esm/hooks/relationships/follows/useFetchFollowingByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowingCount.js +13 -58
- package/dist/esm/hooks/relationships/follows/useFetchFollowingCount.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowingCountByUserId.js +11 -57
- package/dist/esm/hooks/relationships/follows/useFetchFollowingCountByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFollowManager.js +42 -103
- package/dist/esm/hooks/relationships/follows/useFollowManager.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFollowUser.js +12 -58
- package/dist/esm/hooks/relationships/follows/useFollowUser.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useUnfollowByFollowId.js +16 -62
- package/dist/esm/hooks/relationships/follows/useUnfollowByFollowId.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useUnfollowUserByUserId.js +19 -65
- package/dist/esm/hooks/relationships/follows/useUnfollowUserByUserId.js.map +1 -1
- package/dist/esm/hooks/reports/useCreateReport.js +31 -94
- package/dist/esm/hooks/reports/useCreateReport.js.map +1 -1
- package/dist/esm/hooks/reports/useFetchModeratedReports.d.ts +1 -1
- package/dist/esm/hooks/reports/useFetchModeratedReports.js +9 -55
- package/dist/esm/hooks/reports/useFetchModeratedReports.js.map +1 -1
- package/dist/esm/hooks/reports/useHandleSpaceCommentReport.js +17 -63
- package/dist/esm/hooks/reports/useHandleSpaceCommentReport.js.map +1 -1
- package/dist/esm/hooks/reports/useHandleSpaceEntityReport.js +17 -63
- package/dist/esm/hooks/reports/useHandleSpaceEntityReport.js.map +1 -1
- package/dist/esm/hooks/search/index.d.ts +8 -0
- package/dist/esm/hooks/search/index.js +5 -0
- package/dist/esm/hooks/search/index.js.map +1 -0
- package/dist/esm/hooks/search/useAskContent.d.ts +23 -0
- package/dist/esm/hooks/search/useAskContent.js +161 -0
- package/dist/esm/hooks/search/useAskContent.js.map +1 -0
- package/dist/esm/hooks/search/useSearchContent.d.ts +23 -0
- package/dist/esm/hooks/search/useSearchContent.js +35 -0
- package/dist/esm/hooks/search/useSearchContent.js.map +1 -0
- package/dist/esm/hooks/search/useSearchSpaces.d.ts +17 -0
- package/dist/esm/hooks/search/useSearchSpaces.js +35 -0
- package/dist/esm/hooks/search/useSearchSpaces.js.map +1 -0
- package/dist/esm/hooks/search/useSearchUsers.d.ts +17 -0
- package/dist/esm/hooks/search/useSearchUsers.js +35 -0
- package/dist/esm/hooks/search/useSearchUsers.js.map +1 -0
- package/dist/esm/hooks/space-lists/useSpaceList.js +144 -252
- package/dist/esm/hooks/space-lists/useSpaceList.js.map +1 -1
- package/dist/esm/hooks/space-lists/useSpaceListActions.js +102 -189
- package/dist/esm/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/esm/hooks/spaces/index.d.ts +8 -0
- package/dist/esm/hooks/spaces/index.js +6 -0
- package/dist/esm/hooks/spaces/index.js.map +1 -1
- package/dist/esm/hooks/spaces/rules/useCreateRule.js +17 -63
- package/dist/esm/hooks/spaces/rules/useCreateRule.js.map +1 -1
- package/dist/esm/hooks/spaces/rules/useDeleteRule.js +15 -61
- package/dist/esm/hooks/spaces/rules/useDeleteRule.js.map +1 -1
- package/dist/esm/hooks/spaces/rules/useFetchManyRules.js +12 -58
- package/dist/esm/hooks/spaces/rules/useFetchManyRules.js.map +1 -1
- package/dist/esm/hooks/spaces/rules/useFetchRule.js +15 -61
- package/dist/esm/hooks/spaces/rules/useFetchRule.js.map +1 -1
- package/dist/esm/hooks/spaces/rules/useReorderRules.js +15 -61
- package/dist/esm/hooks/spaces/rules/useReorderRules.js.map +1 -1
- package/dist/esm/hooks/spaces/rules/useUpdateRule.js +15 -61
- package/dist/esm/hooks/spaces/rules/useUpdateRule.js.map +1 -1
- package/dist/esm/hooks/spaces/useApproveMember.js +12 -58
- package/dist/esm/hooks/spaces/useApproveMember.js.map +1 -1
- package/dist/esm/hooks/spaces/useCheckMyMembership.js +12 -58
- package/dist/esm/hooks/spaces/useCheckMyMembership.js.map +1 -1
- package/dist/esm/hooks/spaces/useCheckSlugAvailability.js +12 -58
- package/dist/esm/hooks/spaces/useCheckSlugAvailability.js.map +1 -1
- package/dist/esm/hooks/spaces/useCreateSpace.js +65 -107
- package/dist/esm/hooks/spaces/useCreateSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useDeclineMember.js +12 -58
- package/dist/esm/hooks/spaces/useDeclineMember.js.map +1 -1
- package/dist/esm/hooks/spaces/useDeleteSpace.js +12 -58
- package/dist/esm/hooks/spaces/useDeleteSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchDigestConfig.d.ts +6 -0
- package/dist/esm/hooks/spaces/useFetchDigestConfig.js +20 -0
- package/dist/esm/hooks/spaces/useFetchDigestConfig.js.map +1 -0
- package/dist/esm/hooks/spaces/useFetchManySpaces.d.ts +1 -1
- package/dist/esm/hooks/spaces/useFetchManySpaces.js +34 -79
- package/dist/esm/hooks/spaces/useFetchManySpaces.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpace.js +15 -61
- package/dist/esm/hooks/spaces/useFetchSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceBreadcrumb.js +12 -58
- package/dist/esm/hooks/spaces/useFetchSpaceBreadcrumb.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceByShortId.js +16 -62
- package/dist/esm/hooks/spaces/useFetchSpaceByShortId.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceBySlug.js +16 -62
- package/dist/esm/hooks/spaces/useFetchSpaceBySlug.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.d.ts +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.js +16 -62
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceMembers.js +12 -58
- package/dist/esm/hooks/spaces/useFetchSpaceMembers.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceTeam.js +13 -59
- package/dist/esm/hooks/spaces/useFetchSpaceTeam.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchUserSpaces.js +13 -92
- package/dist/esm/hooks/spaces/useFetchUserSpaces.js.map +1 -1
- package/dist/esm/hooks/spaces/useJoinSpace.js +12 -58
- package/dist/esm/hooks/spaces/useJoinSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useLeaveSpace.js +12 -58
- package/dist/esm/hooks/spaces/useLeaveSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useModerateSpaceComment.js +12 -58
- package/dist/esm/hooks/spaces/useModerateSpaceComment.js.map +1 -1
- package/dist/esm/hooks/spaces/useModerateSpaceEntity.js +12 -58
- package/dist/esm/hooks/spaces/useModerateSpaceEntity.js.map +1 -1
- package/dist/esm/hooks/spaces/useRemoveMember.js +12 -58
- package/dist/esm/hooks/spaces/useRemoveMember.js.map +1 -1
- package/dist/esm/hooks/spaces/useSpace.js +2 -2
- package/dist/esm/hooks/spaces/useSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useSpaceData.js +175 -296
- package/dist/esm/hooks/spaces/useSpaceData.js.map +1 -1
- package/dist/esm/hooks/spaces/useSpaceMentions.d.ts +24 -0
- package/dist/esm/hooks/spaces/useSpaceMentions.js +131 -0
- package/dist/esm/hooks/spaces/useSpaceMentions.js.map +1 -0
- package/dist/esm/hooks/spaces/useSpacePermissions.js +15 -16
- package/dist/esm/hooks/spaces/useSpacePermissions.js.map +1 -1
- package/dist/esm/hooks/spaces/useUnbanMember.d.ts +11 -0
- package/dist/esm/hooks/spaces/useUnbanMember.js +20 -0
- package/dist/esm/hooks/spaces/useUnbanMember.js.map +1 -0
- package/dist/esm/hooks/spaces/useUpdateDigestConfig.d.ts +7 -0
- package/dist/esm/hooks/spaces/useUpdateDigestConfig.js +20 -0
- package/dist/esm/hooks/spaces/useUpdateDigestConfig.js.map +1 -0
- package/dist/esm/hooks/spaces/useUpdateMemberRole.js +12 -58
- package/dist/esm/hooks/spaces/useUpdateMemberRole.js.map +1 -1
- package/dist/esm/hooks/spaces/useUpdateSpace.js +58 -101
- package/dist/esm/hooks/spaces/useUpdateSpace.js.map +1 -1
- package/dist/esm/hooks/storage/useUploadFile.js +46 -90
- package/dist/esm/hooks/storage/useUploadFile.js.map +1 -1
- package/dist/esm/hooks/storage/useUploadImage.js +92 -139
- package/dist/esm/hooks/storage/useUploadImage.js.map +1 -1
- package/dist/esm/hooks/useStableObject.js +1 -1
- package/dist/esm/hooks/useStableObject.js.map +1 -1
- package/dist/esm/hooks/user/useUser.js +29 -77
- package/dist/esm/hooks/user/useUser.js.map +1 -1
- package/dist/esm/hooks/user/useUserActions.d.ts +6 -1
- package/dist/esm/hooks/user/useUserActions.js +58 -101
- package/dist/esm/hooks/user/useUserActions.js.map +1 -1
- package/dist/esm/hooks/users/index.d.ts +1 -1
- package/dist/esm/hooks/users/index.js +1 -1
- package/dist/esm/hooks/users/index.js.map +1 -1
- package/dist/esm/hooks/users/useCheckUsernameAvailability.js +12 -58
- package/dist/esm/hooks/users/useCheckUsernameAvailability.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUser.js +14 -60
- package/dist/esm/hooks/users/useFetchUser.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUserByForeignId.js +15 -61
- package/dist/esm/hooks/users/useFetchUserByForeignId.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUserByUsername.js +15 -61
- package/dist/esm/hooks/users/useFetchUserByUsername.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUserSuggestions.js +12 -58
- package/dist/esm/hooks/users/useFetchUserSuggestions.js.map +1 -1
- package/dist/esm/hooks/users/{useMentions.d.ts → useUserMentions.d.ts} +8 -4
- package/dist/esm/hooks/users/useUserMentions.js +131 -0
- package/dist/esm/hooks/users/useUserMentions.js.map +1 -0
- package/dist/esm/hooks/utils/useGetMetadata.js +19 -65
- package/dist/esm/hooks/utils/useGetMetadata.js.map +1 -1
- package/dist/esm/index.d.ts +20 -13
- package/dist/esm/index.js +15 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/{IAccountStorage.d.ts → AccountStorage.d.ts} +1 -1
- package/dist/esm/interfaces/AccountStorage.js +2 -0
- package/dist/esm/interfaces/AccountStorage.js.map +1 -0
- package/dist/esm/interfaces/EntityListSortByOptions.js +4 -4
- package/dist/esm/interfaces/EntityListSortByOptions.js.map +1 -1
- package/dist/esm/interfaces/PaginatedResponse.js +2 -0
- package/dist/esm/interfaces/PaginatedResponse.js.map +1 -0
- package/dist/esm/interfaces/models/AppNotification.d.ts +131 -21
- package/dist/esm/interfaces/models/ChatMessage.d.ts +34 -0
- package/dist/esm/interfaces/models/ChatMessage.js +2 -0
- package/dist/esm/interfaces/models/ChatMessage.js.map +1 -0
- package/dist/esm/interfaces/models/Collection.d.ts +1 -1
- package/dist/esm/interfaces/models/Connection.d.ts +0 -1
- package/dist/esm/interfaces/models/Conversation.d.ts +25 -0
- package/dist/esm/interfaces/models/Conversation.js +2 -0
- package/dist/esm/interfaces/models/Conversation.js.map +1 -0
- package/dist/esm/interfaces/models/ConversationMember.d.ts +16 -0
- package/dist/esm/interfaces/models/ConversationMember.js +2 -0
- package/dist/esm/interfaces/models/ConversationMember.js.map +1 -0
- package/dist/esm/interfaces/models/Entity.d.ts +1 -0
- package/dist/esm/interfaces/models/File.d.ts +1 -0
- package/dist/esm/interfaces/models/Mention.d.ts +8 -1
- package/dist/esm/interfaces/models/Space.d.ts +15 -1
- package/dist/esm/interfaces/models/SpaceMember.d.ts +2 -2
- package/dist/esm/store/api/appNotificationsApi.d.ts +4 -4
- package/dist/esm/store/api/appNotificationsApi.js +93 -198
- package/dist/esm/store/api/appNotificationsApi.js.map +1 -1
- package/dist/esm/store/api/baseApi.d.ts +1 -1
- package/dist/esm/store/api/baseApi.js +10 -13
- package/dist/esm/store/api/baseApi.js.map +1 -1
- package/dist/esm/store/api/collectionsApi.d.ts +4 -4
- package/dist/esm/store/api/collectionsApi.js +101 -209
- package/dist/esm/store/api/collectionsApi.js.map +1 -1
- package/dist/esm/store/api/entityListsApi.d.ts +194 -193
- package/dist/esm/store/api/entityListsApi.js +83 -174
- package/dist/esm/store/api/entityListsApi.js.map +1 -1
- package/dist/esm/store/api/spacesApi.d.ts +373 -9
- package/dist/esm/store/api/spacesApi.js +210 -398
- package/dist/esm/store/api/spacesApi.js.map +1 -1
- package/dist/esm/store/api/userApi.d.ts +1 -1
- package/dist/esm/store/api/userApi.js +13 -14
- package/dist/esm/store/api/userApi.js.map +1 -1
- package/dist/esm/store/hooks.d.ts +1 -0
- package/dist/esm/store/hooks.js +2 -2
- package/dist/esm/store/hooks.js.map +1 -1
- package/dist/esm/store/index.d.ts +2 -0
- package/dist/esm/store/index.js +38 -40
- package/dist/esm/store/index.js.map +1 -1
- package/dist/esm/store/integration.js +4 -12
- package/dist/esm/store/integration.js.map +1 -1
- package/dist/esm/store/middleware.js +11 -19
- package/dist/esm/store/middleware.js.map +1 -1
- package/dist/esm/store/replykeReducers.d.ts +2 -0
- package/dist/esm/store/replykeReducers.js +3 -1
- package/dist/esm/store/replykeReducers.js.map +1 -1
- package/dist/esm/store/rootReducer.d.ts +3 -0
- package/dist/esm/store/rootReducer.js +4 -6
- package/dist/esm/store/rootReducer.js.map +1 -1
- package/dist/esm/store/slices/accountsSlice.js +18 -27
- package/dist/esm/store/slices/accountsSlice.js.map +1 -1
- package/dist/esm/store/slices/appNotificationsSlice.d.ts +528 -330
- package/dist/esm/store/slices/appNotificationsSlice.js +30 -48
- package/dist/esm/store/slices/appNotificationsSlice.js.map +1 -1
- package/dist/esm/store/slices/authSlice.js +18 -31
- package/dist/esm/store/slices/authSlice.js.map +1 -1
- package/dist/esm/store/slices/authThunks.js +260 -448
- package/dist/esm/store/slices/authThunks.js.map +1 -1
- package/dist/esm/store/slices/chatSlice.d.ts +131 -0
- package/dist/esm/store/slices/chatSlice.js +346 -0
- package/dist/esm/store/slices/chatSlice.js.map +1 -0
- package/dist/esm/store/slices/collectionsSlice.d.ts +14 -14
- package/dist/esm/store/slices/collectionsSlice.js +48 -59
- package/dist/esm/store/slices/collectionsSlice.js.map +1 -1
- package/dist/esm/store/slices/entityListsSlice.d.ts +192 -36
- package/dist/esm/store/slices/entityListsSlice.js +76 -90
- package/dist/esm/store/slices/entityListsSlice.js.map +1 -1
- package/dist/esm/store/slices/spaceListsSlice.d.ts +48 -24
- package/dist/esm/store/slices/spaceListsSlice.js +58 -80
- package/dist/esm/store/slices/spaceListsSlice.js.map +1 -1
- package/dist/esm/store/slices/userSlice.d.ts +24 -8
- package/dist/esm/store/slices/userSlice.js +22 -46
- package/dist/esm/store/slices/userSlice.js.map +1 -1
- package/dist/esm/types/socket.d.ts +73 -0
- package/dist/esm/types/socket.js +2 -0
- package/dist/esm/types/socket.js.map +1 -0
- package/dist/esm/utils/constants.js +1 -1
- package/dist/esm/utils/constants.js.map +1 -1
- package/dist/esm/utils/env.js +11 -12
- package/dist/esm/utils/env.js.map +1 -1
- package/dist/esm/utils/handleError.js +3 -4
- package/dist/esm/utils/handleError.js.map +1 -1
- package/dist/esm/utils/isAbsoluteUrl.js +1 -1
- package/dist/esm/utils/isAbsoluteUrl.js.map +1 -1
- package/dist/esm/utils/isReactNative.js +1 -3
- package/dist/esm/utils/isReactNative.js.map +1 -1
- package/dist/esm/utils/isUUID.js +1 -1
- package/dist/esm/utils/isUUID.js.map +1 -1
- package/dist/esm/utils/keywordHelpers.js +28 -40
- package/dist/esm/utils/keywordHelpers.js.map +1 -1
- package/dist/esm/utils/objectComparison.js +6 -8
- package/dist/esm/utils/objectComparison.js.map +1 -1
- package/package.json +3 -2
- package/dist/cjs/hooks/collections/useIsEntitySaved.d.ts +0 -6
- package/dist/cjs/hooks/collections/useIsEntitySaved.js +0 -82
- package/dist/cjs/hooks/collections/useIsEntitySaved.js.map +0 -1
- package/dist/cjs/hooks/entities/useIncrementEntityViews.d.ts +0 -5
- package/dist/cjs/hooks/entities/useIncrementEntityViews.js +0 -73
- package/dist/cjs/hooks/entities/useIncrementEntityViews.js.map +0 -1
- package/dist/cjs/hooks/users/useMentions.js +0 -186
- package/dist/cjs/hooks/users/useMentions.js.map +0 -1
- package/dist/cjs/interfaces/IAccountStorage.js.map +0 -1
- package/dist/cjs/interfaces/IPaginatedResponse.js.map +0 -1
- package/dist/esm/hooks/collections/useIsEntitySaved.d.ts +0 -6
- package/dist/esm/hooks/collections/useIsEntitySaved.js +0 -77
- package/dist/esm/hooks/collections/useIsEntitySaved.js.map +0 -1
- package/dist/esm/hooks/entities/useIncrementEntityViews.d.ts +0 -5
- package/dist/esm/hooks/entities/useIncrementEntityViews.js +0 -68
- package/dist/esm/hooks/entities/useIncrementEntityViews.js.map +0 -1
- package/dist/esm/hooks/users/useMentions.js +0 -181
- package/dist/esm/hooks/users/useMentions.js.map +0 -1
- package/dist/esm/interfaces/IAccountStorage.js +0 -2
- package/dist/esm/interfaces/IAccountStorage.js.map +0 -1
- package/dist/esm/interfaces/IPaginatedResponse.js +0 -2
- package/dist/esm/interfaces/IPaginatedResponse.js.map +0 -1
- /package/dist/cjs/interfaces/{IPaginatedResponse.d.ts → PaginatedResponse.d.ts} +0 -0
- /package/dist/esm/interfaces/{IPaginatedResponse.d.ts → PaginatedResponse.d.ts} +0 -0
|
@@ -139,6 +139,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
139
139
|
userId: string | null;
|
|
140
140
|
entityId: string | null;
|
|
141
141
|
commentId: string | null;
|
|
142
|
+
chatMessageId: string | null;
|
|
142
143
|
spaceId: string | null;
|
|
143
144
|
type: "image" | "video" | "document" | "other";
|
|
144
145
|
originalPath: string;
|
|
@@ -179,6 +180,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
179
180
|
userId: string | null;
|
|
180
181
|
entityId: string | null;
|
|
181
182
|
commentId: string | null;
|
|
183
|
+
chatMessageId: string | null;
|
|
182
184
|
spaceId: string | null;
|
|
183
185
|
type: "image" | "video" | "document" | "other";
|
|
184
186
|
originalPath: string;
|
|
@@ -214,6 +216,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
214
216
|
updatedAt: Date;
|
|
215
217
|
} | undefined;
|
|
216
218
|
} | null | undefined;
|
|
219
|
+
userId: string | null;
|
|
217
220
|
user?: {
|
|
218
221
|
id: string;
|
|
219
222
|
projectId: string;
|
|
@@ -230,6 +233,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
230
233
|
userId: string | null;
|
|
231
234
|
entityId: string | null;
|
|
232
235
|
commentId: string | null;
|
|
236
|
+
chatMessageId: string | null;
|
|
233
237
|
spaceId: string | null;
|
|
234
238
|
type: "image" | "video" | "document" | "other";
|
|
235
239
|
originalPath: string;
|
|
@@ -270,6 +274,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
270
274
|
userId: string | null;
|
|
271
275
|
entityId: string | null;
|
|
272
276
|
commentId: string | null;
|
|
277
|
+
chatMessageId: string | null;
|
|
273
278
|
spaceId: string | null;
|
|
274
279
|
type: "image" | "video" | "document" | "other";
|
|
275
280
|
originalPath: string;
|
|
@@ -318,11 +323,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
318
323
|
} | null | undefined;
|
|
319
324
|
title: string | null;
|
|
320
325
|
content: string | null;
|
|
321
|
-
mentions: {
|
|
326
|
+
mentions: ({
|
|
327
|
+
type: "user";
|
|
322
328
|
id: string;
|
|
323
329
|
foreignId?: string | null | undefined;
|
|
324
330
|
username: string;
|
|
325
|
-
}
|
|
331
|
+
} | {
|
|
332
|
+
type: "space";
|
|
333
|
+
id: string;
|
|
334
|
+
slug: string;
|
|
335
|
+
})[];
|
|
326
336
|
attachments: {
|
|
327
337
|
[x: string]: any;
|
|
328
338
|
}[];
|
|
@@ -332,6 +342,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
332
342
|
userId: string | null;
|
|
333
343
|
entityId: string | null;
|
|
334
344
|
commentId: string | null;
|
|
345
|
+
chatMessageId: string | null;
|
|
335
346
|
spaceId: string | null;
|
|
336
347
|
type: "image" | "video" | "document" | "other";
|
|
337
348
|
originalPath: string;
|
|
@@ -409,6 +420,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
409
420
|
userId: string | null;
|
|
410
421
|
entityId: string | null;
|
|
411
422
|
commentId: string | null;
|
|
423
|
+
chatMessageId: string | null;
|
|
412
424
|
spaceId: string | null;
|
|
413
425
|
type: "image" | "video" | "document" | "other";
|
|
414
426
|
originalPath: string;
|
|
@@ -449,6 +461,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
449
461
|
userId: string | null;
|
|
450
462
|
entityId: string | null;
|
|
451
463
|
commentId: string | null;
|
|
464
|
+
chatMessageId: string | null;
|
|
452
465
|
spaceId: string | null;
|
|
453
466
|
type: "image" | "video" | "document" | "other";
|
|
454
467
|
originalPath: string;
|
|
@@ -604,6 +617,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
604
617
|
userId: string | null;
|
|
605
618
|
entityId: string | null;
|
|
606
619
|
commentId: string | null;
|
|
620
|
+
chatMessageId: string | null;
|
|
607
621
|
spaceId: string | null;
|
|
608
622
|
type: "image" | "video" | "document" | "other";
|
|
609
623
|
originalPath: string;
|
|
@@ -644,6 +658,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
644
658
|
userId: string | null;
|
|
645
659
|
entityId: string | null;
|
|
646
660
|
commentId: string | null;
|
|
661
|
+
chatMessageId: string | null;
|
|
647
662
|
spaceId: string | null;
|
|
648
663
|
type: "image" | "video" | "document" | "other";
|
|
649
664
|
originalPath: string;
|
|
@@ -679,6 +694,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
679
694
|
updatedAt: Date;
|
|
680
695
|
} | undefined;
|
|
681
696
|
} | null | undefined;
|
|
697
|
+
userId: string | null;
|
|
682
698
|
user?: {
|
|
683
699
|
id: string;
|
|
684
700
|
projectId: string;
|
|
@@ -695,6 +711,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
695
711
|
userId: string | null;
|
|
696
712
|
entityId: string | null;
|
|
697
713
|
commentId: string | null;
|
|
714
|
+
chatMessageId: string | null;
|
|
698
715
|
spaceId: string | null;
|
|
699
716
|
type: "image" | "video" | "document" | "other";
|
|
700
717
|
originalPath: string;
|
|
@@ -735,6 +752,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
735
752
|
userId: string | null;
|
|
736
753
|
entityId: string | null;
|
|
737
754
|
commentId: string | null;
|
|
755
|
+
chatMessageId: string | null;
|
|
738
756
|
spaceId: string | null;
|
|
739
757
|
type: "image" | "video" | "document" | "other";
|
|
740
758
|
originalPath: string;
|
|
@@ -783,11 +801,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
783
801
|
} | null | undefined;
|
|
784
802
|
title: string | null;
|
|
785
803
|
content: string | null;
|
|
786
|
-
mentions: {
|
|
804
|
+
mentions: ({
|
|
805
|
+
type: "user";
|
|
787
806
|
id: string;
|
|
788
807
|
foreignId?: string | null | undefined;
|
|
789
808
|
username: string;
|
|
790
|
-
}
|
|
809
|
+
} | {
|
|
810
|
+
type: "space";
|
|
811
|
+
id: string;
|
|
812
|
+
slug: string;
|
|
813
|
+
})[];
|
|
791
814
|
attachments: {
|
|
792
815
|
[x: string]: any;
|
|
793
816
|
}[];
|
|
@@ -797,6 +820,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
797
820
|
userId: string | null;
|
|
798
821
|
entityId: string | null;
|
|
799
822
|
commentId: string | null;
|
|
823
|
+
chatMessageId: string | null;
|
|
800
824
|
spaceId: string | null;
|
|
801
825
|
type: "image" | "video" | "document" | "other";
|
|
802
826
|
originalPath: string;
|
|
@@ -874,6 +898,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
874
898
|
userId: string | null;
|
|
875
899
|
entityId: string | null;
|
|
876
900
|
commentId: string | null;
|
|
901
|
+
chatMessageId: string | null;
|
|
877
902
|
spaceId: string | null;
|
|
878
903
|
type: "image" | "video" | "document" | "other";
|
|
879
904
|
originalPath: string;
|
|
@@ -914,6 +939,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
914
939
|
userId: string | null;
|
|
915
940
|
entityId: string | null;
|
|
916
941
|
commentId: string | null;
|
|
942
|
+
chatMessageId: string | null;
|
|
917
943
|
spaceId: string | null;
|
|
918
944
|
type: "image" | "video" | "document" | "other";
|
|
919
945
|
originalPath: string;
|
|
@@ -1069,6 +1095,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1069
1095
|
userId: string | null;
|
|
1070
1096
|
entityId: string | null;
|
|
1071
1097
|
commentId: string | null;
|
|
1098
|
+
chatMessageId: string | null;
|
|
1072
1099
|
spaceId: string | null;
|
|
1073
1100
|
type: "image" | "video" | "document" | "other";
|
|
1074
1101
|
originalPath: string;
|
|
@@ -1109,6 +1136,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1109
1136
|
userId: string | null;
|
|
1110
1137
|
entityId: string | null;
|
|
1111
1138
|
commentId: string | null;
|
|
1139
|
+
chatMessageId: string | null;
|
|
1112
1140
|
spaceId: string | null;
|
|
1113
1141
|
type: "image" | "video" | "document" | "other";
|
|
1114
1142
|
originalPath: string;
|
|
@@ -1144,6 +1172,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1144
1172
|
updatedAt: Date;
|
|
1145
1173
|
} | undefined;
|
|
1146
1174
|
} | null | undefined;
|
|
1175
|
+
userId: string | null;
|
|
1147
1176
|
user?: {
|
|
1148
1177
|
id: string;
|
|
1149
1178
|
projectId: string;
|
|
@@ -1160,6 +1189,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1160
1189
|
userId: string | null;
|
|
1161
1190
|
entityId: string | null;
|
|
1162
1191
|
commentId: string | null;
|
|
1192
|
+
chatMessageId: string | null;
|
|
1163
1193
|
spaceId: string | null;
|
|
1164
1194
|
type: "image" | "video" | "document" | "other";
|
|
1165
1195
|
originalPath: string;
|
|
@@ -1200,6 +1230,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1200
1230
|
userId: string | null;
|
|
1201
1231
|
entityId: string | null;
|
|
1202
1232
|
commentId: string | null;
|
|
1233
|
+
chatMessageId: string | null;
|
|
1203
1234
|
spaceId: string | null;
|
|
1204
1235
|
type: "image" | "video" | "document" | "other";
|
|
1205
1236
|
originalPath: string;
|
|
@@ -1248,11 +1279,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1248
1279
|
} | null | undefined;
|
|
1249
1280
|
title: string | null;
|
|
1250
1281
|
content: string | null;
|
|
1251
|
-
mentions: {
|
|
1282
|
+
mentions: ({
|
|
1283
|
+
type: "user";
|
|
1252
1284
|
id: string;
|
|
1253
1285
|
foreignId?: string | null | undefined;
|
|
1254
1286
|
username: string;
|
|
1255
|
-
}
|
|
1287
|
+
} | {
|
|
1288
|
+
type: "space";
|
|
1289
|
+
id: string;
|
|
1290
|
+
slug: string;
|
|
1291
|
+
})[];
|
|
1256
1292
|
attachments: {
|
|
1257
1293
|
[x: string]: any;
|
|
1258
1294
|
}[];
|
|
@@ -1262,6 +1298,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1262
1298
|
userId: string | null;
|
|
1263
1299
|
entityId: string | null;
|
|
1264
1300
|
commentId: string | null;
|
|
1301
|
+
chatMessageId: string | null;
|
|
1265
1302
|
spaceId: string | null;
|
|
1266
1303
|
type: "image" | "video" | "document" | "other";
|
|
1267
1304
|
originalPath: string;
|
|
@@ -1339,6 +1376,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1339
1376
|
userId: string | null;
|
|
1340
1377
|
entityId: string | null;
|
|
1341
1378
|
commentId: string | null;
|
|
1379
|
+
chatMessageId: string | null;
|
|
1342
1380
|
spaceId: string | null;
|
|
1343
1381
|
type: "image" | "video" | "document" | "other";
|
|
1344
1382
|
originalPath: string;
|
|
@@ -1379,6 +1417,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1379
1417
|
userId: string | null;
|
|
1380
1418
|
entityId: string | null;
|
|
1381
1419
|
commentId: string | null;
|
|
1420
|
+
chatMessageId: string | null;
|
|
1382
1421
|
spaceId: string | null;
|
|
1383
1422
|
type: "image" | "video" | "document" | "other";
|
|
1384
1423
|
originalPath: string;
|
|
@@ -1537,6 +1576,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1537
1576
|
userId: string | null;
|
|
1538
1577
|
entityId: string | null;
|
|
1539
1578
|
commentId: string | null;
|
|
1579
|
+
chatMessageId: string | null;
|
|
1540
1580
|
spaceId: string | null;
|
|
1541
1581
|
type: "image" | "video" | "document" | "other";
|
|
1542
1582
|
originalPath: string;
|
|
@@ -1577,6 +1617,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1577
1617
|
userId: string | null;
|
|
1578
1618
|
entityId: string | null;
|
|
1579
1619
|
commentId: string | null;
|
|
1620
|
+
chatMessageId: string | null;
|
|
1580
1621
|
spaceId: string | null;
|
|
1581
1622
|
type: "image" | "video" | "document" | "other";
|
|
1582
1623
|
originalPath: string;
|
|
@@ -1612,6 +1653,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1612
1653
|
updatedAt: Date;
|
|
1613
1654
|
} | undefined;
|
|
1614
1655
|
} | null | undefined;
|
|
1656
|
+
userId: string | null;
|
|
1615
1657
|
user?: {
|
|
1616
1658
|
id: string;
|
|
1617
1659
|
projectId: string;
|
|
@@ -1628,6 +1670,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1628
1670
|
userId: string | null;
|
|
1629
1671
|
entityId: string | null;
|
|
1630
1672
|
commentId: string | null;
|
|
1673
|
+
chatMessageId: string | null;
|
|
1631
1674
|
spaceId: string | null;
|
|
1632
1675
|
type: "image" | "video" | "document" | "other";
|
|
1633
1676
|
originalPath: string;
|
|
@@ -1668,6 +1711,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1668
1711
|
userId: string | null;
|
|
1669
1712
|
entityId: string | null;
|
|
1670
1713
|
commentId: string | null;
|
|
1714
|
+
chatMessageId: string | null;
|
|
1671
1715
|
spaceId: string | null;
|
|
1672
1716
|
type: "image" | "video" | "document" | "other";
|
|
1673
1717
|
originalPath: string;
|
|
@@ -1716,11 +1760,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1716
1760
|
} | null | undefined;
|
|
1717
1761
|
title: string | null;
|
|
1718
1762
|
content: string | null;
|
|
1719
|
-
mentions: {
|
|
1763
|
+
mentions: ({
|
|
1764
|
+
type: "user";
|
|
1720
1765
|
id: string;
|
|
1721
1766
|
foreignId?: string | null | undefined;
|
|
1722
1767
|
username: string;
|
|
1723
|
-
}
|
|
1768
|
+
} | {
|
|
1769
|
+
type: "space";
|
|
1770
|
+
id: string;
|
|
1771
|
+
slug: string;
|
|
1772
|
+
})[];
|
|
1724
1773
|
attachments: {
|
|
1725
1774
|
[x: string]: any;
|
|
1726
1775
|
}[];
|
|
@@ -1730,6 +1779,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1730
1779
|
userId: string | null;
|
|
1731
1780
|
entityId: string | null;
|
|
1732
1781
|
commentId: string | null;
|
|
1782
|
+
chatMessageId: string | null;
|
|
1733
1783
|
spaceId: string | null;
|
|
1734
1784
|
type: "image" | "video" | "document" | "other";
|
|
1735
1785
|
originalPath: string;
|
|
@@ -1807,6 +1857,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1807
1857
|
userId: string | null;
|
|
1808
1858
|
entityId: string | null;
|
|
1809
1859
|
commentId: string | null;
|
|
1860
|
+
chatMessageId: string | null;
|
|
1810
1861
|
spaceId: string | null;
|
|
1811
1862
|
type: "image" | "video" | "document" | "other";
|
|
1812
1863
|
originalPath: string;
|
|
@@ -1847,6 +1898,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1847
1898
|
userId: string | null;
|
|
1848
1899
|
entityId: string | null;
|
|
1849
1900
|
commentId: string | null;
|
|
1901
|
+
chatMessageId: string | null;
|
|
1850
1902
|
spaceId: string | null;
|
|
1851
1903
|
type: "image" | "video" | "document" | "other";
|
|
1852
1904
|
originalPath: string;
|
|
@@ -2002,6 +2054,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2002
2054
|
userId: string | null;
|
|
2003
2055
|
entityId: string | null;
|
|
2004
2056
|
commentId: string | null;
|
|
2057
|
+
chatMessageId: string | null;
|
|
2005
2058
|
spaceId: string | null;
|
|
2006
2059
|
type: "image" | "video" | "document" | "other";
|
|
2007
2060
|
originalPath: string;
|
|
@@ -2042,6 +2095,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2042
2095
|
userId: string | null;
|
|
2043
2096
|
entityId: string | null;
|
|
2044
2097
|
commentId: string | null;
|
|
2098
|
+
chatMessageId: string | null;
|
|
2045
2099
|
spaceId: string | null;
|
|
2046
2100
|
type: "image" | "video" | "document" | "other";
|
|
2047
2101
|
originalPath: string;
|
|
@@ -2077,6 +2131,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2077
2131
|
updatedAt: Date;
|
|
2078
2132
|
} | undefined;
|
|
2079
2133
|
} | null | undefined;
|
|
2134
|
+
userId: string | null;
|
|
2080
2135
|
user?: {
|
|
2081
2136
|
id: string;
|
|
2082
2137
|
projectId: string;
|
|
@@ -2093,6 +2148,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2093
2148
|
userId: string | null;
|
|
2094
2149
|
entityId: string | null;
|
|
2095
2150
|
commentId: string | null;
|
|
2151
|
+
chatMessageId: string | null;
|
|
2096
2152
|
spaceId: string | null;
|
|
2097
2153
|
type: "image" | "video" | "document" | "other";
|
|
2098
2154
|
originalPath: string;
|
|
@@ -2133,6 +2189,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2133
2189
|
userId: string | null;
|
|
2134
2190
|
entityId: string | null;
|
|
2135
2191
|
commentId: string | null;
|
|
2192
|
+
chatMessageId: string | null;
|
|
2136
2193
|
spaceId: string | null;
|
|
2137
2194
|
type: "image" | "video" | "document" | "other";
|
|
2138
2195
|
originalPath: string;
|
|
@@ -2181,11 +2238,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2181
2238
|
} | null | undefined;
|
|
2182
2239
|
title: string | null;
|
|
2183
2240
|
content: string | null;
|
|
2184
|
-
mentions: {
|
|
2241
|
+
mentions: ({
|
|
2242
|
+
type: "user";
|
|
2185
2243
|
id: string;
|
|
2186
2244
|
foreignId?: string | null | undefined;
|
|
2187
2245
|
username: string;
|
|
2188
|
-
}
|
|
2246
|
+
} | {
|
|
2247
|
+
type: "space";
|
|
2248
|
+
id: string;
|
|
2249
|
+
slug: string;
|
|
2250
|
+
})[];
|
|
2189
2251
|
attachments: {
|
|
2190
2252
|
[x: string]: any;
|
|
2191
2253
|
}[];
|
|
@@ -2195,6 +2257,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2195
2257
|
userId: string | null;
|
|
2196
2258
|
entityId: string | null;
|
|
2197
2259
|
commentId: string | null;
|
|
2260
|
+
chatMessageId: string | null;
|
|
2198
2261
|
spaceId: string | null;
|
|
2199
2262
|
type: "image" | "video" | "document" | "other";
|
|
2200
2263
|
originalPath: string;
|
|
@@ -2272,6 +2335,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2272
2335
|
userId: string | null;
|
|
2273
2336
|
entityId: string | null;
|
|
2274
2337
|
commentId: string | null;
|
|
2338
|
+
chatMessageId: string | null;
|
|
2275
2339
|
spaceId: string | null;
|
|
2276
2340
|
type: "image" | "video" | "document" | "other";
|
|
2277
2341
|
originalPath: string;
|
|
@@ -2312,6 +2376,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2312
2376
|
userId: string | null;
|
|
2313
2377
|
entityId: string | null;
|
|
2314
2378
|
commentId: string | null;
|
|
2379
|
+
chatMessageId: string | null;
|
|
2315
2380
|
spaceId: string | null;
|
|
2316
2381
|
type: "image" | "video" | "document" | "other";
|
|
2317
2382
|
originalPath: string;
|
|
@@ -2467,6 +2532,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2467
2532
|
userId: string | null;
|
|
2468
2533
|
entityId: string | null;
|
|
2469
2534
|
commentId: string | null;
|
|
2535
|
+
chatMessageId: string | null;
|
|
2470
2536
|
spaceId: string | null;
|
|
2471
2537
|
type: "image" | "video" | "document" | "other";
|
|
2472
2538
|
originalPath: string;
|
|
@@ -2507,6 +2573,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2507
2573
|
userId: string | null;
|
|
2508
2574
|
entityId: string | null;
|
|
2509
2575
|
commentId: string | null;
|
|
2576
|
+
chatMessageId: string | null;
|
|
2510
2577
|
spaceId: string | null;
|
|
2511
2578
|
type: "image" | "video" | "document" | "other";
|
|
2512
2579
|
originalPath: string;
|
|
@@ -2542,6 +2609,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2542
2609
|
updatedAt: Date;
|
|
2543
2610
|
} | undefined;
|
|
2544
2611
|
} | null | undefined;
|
|
2612
|
+
userId: string | null;
|
|
2545
2613
|
user?: {
|
|
2546
2614
|
id: string;
|
|
2547
2615
|
projectId: string;
|
|
@@ -2558,6 +2626,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2558
2626
|
userId: string | null;
|
|
2559
2627
|
entityId: string | null;
|
|
2560
2628
|
commentId: string | null;
|
|
2629
|
+
chatMessageId: string | null;
|
|
2561
2630
|
spaceId: string | null;
|
|
2562
2631
|
type: "image" | "video" | "document" | "other";
|
|
2563
2632
|
originalPath: string;
|
|
@@ -2598,6 +2667,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2598
2667
|
userId: string | null;
|
|
2599
2668
|
entityId: string | null;
|
|
2600
2669
|
commentId: string | null;
|
|
2670
|
+
chatMessageId: string | null;
|
|
2601
2671
|
spaceId: string | null;
|
|
2602
2672
|
type: "image" | "video" | "document" | "other";
|
|
2603
2673
|
originalPath: string;
|
|
@@ -2646,11 +2716,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2646
2716
|
} | null | undefined;
|
|
2647
2717
|
title: string | null;
|
|
2648
2718
|
content: string | null;
|
|
2649
|
-
mentions: {
|
|
2719
|
+
mentions: ({
|
|
2720
|
+
type: "user";
|
|
2650
2721
|
id: string;
|
|
2651
2722
|
foreignId?: string | null | undefined;
|
|
2652
2723
|
username: string;
|
|
2653
|
-
}
|
|
2724
|
+
} | {
|
|
2725
|
+
type: "space";
|
|
2726
|
+
id: string;
|
|
2727
|
+
slug: string;
|
|
2728
|
+
})[];
|
|
2654
2729
|
attachments: {
|
|
2655
2730
|
[x: string]: any;
|
|
2656
2731
|
}[];
|
|
@@ -2660,6 +2735,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2660
2735
|
userId: string | null;
|
|
2661
2736
|
entityId: string | null;
|
|
2662
2737
|
commentId: string | null;
|
|
2738
|
+
chatMessageId: string | null;
|
|
2663
2739
|
spaceId: string | null;
|
|
2664
2740
|
type: "image" | "video" | "document" | "other";
|
|
2665
2741
|
originalPath: string;
|
|
@@ -2737,6 +2813,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2737
2813
|
userId: string | null;
|
|
2738
2814
|
entityId: string | null;
|
|
2739
2815
|
commentId: string | null;
|
|
2816
|
+
chatMessageId: string | null;
|
|
2740
2817
|
spaceId: string | null;
|
|
2741
2818
|
type: "image" | "video" | "document" | "other";
|
|
2742
2819
|
originalPath: string;
|
|
@@ -2777,6 +2854,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2777
2854
|
userId: string | null;
|
|
2778
2855
|
entityId: string | null;
|
|
2779
2856
|
commentId: string | null;
|
|
2857
|
+
chatMessageId: string | null;
|
|
2780
2858
|
spaceId: string | null;
|
|
2781
2859
|
type: "image" | "video" | "document" | "other";
|
|
2782
2860
|
originalPath: string;
|
|
@@ -2935,6 +3013,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2935
3013
|
userId: string | null;
|
|
2936
3014
|
entityId: string | null;
|
|
2937
3015
|
commentId: string | null;
|
|
3016
|
+
chatMessageId: string | null;
|
|
2938
3017
|
spaceId: string | null;
|
|
2939
3018
|
type: "image" | "video" | "document" | "other";
|
|
2940
3019
|
originalPath: string;
|
|
@@ -2975,6 +3054,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2975
3054
|
userId: string | null;
|
|
2976
3055
|
entityId: string | null;
|
|
2977
3056
|
commentId: string | null;
|
|
3057
|
+
chatMessageId: string | null;
|
|
2978
3058
|
spaceId: string | null;
|
|
2979
3059
|
type: "image" | "video" | "document" | "other";
|
|
2980
3060
|
originalPath: string;
|
|
@@ -3010,6 +3090,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3010
3090
|
updatedAt: Date;
|
|
3011
3091
|
} | undefined;
|
|
3012
3092
|
} | null | undefined;
|
|
3093
|
+
userId: string | null;
|
|
3013
3094
|
user?: {
|
|
3014
3095
|
id: string;
|
|
3015
3096
|
projectId: string;
|
|
@@ -3026,6 +3107,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3026
3107
|
userId: string | null;
|
|
3027
3108
|
entityId: string | null;
|
|
3028
3109
|
commentId: string | null;
|
|
3110
|
+
chatMessageId: string | null;
|
|
3029
3111
|
spaceId: string | null;
|
|
3030
3112
|
type: "image" | "video" | "document" | "other";
|
|
3031
3113
|
originalPath: string;
|
|
@@ -3066,6 +3148,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3066
3148
|
userId: string | null;
|
|
3067
3149
|
entityId: string | null;
|
|
3068
3150
|
commentId: string | null;
|
|
3151
|
+
chatMessageId: string | null;
|
|
3069
3152
|
spaceId: string | null;
|
|
3070
3153
|
type: "image" | "video" | "document" | "other";
|
|
3071
3154
|
originalPath: string;
|
|
@@ -3114,11 +3197,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3114
3197
|
} | null | undefined;
|
|
3115
3198
|
title: string | null;
|
|
3116
3199
|
content: string | null;
|
|
3117
|
-
mentions: {
|
|
3200
|
+
mentions: ({
|
|
3201
|
+
type: "user";
|
|
3118
3202
|
id: string;
|
|
3119
3203
|
foreignId?: string | null | undefined;
|
|
3120
3204
|
username: string;
|
|
3121
|
-
}
|
|
3205
|
+
} | {
|
|
3206
|
+
type: "space";
|
|
3207
|
+
id: string;
|
|
3208
|
+
slug: string;
|
|
3209
|
+
})[];
|
|
3122
3210
|
attachments: {
|
|
3123
3211
|
[x: string]: any;
|
|
3124
3212
|
}[];
|
|
@@ -3128,6 +3216,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3128
3216
|
userId: string | null;
|
|
3129
3217
|
entityId: string | null;
|
|
3130
3218
|
commentId: string | null;
|
|
3219
|
+
chatMessageId: string | null;
|
|
3131
3220
|
spaceId: string | null;
|
|
3132
3221
|
type: "image" | "video" | "document" | "other";
|
|
3133
3222
|
originalPath: string;
|
|
@@ -3205,6 +3294,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3205
3294
|
userId: string | null;
|
|
3206
3295
|
entityId: string | null;
|
|
3207
3296
|
commentId: string | null;
|
|
3297
|
+
chatMessageId: string | null;
|
|
3208
3298
|
spaceId: string | null;
|
|
3209
3299
|
type: "image" | "video" | "document" | "other";
|
|
3210
3300
|
originalPath: string;
|
|
@@ -3245,6 +3335,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3245
3335
|
userId: string | null;
|
|
3246
3336
|
entityId: string | null;
|
|
3247
3337
|
commentId: string | null;
|
|
3338
|
+
chatMessageId: string | null;
|
|
3248
3339
|
spaceId: string | null;
|
|
3249
3340
|
type: "image" | "video" | "document" | "other";
|
|
3250
3341
|
originalPath: string;
|
|
@@ -3403,6 +3494,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3403
3494
|
userId: string | null;
|
|
3404
3495
|
entityId: string | null;
|
|
3405
3496
|
commentId: string | null;
|
|
3497
|
+
chatMessageId: string | null;
|
|
3406
3498
|
spaceId: string | null;
|
|
3407
3499
|
type: "image" | "video" | "document" | "other";
|
|
3408
3500
|
originalPath: string;
|
|
@@ -3443,6 +3535,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3443
3535
|
userId: string | null;
|
|
3444
3536
|
entityId: string | null;
|
|
3445
3537
|
commentId: string | null;
|
|
3538
|
+
chatMessageId: string | null;
|
|
3446
3539
|
spaceId: string | null;
|
|
3447
3540
|
type: "image" | "video" | "document" | "other";
|
|
3448
3541
|
originalPath: string;
|
|
@@ -3478,6 +3571,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3478
3571
|
updatedAt: Date;
|
|
3479
3572
|
} | undefined;
|
|
3480
3573
|
} | null | undefined;
|
|
3574
|
+
userId: string | null;
|
|
3481
3575
|
user?: {
|
|
3482
3576
|
id: string;
|
|
3483
3577
|
projectId: string;
|
|
@@ -3494,6 +3588,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3494
3588
|
userId: string | null;
|
|
3495
3589
|
entityId: string | null;
|
|
3496
3590
|
commentId: string | null;
|
|
3591
|
+
chatMessageId: string | null;
|
|
3497
3592
|
spaceId: string | null;
|
|
3498
3593
|
type: "image" | "video" | "document" | "other";
|
|
3499
3594
|
originalPath: string;
|
|
@@ -3534,6 +3629,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3534
3629
|
userId: string | null;
|
|
3535
3630
|
entityId: string | null;
|
|
3536
3631
|
commentId: string | null;
|
|
3632
|
+
chatMessageId: string | null;
|
|
3537
3633
|
spaceId: string | null;
|
|
3538
3634
|
type: "image" | "video" | "document" | "other";
|
|
3539
3635
|
originalPath: string;
|
|
@@ -3582,11 +3678,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3582
3678
|
} | null | undefined;
|
|
3583
3679
|
title: string | null;
|
|
3584
3680
|
content: string | null;
|
|
3585
|
-
mentions: {
|
|
3681
|
+
mentions: ({
|
|
3682
|
+
type: "user";
|
|
3586
3683
|
id: string;
|
|
3587
3684
|
foreignId?: string | null | undefined;
|
|
3588
3685
|
username: string;
|
|
3589
|
-
}
|
|
3686
|
+
} | {
|
|
3687
|
+
type: "space";
|
|
3688
|
+
id: string;
|
|
3689
|
+
slug: string;
|
|
3690
|
+
})[];
|
|
3590
3691
|
attachments: {
|
|
3591
3692
|
[x: string]: any;
|
|
3592
3693
|
}[];
|
|
@@ -3596,6 +3697,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3596
3697
|
userId: string | null;
|
|
3597
3698
|
entityId: string | null;
|
|
3598
3699
|
commentId: string | null;
|
|
3700
|
+
chatMessageId: string | null;
|
|
3599
3701
|
spaceId: string | null;
|
|
3600
3702
|
type: "image" | "video" | "document" | "other";
|
|
3601
3703
|
originalPath: string;
|
|
@@ -3673,6 +3775,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3673
3775
|
userId: string | null;
|
|
3674
3776
|
entityId: string | null;
|
|
3675
3777
|
commentId: string | null;
|
|
3778
|
+
chatMessageId: string | null;
|
|
3676
3779
|
spaceId: string | null;
|
|
3677
3780
|
type: "image" | "video" | "document" | "other";
|
|
3678
3781
|
originalPath: string;
|
|
@@ -3713,6 +3816,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3713
3816
|
userId: string | null;
|
|
3714
3817
|
entityId: string | null;
|
|
3715
3818
|
commentId: string | null;
|
|
3819
|
+
chatMessageId: string | null;
|
|
3716
3820
|
spaceId: string | null;
|
|
3717
3821
|
type: "image" | "video" | "document" | "other";
|
|
3718
3822
|
originalPath: string;
|
|
@@ -3868,6 +3972,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3868
3972
|
userId: string | null;
|
|
3869
3973
|
entityId: string | null;
|
|
3870
3974
|
commentId: string | null;
|
|
3975
|
+
chatMessageId: string | null;
|
|
3871
3976
|
spaceId: string | null;
|
|
3872
3977
|
type: "image" | "video" | "document" | "other";
|
|
3873
3978
|
originalPath: string;
|
|
@@ -3908,6 +4013,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3908
4013
|
userId: string | null;
|
|
3909
4014
|
entityId: string | null;
|
|
3910
4015
|
commentId: string | null;
|
|
4016
|
+
chatMessageId: string | null;
|
|
3911
4017
|
spaceId: string | null;
|
|
3912
4018
|
type: "image" | "video" | "document" | "other";
|
|
3913
4019
|
originalPath: string;
|
|
@@ -3943,6 +4049,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3943
4049
|
updatedAt: Date;
|
|
3944
4050
|
} | undefined;
|
|
3945
4051
|
} | null | undefined;
|
|
4052
|
+
userId: string | null;
|
|
3946
4053
|
user?: {
|
|
3947
4054
|
id: string;
|
|
3948
4055
|
projectId: string;
|
|
@@ -3959,6 +4066,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3959
4066
|
userId: string | null;
|
|
3960
4067
|
entityId: string | null;
|
|
3961
4068
|
commentId: string | null;
|
|
4069
|
+
chatMessageId: string | null;
|
|
3962
4070
|
spaceId: string | null;
|
|
3963
4071
|
type: "image" | "video" | "document" | "other";
|
|
3964
4072
|
originalPath: string;
|
|
@@ -3999,6 +4107,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3999
4107
|
userId: string | null;
|
|
4000
4108
|
entityId: string | null;
|
|
4001
4109
|
commentId: string | null;
|
|
4110
|
+
chatMessageId: string | null;
|
|
4002
4111
|
spaceId: string | null;
|
|
4003
4112
|
type: "image" | "video" | "document" | "other";
|
|
4004
4113
|
originalPath: string;
|
|
@@ -4047,11 +4156,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4047
4156
|
} | null | undefined;
|
|
4048
4157
|
title: string | null;
|
|
4049
4158
|
content: string | null;
|
|
4050
|
-
mentions: {
|
|
4159
|
+
mentions: ({
|
|
4160
|
+
type: "user";
|
|
4051
4161
|
id: string;
|
|
4052
4162
|
foreignId?: string | null | undefined;
|
|
4053
4163
|
username: string;
|
|
4054
|
-
}
|
|
4164
|
+
} | {
|
|
4165
|
+
type: "space";
|
|
4166
|
+
id: string;
|
|
4167
|
+
slug: string;
|
|
4168
|
+
})[];
|
|
4055
4169
|
attachments: {
|
|
4056
4170
|
[x: string]: any;
|
|
4057
4171
|
}[];
|
|
@@ -4061,6 +4175,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4061
4175
|
userId: string | null;
|
|
4062
4176
|
entityId: string | null;
|
|
4063
4177
|
commentId: string | null;
|
|
4178
|
+
chatMessageId: string | null;
|
|
4064
4179
|
spaceId: string | null;
|
|
4065
4180
|
type: "image" | "video" | "document" | "other";
|
|
4066
4181
|
originalPath: string;
|
|
@@ -4138,6 +4253,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4138
4253
|
userId: string | null;
|
|
4139
4254
|
entityId: string | null;
|
|
4140
4255
|
commentId: string | null;
|
|
4256
|
+
chatMessageId: string | null;
|
|
4141
4257
|
spaceId: string | null;
|
|
4142
4258
|
type: "image" | "video" | "document" | "other";
|
|
4143
4259
|
originalPath: string;
|
|
@@ -4178,6 +4294,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4178
4294
|
userId: string | null;
|
|
4179
4295
|
entityId: string | null;
|
|
4180
4296
|
commentId: string | null;
|
|
4297
|
+
chatMessageId: string | null;
|
|
4181
4298
|
spaceId: string | null;
|
|
4182
4299
|
type: "image" | "video" | "document" | "other";
|
|
4183
4300
|
originalPath: string;
|
|
@@ -4333,6 +4450,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4333
4450
|
userId: string | null;
|
|
4334
4451
|
entityId: string | null;
|
|
4335
4452
|
commentId: string | null;
|
|
4453
|
+
chatMessageId: string | null;
|
|
4336
4454
|
spaceId: string | null;
|
|
4337
4455
|
type: "image" | "video" | "document" | "other";
|
|
4338
4456
|
originalPath: string;
|
|
@@ -4373,6 +4491,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4373
4491
|
userId: string | null;
|
|
4374
4492
|
entityId: string | null;
|
|
4375
4493
|
commentId: string | null;
|
|
4494
|
+
chatMessageId: string | null;
|
|
4376
4495
|
spaceId: string | null;
|
|
4377
4496
|
type: "image" | "video" | "document" | "other";
|
|
4378
4497
|
originalPath: string;
|
|
@@ -4408,6 +4527,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4408
4527
|
updatedAt: Date;
|
|
4409
4528
|
} | undefined;
|
|
4410
4529
|
} | null | undefined;
|
|
4530
|
+
userId: string | null;
|
|
4411
4531
|
user?: {
|
|
4412
4532
|
id: string;
|
|
4413
4533
|
projectId: string;
|
|
@@ -4424,6 +4544,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4424
4544
|
userId: string | null;
|
|
4425
4545
|
entityId: string | null;
|
|
4426
4546
|
commentId: string | null;
|
|
4547
|
+
chatMessageId: string | null;
|
|
4427
4548
|
spaceId: string | null;
|
|
4428
4549
|
type: "image" | "video" | "document" | "other";
|
|
4429
4550
|
originalPath: string;
|
|
@@ -4464,6 +4585,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4464
4585
|
userId: string | null;
|
|
4465
4586
|
entityId: string | null;
|
|
4466
4587
|
commentId: string | null;
|
|
4588
|
+
chatMessageId: string | null;
|
|
4467
4589
|
spaceId: string | null;
|
|
4468
4590
|
type: "image" | "video" | "document" | "other";
|
|
4469
4591
|
originalPath: string;
|
|
@@ -4512,11 +4634,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4512
4634
|
} | null | undefined;
|
|
4513
4635
|
title: string | null;
|
|
4514
4636
|
content: string | null;
|
|
4515
|
-
mentions: {
|
|
4637
|
+
mentions: ({
|
|
4638
|
+
type: "user";
|
|
4516
4639
|
id: string;
|
|
4517
4640
|
foreignId?: string | null | undefined;
|
|
4518
4641
|
username: string;
|
|
4519
|
-
}
|
|
4642
|
+
} | {
|
|
4643
|
+
type: "space";
|
|
4644
|
+
id: string;
|
|
4645
|
+
slug: string;
|
|
4646
|
+
})[];
|
|
4520
4647
|
attachments: {
|
|
4521
4648
|
[x: string]: any;
|
|
4522
4649
|
}[];
|
|
@@ -4526,6 +4653,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4526
4653
|
userId: string | null;
|
|
4527
4654
|
entityId: string | null;
|
|
4528
4655
|
commentId: string | null;
|
|
4656
|
+
chatMessageId: string | null;
|
|
4529
4657
|
spaceId: string | null;
|
|
4530
4658
|
type: "image" | "video" | "document" | "other";
|
|
4531
4659
|
originalPath: string;
|
|
@@ -4603,6 +4731,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4603
4731
|
userId: string | null;
|
|
4604
4732
|
entityId: string | null;
|
|
4605
4733
|
commentId: string | null;
|
|
4734
|
+
chatMessageId: string | null;
|
|
4606
4735
|
spaceId: string | null;
|
|
4607
4736
|
type: "image" | "video" | "document" | "other";
|
|
4608
4737
|
originalPath: string;
|
|
@@ -4643,6 +4772,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4643
4772
|
userId: string | null;
|
|
4644
4773
|
entityId: string | null;
|
|
4645
4774
|
commentId: string | null;
|
|
4775
|
+
chatMessageId: string | null;
|
|
4646
4776
|
spaceId: string | null;
|
|
4647
4777
|
type: "image" | "video" | "document" | "other";
|
|
4648
4778
|
originalPath: string;
|
|
@@ -4798,6 +4928,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4798
4928
|
userId: string | null;
|
|
4799
4929
|
entityId: string | null;
|
|
4800
4930
|
commentId: string | null;
|
|
4931
|
+
chatMessageId: string | null;
|
|
4801
4932
|
spaceId: string | null;
|
|
4802
4933
|
type: "image" | "video" | "document" | "other";
|
|
4803
4934
|
originalPath: string;
|
|
@@ -4838,6 +4969,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4838
4969
|
userId: string | null;
|
|
4839
4970
|
entityId: string | null;
|
|
4840
4971
|
commentId: string | null;
|
|
4972
|
+
chatMessageId: string | null;
|
|
4841
4973
|
spaceId: string | null;
|
|
4842
4974
|
type: "image" | "video" | "document" | "other";
|
|
4843
4975
|
originalPath: string;
|
|
@@ -4873,6 +5005,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4873
5005
|
updatedAt: Date;
|
|
4874
5006
|
} | undefined;
|
|
4875
5007
|
} | null | undefined;
|
|
5008
|
+
userId: string | null;
|
|
4876
5009
|
user?: {
|
|
4877
5010
|
id: string;
|
|
4878
5011
|
projectId: string;
|
|
@@ -4889,6 +5022,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4889
5022
|
userId: string | null;
|
|
4890
5023
|
entityId: string | null;
|
|
4891
5024
|
commentId: string | null;
|
|
5025
|
+
chatMessageId: string | null;
|
|
4892
5026
|
spaceId: string | null;
|
|
4893
5027
|
type: "image" | "video" | "document" | "other";
|
|
4894
5028
|
originalPath: string;
|
|
@@ -4929,6 +5063,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4929
5063
|
userId: string | null;
|
|
4930
5064
|
entityId: string | null;
|
|
4931
5065
|
commentId: string | null;
|
|
5066
|
+
chatMessageId: string | null;
|
|
4932
5067
|
spaceId: string | null;
|
|
4933
5068
|
type: "image" | "video" | "document" | "other";
|
|
4934
5069
|
originalPath: string;
|
|
@@ -4977,11 +5112,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4977
5112
|
} | null | undefined;
|
|
4978
5113
|
title: string | null;
|
|
4979
5114
|
content: string | null;
|
|
4980
|
-
mentions: {
|
|
5115
|
+
mentions: ({
|
|
5116
|
+
type: "user";
|
|
4981
5117
|
id: string;
|
|
4982
5118
|
foreignId?: string | null | undefined;
|
|
4983
5119
|
username: string;
|
|
4984
|
-
}
|
|
5120
|
+
} | {
|
|
5121
|
+
type: "space";
|
|
5122
|
+
id: string;
|
|
5123
|
+
slug: string;
|
|
5124
|
+
})[];
|
|
4985
5125
|
attachments: {
|
|
4986
5126
|
[x: string]: any;
|
|
4987
5127
|
}[];
|
|
@@ -4991,6 +5131,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4991
5131
|
userId: string | null;
|
|
4992
5132
|
entityId: string | null;
|
|
4993
5133
|
commentId: string | null;
|
|
5134
|
+
chatMessageId: string | null;
|
|
4994
5135
|
spaceId: string | null;
|
|
4995
5136
|
type: "image" | "video" | "document" | "other";
|
|
4996
5137
|
originalPath: string;
|
|
@@ -5068,6 +5209,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5068
5209
|
userId: string | null;
|
|
5069
5210
|
entityId: string | null;
|
|
5070
5211
|
commentId: string | null;
|
|
5212
|
+
chatMessageId: string | null;
|
|
5071
5213
|
spaceId: string | null;
|
|
5072
5214
|
type: "image" | "video" | "document" | "other";
|
|
5073
5215
|
originalPath: string;
|
|
@@ -5108,6 +5250,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5108
5250
|
userId: string | null;
|
|
5109
5251
|
entityId: string | null;
|
|
5110
5252
|
commentId: string | null;
|
|
5253
|
+
chatMessageId: string | null;
|
|
5111
5254
|
spaceId: string | null;
|
|
5112
5255
|
type: "image" | "video" | "document" | "other";
|
|
5113
5256
|
originalPath: string;
|
|
@@ -5263,6 +5406,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5263
5406
|
userId: string | null;
|
|
5264
5407
|
entityId: string | null;
|
|
5265
5408
|
commentId: string | null;
|
|
5409
|
+
chatMessageId: string | null;
|
|
5266
5410
|
spaceId: string | null;
|
|
5267
5411
|
type: "image" | "video" | "document" | "other";
|
|
5268
5412
|
originalPath: string;
|
|
@@ -5303,6 +5447,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5303
5447
|
userId: string | null;
|
|
5304
5448
|
entityId: string | null;
|
|
5305
5449
|
commentId: string | null;
|
|
5450
|
+
chatMessageId: string | null;
|
|
5306
5451
|
spaceId: string | null;
|
|
5307
5452
|
type: "image" | "video" | "document" | "other";
|
|
5308
5453
|
originalPath: string;
|
|
@@ -5338,6 +5483,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5338
5483
|
updatedAt: Date;
|
|
5339
5484
|
} | undefined;
|
|
5340
5485
|
} | null | undefined;
|
|
5486
|
+
userId: string | null;
|
|
5341
5487
|
user?: {
|
|
5342
5488
|
id: string;
|
|
5343
5489
|
projectId: string;
|
|
@@ -5354,6 +5500,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5354
5500
|
userId: string | null;
|
|
5355
5501
|
entityId: string | null;
|
|
5356
5502
|
commentId: string | null;
|
|
5503
|
+
chatMessageId: string | null;
|
|
5357
5504
|
spaceId: string | null;
|
|
5358
5505
|
type: "image" | "video" | "document" | "other";
|
|
5359
5506
|
originalPath: string;
|
|
@@ -5394,6 +5541,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5394
5541
|
userId: string | null;
|
|
5395
5542
|
entityId: string | null;
|
|
5396
5543
|
commentId: string | null;
|
|
5544
|
+
chatMessageId: string | null;
|
|
5397
5545
|
spaceId: string | null;
|
|
5398
5546
|
type: "image" | "video" | "document" | "other";
|
|
5399
5547
|
originalPath: string;
|
|
@@ -5442,11 +5590,16 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5442
5590
|
} | null | undefined;
|
|
5443
5591
|
title: string | null;
|
|
5444
5592
|
content: string | null;
|
|
5445
|
-
mentions: {
|
|
5593
|
+
mentions: ({
|
|
5594
|
+
type: "user";
|
|
5446
5595
|
id: string;
|
|
5447
5596
|
foreignId?: string | null | undefined;
|
|
5448
5597
|
username: string;
|
|
5449
|
-
}
|
|
5598
|
+
} | {
|
|
5599
|
+
type: "space";
|
|
5600
|
+
id: string;
|
|
5601
|
+
slug: string;
|
|
5602
|
+
})[];
|
|
5450
5603
|
attachments: {
|
|
5451
5604
|
[x: string]: any;
|
|
5452
5605
|
}[];
|
|
@@ -5456,6 +5609,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5456
5609
|
userId: string | null;
|
|
5457
5610
|
entityId: string | null;
|
|
5458
5611
|
commentId: string | null;
|
|
5612
|
+
chatMessageId: string | null;
|
|
5459
5613
|
spaceId: string | null;
|
|
5460
5614
|
type: "image" | "video" | "document" | "other";
|
|
5461
5615
|
originalPath: string;
|
|
@@ -5533,6 +5687,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5533
5687
|
userId: string | null;
|
|
5534
5688
|
entityId: string | null;
|
|
5535
5689
|
commentId: string | null;
|
|
5690
|
+
chatMessageId: string | null;
|
|
5536
5691
|
spaceId: string | null;
|
|
5537
5692
|
type: "image" | "video" | "document" | "other";
|
|
5538
5693
|
originalPath: string;
|
|
@@ -5573,6 +5728,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5573
5728
|
userId: string | null;
|
|
5574
5729
|
entityId: string | null;
|
|
5575
5730
|
commentId: string | null;
|
|
5731
|
+
chatMessageId: string | null;
|
|
5576
5732
|
spaceId: string | null;
|
|
5577
5733
|
type: "image" | "video" | "document" | "other";
|
|
5578
5734
|
originalPath: string;
|