@replyke/core 7.0.0-beta.11 → 7.0.0-beta.110
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 -6
- package/dist/cjs/config/axios.js.map +1 -1
- package/dist/cjs/config/useAxiosPrivate.d.ts +2 -1
- package/dist/cjs/config/useAxiosPrivate.js +30 -68
- 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.d.ts +2 -2
- package/dist/cjs/context/entity-context.js +9 -22
- package/dist/cjs/context/entity-context.js.map +1 -1
- package/dist/cjs/context/index.d.ts +4 -0
- package/dist/cjs/context/index.js +15 -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.d.ts +52 -0
- package/dist/cjs/context/replyke-integration-context.js +95 -0
- package/dist/cjs/context/replyke-integration-context.js.map +1 -0
- package/dist/cjs/context/replyke-store-context.js +27 -17
- 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 +183 -65
- 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.d.ts +7 -0
- package/dist/cjs/helpers/markCommentAsDeletedInTree.js +29 -0
- package/dist/cjs/helpers/markCommentAsDeletedInTree.js.map +1 -0
- 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 +39 -64
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.d.ts +16 -8
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js +125 -229
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/cjs/hooks/auth/index.d.ts +11 -1
- package/dist/cjs/hooks/auth/index.js +21 -1
- package/dist/cjs/hooks/auth/index.js.map +1 -1
- package/dist/cjs/hooks/auth/useAccountSync.d.ts +2 -0
- package/dist/cjs/hooks/auth/useAccountSync.js +124 -0
- package/dist/cjs/hooks/auth/useAccountSync.js.map +1 -0
- package/dist/cjs/hooks/auth/useAccounts.d.ts +7 -0
- package/dist/cjs/hooks/auth/useAccounts.js +22 -0
- package/dist/cjs/hooks/auth/useAccounts.js.map +1 -0
- package/dist/cjs/hooks/auth/useAddAccount.d.ts +5 -0
- package/dist/cjs/hooks/auth/useAddAccount.js +27 -0
- package/dist/cjs/hooks/auth/useAddAccount.js.map +1 -0
- package/dist/cjs/hooks/auth/useAuth.d.ts +31 -24
- 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 +21 -0
- package/dist/cjs/hooks/auth/useOAuthIdentities.js +50 -0
- package/dist/cjs/hooks/auth/useOAuthIdentities.js.map +1 -0
- package/dist/cjs/hooks/auth/useRemoveAccount.d.ts +8 -0
- package/dist/cjs/hooks/auth/useRemoveAccount.js +75 -0
- package/dist/cjs/hooks/auth/useRemoveAccount.js.map +1 -0
- package/dist/cjs/hooks/auth/useRequestPasswordReset.d.ts +8 -0
- package/dist/cjs/hooks/auth/useRequestPasswordReset.js +24 -0
- package/dist/cjs/hooks/auth/useRequestPasswordReset.js.map +1 -0
- 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.d.ts +4 -0
- package/dist/cjs/hooks/auth/useSignOutAll.js +25 -0
- package/dist/cjs/hooks/auth/useSignOutAll.js.map +1 -0
- package/dist/cjs/hooks/auth/useSwitchAccount.d.ts +8 -0
- package/dist/cjs/hooks/auth/useSwitchAccount.js +54 -0
- package/dist/cjs/hooks/auth/useSwitchAccount.js.map +1 -0
- 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 +3 -0
- package/dist/cjs/hooks/collections/index.js +14 -0
- package/dist/cjs/hooks/collections/index.js.map +1 -0
- package/dist/cjs/hooks/collections/useCollectionEntitiesWrapper.d.ts +21 -0
- package/dist/cjs/hooks/collections/useCollectionEntitiesWrapper.js +141 -0
- package/dist/cjs/hooks/collections/useCollectionEntitiesWrapper.js.map +1 -0
- package/dist/cjs/hooks/collections/useCollections.d.ts +51 -0
- package/dist/cjs/hooks/collections/useCollections.js +190 -0
- package/dist/cjs/hooks/collections/useCollections.js.map +1 -0
- package/dist/cjs/hooks/collections/useCollectionsActions.d.ts +46 -0
- package/dist/cjs/hooks/collections/useCollectionsActions.js +208 -0
- package/dist/cjs/hooks/collections/useCollectionsActions.js.map +1 -0
- package/dist/cjs/hooks/comments/index.d.ts +10 -2
- package/dist/cjs/hooks/comments/index.js +3 -5
- 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 +29 -15
- package/dist/cjs/hooks/comments/useCommentSectionData.js +298 -350
- package/dist/cjs/hooks/comments/useCommentSectionData.js.map +1 -1
- package/dist/cjs/hooks/comments/useCreateComment.d.ts +3 -2
- 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.d.ts +3 -2
- 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 +8 -2
- package/dist/cjs/hooks/comments/useEntityComments.js +104 -163
- package/dist/cjs/hooks/comments/useEntityComments.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchComment.d.ts +5 -5
- package/dist/cjs/hooks/comments/useFetchComment.js +19 -63
- package/dist/cjs/hooks/comments/useFetchComment.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchCommentByForeignId.d.ts +5 -5
- package/dist/cjs/hooks/comments/useFetchCommentByForeignId.js +21 -64
- package/dist/cjs/hooks/comments/useFetchCommentByForeignId.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchManyComments.d.ts +6 -5
- package/dist/cjs/hooks/comments/useFetchManyComments.js +36 -82
- package/dist/cjs/hooks/comments/useFetchManyComments.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchManyCommentsWrapper.d.ts +21 -0
- package/dist/cjs/hooks/comments/useFetchManyCommentsWrapper.js +129 -0
- package/dist/cjs/hooks/comments/useFetchManyCommentsWrapper.js.map +1 -0
- package/dist/cjs/hooks/comments/useReplies.d.ts +7 -4
- package/dist/cjs/hooks/comments/useReplies.js +50 -101
- package/dist/cjs/hooks/comments/useReplies.js.map +1 -1
- package/dist/cjs/hooks/comments/useUpdateComment.d.ts +3 -2
- package/dist/cjs/hooks/comments/useUpdateComment.js +35 -80
- package/dist/cjs/hooks/comments/useUpdateComment.js.map +1 -1
- package/dist/cjs/hooks/crypto/index.d.ts +1 -0
- package/dist/cjs/hooks/crypto/useSignTestingJwt.d.ts +7 -3
- package/dist/cjs/hooks/crypto/useSignTestingJwt.js +30 -70
- package/dist/cjs/hooks/crypto/useSignTestingJwt.js.map +1 -1
- package/dist/cjs/hooks/entities/index.d.ts +12 -6
- package/dist/cjs/hooks/entities/index.js +9 -13
- package/dist/cjs/hooks/entities/index.js.map +1 -1
- package/dist/cjs/hooks/entities/useCreateEntity.d.ts +25 -2
- package/dist/cjs/hooks/entities/useCreateEntity.js +106 -68
- package/dist/cjs/hooks/entities/useCreateEntity.js.map +1 -1
- package/dist/cjs/hooks/entities/useDeleteEntity.d.ts +3 -2
- package/dist/cjs/hooks/entities/useDeleteEntity.js +14 -62
- 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 +24 -13
- package/dist/cjs/hooks/entities/useEntityData.js +89 -216
- package/dist/cjs/hooks/entities/useEntityData.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchDrafts.d.ts +11 -0
- package/dist/cjs/hooks/entities/useFetchDrafts.js +36 -0
- package/dist/cjs/hooks/entities/useFetchDrafts.js.map +1 -0
- package/dist/cjs/hooks/entities/useFetchEntity.d.ts +3 -2
- 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.d.ts +3 -2
- package/dist/cjs/hooks/entities/useFetchEntityByForeignId.js +20 -75
- package/dist/cjs/hooks/entities/useFetchEntityByForeignId.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchEntityByShortId.d.ts +3 -2
- package/dist/cjs/hooks/entities/useFetchEntityByShortId.js +19 -75
- package/dist/cjs/hooks/entities/useFetchEntityByShortId.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchManyEntities.d.ts +3 -2
- package/dist/cjs/hooks/entities/useFetchManyEntities.js +71 -117
- package/dist/cjs/hooks/entities/useFetchManyEntities.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.d.ts +44 -0
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js +175 -0
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -0
- 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.d.ts +6 -0
- package/dist/cjs/hooks/entities/usePublishDraft.js +25 -0
- package/dist/cjs/hooks/entities/usePublishDraft.js.map +1 -0
- package/dist/cjs/hooks/entities/useUpdateEntity.js +25 -66
- package/dist/cjs/hooks/entities/useUpdateEntity.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/index.d.ts +2 -2
- package/dist/cjs/hooks/entity-lists/index.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityList.d.ts +20 -17
- package/dist/cjs/hooks/entity-lists/useEntityList.js +212 -310
- package/dist/cjs/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityListActions.d.ts +8 -6
- package/dist/cjs/hooks/entity-lists/useEntityListActions.js +112 -180
- package/dist/cjs/hooks/entity-lists/useEntityListActions.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useInfusedData.d.ts +3 -2
- package/dist/cjs/hooks/entity-lists/useInfusedData.js +41 -112
- 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/index.d.ts +14 -0
- package/dist/cjs/hooks/reactions/index.js +21 -0
- package/dist/cjs/hooks/reactions/index.js.map +1 -0
- package/dist/cjs/hooks/reactions/useAddReaction.d.ts +10 -0
- package/dist/cjs/hooks/reactions/useAddReaction.js +33 -0
- package/dist/cjs/hooks/reactions/useAddReaction.js.map +1 -0
- package/dist/cjs/hooks/reactions/useFetchCommentReactions.d.ts +11 -0
- package/dist/cjs/hooks/reactions/useFetchCommentReactions.js +39 -0
- package/dist/cjs/hooks/reactions/useFetchCommentReactions.js.map +1 -0
- package/dist/cjs/hooks/reactions/useFetchCommentReactionsWrapper.d.ts +17 -0
- package/dist/cjs/hooks/reactions/useFetchCommentReactionsWrapper.js +100 -0
- package/dist/cjs/hooks/reactions/useFetchCommentReactionsWrapper.js.map +1 -0
- package/dist/cjs/hooks/reactions/useFetchEntityReactions.d.ts +11 -0
- package/dist/cjs/hooks/reactions/useFetchEntityReactions.js +39 -0
- package/dist/cjs/hooks/reactions/useFetchEntityReactions.js.map +1 -0
- package/dist/cjs/hooks/reactions/useFetchEntityReactionsWrapper.d.ts +17 -0
- package/dist/cjs/hooks/reactions/useFetchEntityReactionsWrapper.js +100 -0
- package/dist/cjs/hooks/reactions/useFetchEntityReactionsWrapper.js.map +1 -0
- package/dist/cjs/hooks/reactions/useReactionToggle.d.ts +20 -0
- package/dist/cjs/hooks/reactions/useReactionToggle.js +84 -0
- package/dist/cjs/hooks/reactions/useReactionToggle.js.map +1 -0
- package/dist/cjs/hooks/reactions/useRemoveReaction.d.ts +8 -0
- package/dist/cjs/hooks/reactions/useRemoveReaction.js +30 -0
- package/dist/cjs/hooks/reactions/useRemoveReaction.js.map +1 -0
- package/dist/cjs/hooks/relationships/connections/index.d.ts +11 -0
- package/dist/cjs/hooks/relationships/connections/useAcceptConnection.d.ts +3 -2
- 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.d.ts +5 -4
- 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.d.ts +3 -2
- 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.d.ts +3 -2
- 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 +2 -2
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.js +20 -82
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +2 -2
- 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.d.ts +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 +2 -2
- package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.js +20 -82
- package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +2 -2
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.js +20 -82
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useRemoveConnection.d.ts +3 -2
- 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.d.ts +3 -2
- 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/index.d.ts +11 -0
- package/dist/cjs/hooks/relationships/follows/useFetchFollowStatus.d.ts +5 -3
- package/dist/cjs/hooks/relationships/follows/useFetchFollowStatus.js +24 -71
- package/dist/cjs/hooks/relationships/follows/useFetchFollowStatus.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.d.ts +2 -2
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.js +16 -78
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersByUserId.d.ts +2 -2
- 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.d.ts +3 -2
- 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 +2 -2
- package/dist/cjs/hooks/relationships/follows/useFetchFollowing.js +19 -81
- package/dist/cjs/hooks/relationships/follows/useFetchFollowing.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingByUserId.d.ts +2 -2
- 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.d.ts +3 -2
- 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.d.ts +4 -3
- 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.d.ts +3 -2
- 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.d.ts +3 -2
- package/dist/cjs/hooks/relationships/follows/useUnfollowByFollowId.js +20 -68
- package/dist/cjs/hooks/relationships/follows/useUnfollowByFollowId.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useUnfollowUserByUserId.d.ts +3 -2
- package/dist/cjs/hooks/relationships/follows/useUnfollowUserByUserId.js +23 -71
- package/dist/cjs/hooks/relationships/follows/useUnfollowUserByUserId.js.map +1 -1
- package/dist/cjs/hooks/reports/index.d.ts +5 -1
- package/dist/cjs/hooks/reports/index.js +3 -3
- package/dist/cjs/hooks/reports/index.js.map +1 -1
- package/dist/cjs/hooks/reports/useCreateReport.d.ts +16 -3
- 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 +60 -0
- package/dist/cjs/hooks/reports/useFetchModeratedReports.js +45 -0
- package/dist/cjs/hooks/reports/useFetchModeratedReports.js.map +1 -0
- package/dist/cjs/hooks/reports/useHandleSpaceCommentReport.d.ts +6 -6
- package/dist/cjs/hooks/reports/useHandleSpaceCommentReport.js +22 -68
- package/dist/cjs/hooks/reports/useHandleSpaceCommentReport.js.map +1 -1
- package/dist/cjs/hooks/reports/useHandleSpaceEntityReport.d.ts +6 -6
- package/dist/cjs/hooks/reports/useHandleSpaceEntityReport.js +22 -68
- 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/index.d.ts +2 -1
- package/dist/cjs/hooks/space-lists/index.js.map +1 -1
- package/dist/cjs/hooks/space-lists/useSpaceList.d.ts +22 -17
- package/dist/cjs/hooks/space-lists/useSpaceList.js +150 -243
- package/dist/cjs/hooks/space-lists/useSpaceList.js.map +1 -1
- package/dist/cjs/hooks/space-lists/useSpaceListActions.d.ts +7 -4
- package/dist/cjs/hooks/space-lists/useSpaceListActions.js +108 -192
- package/dist/cjs/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/cjs/hooks/spaces/index.d.ts +35 -1
- package/dist/cjs/hooks/spaces/index.js +28 -3
- package/dist/cjs/hooks/spaces/index.js.map +1 -1
- package/dist/cjs/hooks/spaces/rules/index.d.ts +12 -0
- package/dist/cjs/hooks/spaces/rules/index.js +19 -0
- package/dist/cjs/hooks/spaces/rules/index.js.map +1 -0
- package/dist/cjs/hooks/spaces/rules/useCreateRule.d.ts +8 -0
- package/dist/cjs/hooks/spaces/rules/useCreateRule.js +31 -0
- package/dist/cjs/hooks/spaces/rules/useCreateRule.js.map +1 -0
- package/dist/cjs/hooks/spaces/rules/useDeleteRule.d.ts +7 -0
- package/dist/cjs/hooks/spaces/rules/useDeleteRule.js +28 -0
- package/dist/cjs/hooks/spaces/rules/useDeleteRule.js.map +1 -0
- package/dist/cjs/hooks/spaces/rules/useFetchManyRules.d.ts +6 -0
- package/dist/cjs/hooks/spaces/rules/useFetchManyRules.js +25 -0
- package/dist/cjs/hooks/spaces/rules/useFetchManyRules.js.map +1 -0
- package/dist/cjs/hooks/spaces/rules/useFetchRule.d.ts +7 -0
- package/dist/cjs/hooks/spaces/rules/useFetchRule.js +28 -0
- package/dist/cjs/hooks/spaces/rules/useFetchRule.js.map +1 -0
- package/dist/cjs/hooks/spaces/rules/useReorderRules.d.ts +7 -0
- package/dist/cjs/hooks/spaces/rules/useReorderRules.js +28 -0
- package/dist/cjs/hooks/spaces/rules/useReorderRules.js.map +1 -0
- package/dist/cjs/hooks/spaces/rules/useUpdateRule.d.ts +11 -0
- package/dist/cjs/hooks/spaces/rules/useUpdateRule.js +28 -0
- package/dist/cjs/hooks/spaces/rules/useUpdateRule.js.map +1 -0
- package/dist/cjs/hooks/spaces/useApproveMember.d.ts +2 -2
- 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.d.ts +3 -2
- 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.d.ts +3 -2
- 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.d.ts +7 -2
- package/dist/cjs/hooks/spaces/useCreateSpace.js +68 -59
- package/dist/cjs/hooks/spaces/useCreateSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useDeclineMember.d.ts +2 -2
- 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.d.ts +3 -2
- 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 +9 -5
- package/dist/cjs/hooks/spaces/useFetchManySpaces.js +37 -71
- package/dist/cjs/hooks/spaces/useFetchManySpaces.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpace.d.ts +5 -3
- package/dist/cjs/hooks/spaces/useFetchSpace.js +18 -60
- package/dist/cjs/hooks/spaces/useFetchSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceBreadcrumb.d.ts +3 -2
- 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.d.ts +5 -3
- package/dist/cjs/hooks/spaces/useFetchSpaceByShortId.js +19 -60
- package/dist/cjs/hooks/spaces/useFetchSpaceByShortId.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceBySlug.d.ts +5 -3
- package/dist/cjs/hooks/spaces/useFetchSpaceBySlug.js +19 -60
- package/dist/cjs/hooks/spaces/useFetchSpaceBySlug.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.d.ts +5 -4
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.js +19 -59
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceMembers.d.ts +2 -2
- package/dist/cjs/hooks/spaces/useFetchSpaceMembers.js +15 -72
- package/dist/cjs/hooks/spaces/useFetchSpaceMembers.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceTeam.d.ts +6 -0
- package/dist/cjs/hooks/spaces/useFetchSpaceTeam.js +27 -0
- package/dist/cjs/hooks/spaces/useFetchSpaceTeam.js.map +1 -0
- package/dist/cjs/hooks/spaces/useFetchUserSpaces.d.ts +12 -0
- package/dist/cjs/hooks/spaces/useFetchUserSpaces.js +29 -0
- package/dist/cjs/hooks/spaces/useFetchUserSpaces.js.map +1 -0
- package/dist/cjs/hooks/spaces/useJoinSpace.d.ts +3 -2
- 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.d.ts +3 -2
- 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.d.ts +26 -0
- package/dist/cjs/hooks/spaces/useModerateSpaceComment.js +39 -0
- package/dist/cjs/hooks/spaces/useModerateSpaceComment.js.map +1 -0
- package/dist/cjs/hooks/spaces/useModerateSpaceEntity.d.ts +26 -0
- package/dist/cjs/hooks/spaces/useModerateSpaceEntity.js +39 -0
- package/dist/cjs/hooks/spaces/useModerateSpaceEntity.js.map +1 -0
- package/dist/cjs/hooks/spaces/useRemoveMember.d.ts +2 -2
- 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.d.ts +3 -2
- package/dist/cjs/hooks/spaces/useSpaceData.js +190 -306
- 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.d.ts +2 -2
- 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.d.ts +2 -2
- 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.d.ts +8 -3
- package/dist/cjs/hooks/spaces/useUpdateSpace.js +62 -60
- package/dist/cjs/hooks/spaces/useUpdateSpace.js.map +1 -1
- package/dist/cjs/hooks/storage/index.d.ts +2 -1
- package/dist/cjs/hooks/storage/index.js +3 -1
- package/dist/cjs/hooks/storage/index.js.map +1 -1
- package/dist/cjs/hooks/storage/useUploadFile.d.ts +16 -5
- package/dist/cjs/hooks/storage/useUploadFile.js +50 -81
- package/dist/cjs/hooks/storage/useUploadFile.js.map +1 -1
- package/dist/cjs/hooks/storage/useUploadImage.d.ts +15 -0
- package/dist/cjs/hooks/storage/useUploadImage.js +111 -0
- package/dist/cjs/hooks/storage/useUploadImage.js.map +1 -0
- package/dist/cjs/hooks/useStableObject.js +3 -3
- package/dist/cjs/hooks/useStableObject.js.map +1 -1
- package/dist/cjs/hooks/user/index.d.ts +1 -0
- 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 -88
- package/dist/cjs/hooks/user/useUserActions.js.map +1 -1
- package/dist/cjs/hooks/users/index.d.ts +6 -7
- package/dist/cjs/hooks/users/index.js +3 -5
- package/dist/cjs/hooks/users/index.js.map +1 -1
- package/dist/cjs/hooks/users/useCheckUsernameAvailability.d.ts +3 -2
- 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.d.ts +5 -3
- package/dist/cjs/hooks/users/useFetchUser.js +17 -59
- package/dist/cjs/hooks/users/useFetchUser.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUserByForeignId.d.ts +5 -3
- package/dist/cjs/hooks/users/useFetchUserByForeignId.js +18 -61
- package/dist/cjs/hooks/users/useFetchUserByForeignId.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUserByUsername.d.ts +5 -3
- package/dist/cjs/hooks/users/useFetchUserByUsername.js +18 -61
- package/dist/cjs/hooks/users/useFetchUserByUsername.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUserSuggestions.d.ts +3 -2
- package/dist/cjs/hooks/users/useFetchUserSuggestions.js +15 -61
- package/dist/cjs/hooks/users/useFetchUserSuggestions.js.map +1 -1
- package/dist/{esm/hooks/users/useMentions.d.ts → cjs/hooks/users/useUserMentions.d.ts} +10 -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/index.d.ts +1 -1
- package/dist/cjs/hooks/utils/index.js.map +1 -1
- package/dist/cjs/hooks/utils/useGetMetadata.d.ts +4 -2
- package/dist/cjs/hooks/utils/useGetMetadata.js +23 -68
- package/dist/cjs/hooks/utils/useGetMetadata.js.map +1 -1
- package/dist/cjs/index.d.ts +46 -28
- package/dist/cjs/index.js +151 -25
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/AccountStorage.d.ts +6 -0
- package/dist/cjs/interfaces/{IPaginatedResponse.js → AccountStorage.js} +1 -1
- package/dist/cjs/interfaces/AccountStorage.js.map +1 -0
- package/dist/cjs/interfaces/EntityListSortByOptions.d.ts +1 -0
- package/dist/cjs/interfaces/EntityListSortByOptions.js +4 -4
- package/dist/cjs/interfaces/EntityListSortByOptions.js.map +1 -1
- package/dist/cjs/interfaces/PaginatedResponse.js +3 -0
- package/dist/cjs/interfaces/PaginatedResponse.js.map +1 -0
- package/dist/cjs/interfaces/UrlMetadata.d.ts +92 -0
- package/dist/cjs/interfaces/UrlMetadata.js +3 -0
- package/dist/cjs/interfaces/UrlMetadata.js.map +1 -0
- package/dist/cjs/interfaces/models/AppNotification.d.ts +225 -15
- 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/{esm/interfaces/models/List.d.ts → cjs/interfaces/models/Collection.d.ts} +2 -4
- package/dist/cjs/interfaces/models/Collection.js +3 -0
- package/dist/cjs/interfaces/models/Collection.js.map +1 -0
- package/dist/cjs/interfaces/models/Comment.d.ts +14 -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 +15 -1
- package/dist/cjs/interfaces/models/File.d.ts +39 -0
- package/dist/cjs/interfaces/models/{List.js → File.js} +1 -1
- package/dist/cjs/interfaces/models/File.js.map +1 -0
- package/dist/cjs/interfaces/models/Image.d.ts +74 -0
- package/dist/cjs/interfaces/models/Image.js +3 -0
- package/dist/cjs/interfaces/models/Image.js.map +1 -0
- package/dist/cjs/interfaces/models/Mention.d.ts +8 -1
- package/dist/cjs/interfaces/models/Reaction.d.ts +23 -0
- package/dist/cjs/interfaces/models/Reaction.js +3 -0
- package/dist/cjs/interfaces/models/Reaction.js.map +1 -0
- package/dist/cjs/interfaces/models/Rule.d.ts +22 -0
- package/dist/cjs/interfaces/models/Rule.js +3 -0
- package/dist/cjs/interfaces/models/Rule.js.map +1 -0
- package/dist/cjs/interfaces/models/Space.d.ts +27 -6
- package/dist/cjs/interfaces/models/SpaceMember.d.ts +4 -1
- package/dist/cjs/interfaces/models/User.d.ts +11 -3
- package/dist/cjs/store/api/appNotificationsApi.d.ts +182 -182
- 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.d.ts +3 -1
- package/dist/cjs/store/api/baseApi.js +17 -15
- package/dist/cjs/store/api/baseApi.js.map +1 -1
- package/dist/cjs/store/api/collectionsApi.d.ts +4541 -0
- package/dist/cjs/store/api/collectionsApi.js +137 -0
- package/dist/cjs/store/api/collectionsApi.js.map +1 -0
- package/dist/cjs/store/api/entityListsApi.d.ts +220 -218
- package/dist/cjs/store/api/entityListsApi.js +83 -172
- package/dist/cjs/store/api/entityListsApi.js.map +1 -1
- package/dist/cjs/store/api/index.d.ts +1 -1
- package/dist/cjs/store/api/index.js +2 -2
- package/dist/cjs/store/api/index.js.map +1 -1
- package/dist/cjs/store/api/spacesApi.d.ts +1332 -960
- package/dist/cjs/store/api/spacesApi.js +233 -402
- package/dist/cjs/store/api/spacesApi.js.map +1 -1
- package/dist/cjs/store/api/userApi.d.ts +12 -4
- package/dist/cjs/store/api/userApi.js +67 -17
- package/dist/cjs/store/api/userApi.js.map +1 -1
- package/dist/cjs/store/hooks.d.ts +28 -0
- package/dist/cjs/store/hooks.js +18 -0
- package/dist/cjs/store/hooks.js.map +1 -0
- package/dist/cjs/store/index.d.ts +21 -11
- package/dist/cjs/store/index.js +45 -44
- package/dist/cjs/store/index.js.map +1 -1
- package/dist/cjs/store/integration.d.ts +35 -0
- package/dist/cjs/store/integration.js +53 -0
- package/dist/cjs/store/integration.js.map +1 -0
- package/dist/cjs/store/middleware.js +13 -21
- package/dist/cjs/store/middleware.js.map +1 -1
- package/dist/cjs/store/replykeReducers.d.ts +40 -0
- package/dist/cjs/store/replykeReducers.js +46 -0
- package/dist/cjs/store/replykeReducers.js.map +1 -0
- package/dist/cjs/store/rootReducer.d.ts +33 -14
- package/dist/cjs/store/rootReducer.js +9 -24
- package/dist/cjs/store/rootReducer.js.map +1 -1
- package/dist/cjs/store/slices/accountsSlice.d.ts +41 -0
- package/dist/cjs/store/slices/accountsSlice.js +63 -0
- package/dist/cjs/store/slices/accountsSlice.js.map +1 -0
- package/dist/cjs/store/slices/appNotificationsSlice.d.ts +2263 -370
- package/dist/cjs/store/slices/appNotificationsSlice.js +31 -48
- package/dist/cjs/store/slices/appNotificationsSlice.js.map +1 -1
- package/dist/cjs/store/slices/authSlice.d.ts +19 -7
- package/dist/cjs/store/slices/authSlice.js +20 -20
- package/dist/cjs/store/slices/authSlice.js.map +1 -1
- package/dist/cjs/store/slices/authThunks.d.ts +7 -0
- package/dist/cjs/store/slices/authThunks.js +269 -347
- 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 +428 -0
- package/dist/cjs/store/slices/collectionsSlice.js +201 -0
- package/dist/cjs/store/slices/collectionsSlice.js.map +1 -0
- package/dist/cjs/store/slices/entityListsSlice.d.ts +4033 -172
- package/dist/cjs/store/slices/entityListsSlice.js +82 -90
- package/dist/cjs/store/slices/entityListsSlice.js.map +1 -1
- package/dist/cjs/store/slices/spaceListsSlice.d.ts +1160 -65
- package/dist/cjs/store/slices/spaceListsSlice.js +71 -83
- package/dist/cjs/store/slices/spaceListsSlice.js.map +1 -1
- package/dist/cjs/store/slices/userSlice.d.ts +739 -7
- package/dist/cjs/store/slices/userSlice.js +24 -35
- package/dist/cjs/store/slices/userSlice.js.map +1 -1
- package/dist/cjs/store/types/index.d.ts +5 -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 +14 -15
- 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 -3
- package/dist/esm/config/axios.js.map +1 -1
- package/dist/esm/config/useAxiosPrivate.d.ts +2 -1
- package/dist/esm/config/useAxiosPrivate.js +27 -65
- 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.d.ts +2 -2
- package/dist/esm/context/entity-context.js +7 -20
- package/dist/esm/context/entity-context.js.map +1 -1
- package/dist/esm/context/index.d.ts +4 -0
- package/dist/esm/context/index.js +4 -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.d.ts +52 -0
- package/dist/esm/context/replyke-integration-context.js +88 -0
- package/dist/esm/context/replyke-integration-context.js.map +1 -0
- package/dist/esm/context/replyke-store-context.js +24 -14
- 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 +182 -64
- 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.d.ts +7 -0
- package/dist/esm/helpers/markCommentAsDeletedInTree.js +26 -0
- package/dist/esm/helpers/markCommentAsDeletedInTree.js.map +1 -0
- 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 +35 -60
- package/dist/esm/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.d.ts +16 -8
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js +120 -224
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/esm/hooks/auth/index.d.ts +11 -1
- package/dist/esm/hooks/auth/index.js +10 -0
- package/dist/esm/hooks/auth/index.js.map +1 -1
- package/dist/esm/hooks/auth/useAccountSync.d.ts +2 -0
- package/dist/esm/hooks/auth/useAccountSync.js +121 -0
- package/dist/esm/hooks/auth/useAccountSync.js.map +1 -0
- package/dist/esm/hooks/auth/useAccounts.d.ts +7 -0
- package/dist/esm/hooks/auth/useAccounts.js +19 -0
- package/dist/esm/hooks/auth/useAccounts.js.map +1 -0
- package/dist/esm/hooks/auth/useAddAccount.d.ts +5 -0
- package/dist/esm/hooks/auth/useAddAccount.js +24 -0
- package/dist/esm/hooks/auth/useAddAccount.js.map +1 -0
- package/dist/esm/hooks/auth/useAuth.d.ts +31 -24
- package/dist/esm/hooks/auth/useAuth.js +65 -149
- package/dist/esm/hooks/auth/useAuth.js.map +1 -1
- package/dist/esm/hooks/auth/useOAuthIdentities.d.ts +21 -0
- package/dist/esm/hooks/auth/useOAuthIdentities.js +45 -0
- package/dist/esm/hooks/auth/useOAuthIdentities.js.map +1 -0
- package/dist/esm/hooks/auth/useRemoveAccount.d.ts +8 -0
- package/dist/esm/hooks/auth/useRemoveAccount.js +69 -0
- package/dist/esm/hooks/auth/useRemoveAccount.js.map +1 -0
- package/dist/esm/hooks/auth/useRequestPasswordReset.d.ts +8 -0
- package/dist/esm/hooks/auth/useRequestPasswordReset.js +19 -0
- package/dist/esm/hooks/auth/useRequestPasswordReset.js.map +1 -0
- 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.d.ts +4 -0
- package/dist/esm/hooks/auth/useSignOutAll.js +19 -0
- package/dist/esm/hooks/auth/useSignOutAll.js.map +1 -0
- package/dist/esm/hooks/auth/useSwitchAccount.d.ts +8 -0
- package/dist/esm/hooks/auth/useSwitchAccount.js +48 -0
- package/dist/esm/hooks/auth/useSwitchAccount.js.map +1 -0
- 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 +3 -0
- package/dist/esm/hooks/collections/index.js +5 -0
- package/dist/esm/hooks/collections/index.js.map +1 -0
- package/dist/esm/hooks/collections/useCollectionEntitiesWrapper.d.ts +21 -0
- package/dist/esm/hooks/collections/useCollectionEntitiesWrapper.js +136 -0
- package/dist/esm/hooks/collections/useCollectionEntitiesWrapper.js.map +1 -0
- package/dist/esm/hooks/collections/useCollections.d.ts +51 -0
- package/dist/esm/hooks/collections/useCollections.js +185 -0
- package/dist/esm/hooks/collections/useCollections.js.map +1 -0
- package/dist/esm/hooks/collections/useCollectionsActions.d.ts +46 -0
- package/dist/esm/hooks/collections/useCollectionsActions.js +205 -0
- package/dist/esm/hooks/collections/useCollectionsActions.js.map +1 -0
- package/dist/esm/hooks/comments/index.d.ts +10 -2
- package/dist/esm/hooks/comments/index.js +1 -2
- package/dist/esm/hooks/comments/index.js.map +1 -1
- package/dist/esm/hooks/comments/useCommentSectionData.d.ts +29 -15
- package/dist/esm/hooks/comments/useCommentSectionData.js +287 -339
- package/dist/esm/hooks/comments/useCommentSectionData.js.map +1 -1
- package/dist/esm/hooks/comments/useCreateComment.d.ts +3 -2
- 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.d.ts +3 -2
- 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 +8 -2
- package/dist/esm/hooks/comments/useEntityComments.js +99 -158
- package/dist/esm/hooks/comments/useEntityComments.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchComment.d.ts +5 -5
- package/dist/esm/hooks/comments/useFetchComment.js +16 -60
- package/dist/esm/hooks/comments/useFetchComment.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchCommentByForeignId.d.ts +5 -5
- package/dist/esm/hooks/comments/useFetchCommentByForeignId.js +18 -61
- package/dist/esm/hooks/comments/useFetchCommentByForeignId.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchManyComments.d.ts +6 -5
- package/dist/esm/hooks/comments/useFetchManyComments.js +34 -80
- package/dist/esm/hooks/comments/useFetchManyComments.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchManyCommentsWrapper.d.ts +21 -0
- package/dist/esm/hooks/comments/useFetchManyCommentsWrapper.js +124 -0
- package/dist/esm/hooks/comments/useFetchManyCommentsWrapper.js.map +1 -0
- package/dist/esm/hooks/comments/useReplies.d.ts +7 -4
- package/dist/esm/hooks/comments/useReplies.js +45 -96
- package/dist/esm/hooks/comments/useReplies.js.map +1 -1
- package/dist/esm/hooks/comments/useUpdateComment.d.ts +3 -2
- package/dist/esm/hooks/comments/useUpdateComment.js +32 -77
- package/dist/esm/hooks/comments/useUpdateComment.js.map +1 -1
- package/dist/esm/hooks/crypto/index.d.ts +1 -0
- package/dist/esm/hooks/crypto/useSignTestingJwt.d.ts +7 -3
- package/dist/esm/hooks/crypto/useSignTestingJwt.js +29 -69
- package/dist/esm/hooks/crypto/useSignTestingJwt.js.map +1 -1
- package/dist/esm/hooks/entities/index.d.ts +12 -6
- package/dist/esm/hooks/entities/index.js +4 -6
- package/dist/esm/hooks/entities/index.js.map +1 -1
- package/dist/esm/hooks/entities/useCreateEntity.d.ts +25 -2
- package/dist/esm/hooks/entities/useCreateEntity.js +103 -65
- package/dist/esm/hooks/entities/useCreateEntity.js.map +1 -1
- package/dist/esm/hooks/entities/useDeleteEntity.d.ts +3 -2
- package/dist/esm/hooks/entities/useDeleteEntity.js +11 -59
- package/dist/esm/hooks/entities/useDeleteEntity.js.map +1 -1
- package/dist/esm/hooks/entities/useEntityData.d.ts +24 -13
- package/dist/esm/hooks/entities/useEntityData.js +82 -209
- package/dist/esm/hooks/entities/useEntityData.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchDrafts.d.ts +11 -0
- package/dist/esm/hooks/entities/useFetchDrafts.js +31 -0
- package/dist/esm/hooks/entities/useFetchDrafts.js.map +1 -0
- package/dist/esm/hooks/entities/useFetchEntity.d.ts +3 -2
- package/dist/esm/hooks/entities/useFetchEntity.js +16 -62
- package/dist/esm/hooks/entities/useFetchEntity.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchEntityByForeignId.d.ts +3 -2
- package/dist/esm/hooks/entities/useFetchEntityByForeignId.js +18 -73
- package/dist/esm/hooks/entities/useFetchEntityByForeignId.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchEntityByShortId.d.ts +3 -2
- package/dist/esm/hooks/entities/useFetchEntityByShortId.js +17 -73
- package/dist/esm/hooks/entities/useFetchEntityByShortId.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchManyEntities.d.ts +3 -2
- package/dist/esm/hooks/entities/useFetchManyEntities.js +68 -114
- package/dist/esm/hooks/entities/useFetchManyEntities.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.d.ts +44 -0
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js +170 -0
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -0
- 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.d.ts +6 -0
- package/dist/esm/hooks/entities/usePublishDraft.js +20 -0
- package/dist/esm/hooks/entities/usePublishDraft.js.map +1 -0
- package/dist/esm/hooks/entities/useUpdateEntity.js +22 -63
- package/dist/esm/hooks/entities/useUpdateEntity.js.map +1 -1
- package/dist/esm/hooks/entity-lists/index.d.ts +2 -2
- package/dist/esm/hooks/entity-lists/index.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useEntityList.d.ts +20 -17
- package/dist/esm/hooks/entity-lists/useEntityList.js +207 -305
- package/dist/esm/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useEntityListActions.d.ts +8 -6
- package/dist/esm/hooks/entity-lists/useEntityListActions.js +107 -175
- package/dist/esm/hooks/entity-lists/useEntityListActions.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useInfusedData.d.ts +3 -2
- package/dist/esm/hooks/entity-lists/useInfusedData.js +38 -109
- 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/index.d.ts +14 -0
- package/dist/esm/hooks/reactions/index.js +8 -0
- package/dist/esm/hooks/reactions/index.js.map +1 -0
- package/dist/esm/hooks/reactions/useAddReaction.d.ts +10 -0
- package/dist/esm/hooks/reactions/useAddReaction.js +28 -0
- package/dist/esm/hooks/reactions/useAddReaction.js.map +1 -0
- package/dist/esm/hooks/reactions/useFetchCommentReactions.d.ts +11 -0
- package/dist/esm/hooks/reactions/useFetchCommentReactions.js +34 -0
- package/dist/esm/hooks/reactions/useFetchCommentReactions.js.map +1 -0
- package/dist/esm/hooks/reactions/useFetchCommentReactionsWrapper.d.ts +17 -0
- package/dist/esm/hooks/reactions/useFetchCommentReactionsWrapper.js +95 -0
- package/dist/esm/hooks/reactions/useFetchCommentReactionsWrapper.js.map +1 -0
- package/dist/esm/hooks/reactions/useFetchEntityReactions.d.ts +11 -0
- package/dist/esm/hooks/reactions/useFetchEntityReactions.js +34 -0
- package/dist/esm/hooks/reactions/useFetchEntityReactions.js.map +1 -0
- package/dist/esm/hooks/reactions/useFetchEntityReactionsWrapper.d.ts +17 -0
- package/dist/esm/hooks/reactions/useFetchEntityReactionsWrapper.js +95 -0
- package/dist/esm/hooks/reactions/useFetchEntityReactionsWrapper.js.map +1 -0
- package/dist/esm/hooks/reactions/useReactionToggle.d.ts +20 -0
- package/dist/esm/hooks/reactions/useReactionToggle.js +79 -0
- package/dist/esm/hooks/reactions/useReactionToggle.js.map +1 -0
- package/dist/esm/hooks/reactions/useRemoveReaction.d.ts +8 -0
- package/dist/esm/hooks/reactions/useRemoveReaction.js +25 -0
- package/dist/esm/hooks/reactions/useRemoveReaction.js.map +1 -0
- package/dist/esm/hooks/relationships/connections/index.d.ts +11 -0
- package/dist/esm/hooks/relationships/connections/useAcceptConnection.d.ts +3 -2
- 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.d.ts +5 -4
- 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.d.ts +3 -2
- 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.d.ts +3 -2
- 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 +2 -2
- package/dist/esm/hooks/relationships/connections/useFetchConnections.js +16 -78
- package/dist/esm/hooks/relationships/connections/useFetchConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +2 -2
- 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.d.ts +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 +2 -2
- package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.js +16 -78
- package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +2 -2
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.js +16 -78
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useRemoveConnection.d.ts +3 -2
- 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.d.ts +3 -2
- 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/index.d.ts +11 -0
- package/dist/esm/hooks/relationships/follows/useFetchFollowStatus.d.ts +5 -3
- package/dist/esm/hooks/relationships/follows/useFetchFollowStatus.js +20 -67
- package/dist/esm/hooks/relationships/follows/useFetchFollowStatus.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.d.ts +2 -2
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.js +12 -74
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowersByUserId.d.ts +2 -2
- 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.d.ts +3 -2
- 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 +2 -2
- package/dist/esm/hooks/relationships/follows/useFetchFollowing.js +15 -77
- package/dist/esm/hooks/relationships/follows/useFetchFollowing.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowingByUserId.d.ts +2 -2
- 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.d.ts +3 -2
- 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.d.ts +4 -3
- 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.d.ts +3 -2
- 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.d.ts +3 -2
- package/dist/esm/hooks/relationships/follows/useUnfollowByFollowId.js +16 -64
- package/dist/esm/hooks/relationships/follows/useUnfollowByFollowId.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useUnfollowUserByUserId.d.ts +3 -2
- package/dist/esm/hooks/relationships/follows/useUnfollowUserByUserId.js +19 -67
- package/dist/esm/hooks/relationships/follows/useUnfollowUserByUserId.js.map +1 -1
- package/dist/esm/hooks/reports/index.d.ts +5 -1
- package/dist/esm/hooks/reports/index.js +1 -1
- package/dist/esm/hooks/reports/index.js.map +1 -1
- package/dist/esm/hooks/reports/useCreateReport.d.ts +16 -3
- 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 +60 -0
- package/dist/esm/hooks/reports/useFetchModeratedReports.js +40 -0
- package/dist/esm/hooks/reports/useFetchModeratedReports.js.map +1 -0
- package/dist/esm/hooks/reports/useHandleSpaceCommentReport.d.ts +6 -6
- package/dist/esm/hooks/reports/useHandleSpaceCommentReport.js +19 -65
- package/dist/esm/hooks/reports/useHandleSpaceCommentReport.js.map +1 -1
- package/dist/esm/hooks/reports/useHandleSpaceEntityReport.d.ts +6 -6
- package/dist/esm/hooks/reports/useHandleSpaceEntityReport.js +19 -65
- 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/index.d.ts +2 -1
- package/dist/esm/hooks/space-lists/index.js.map +1 -1
- package/dist/esm/hooks/space-lists/useSpaceList.d.ts +22 -17
- package/dist/esm/hooks/space-lists/useSpaceList.js +146 -239
- package/dist/esm/hooks/space-lists/useSpaceList.js.map +1 -1
- package/dist/esm/hooks/space-lists/useSpaceListActions.d.ts +7 -4
- package/dist/esm/hooks/space-lists/useSpaceListActions.js +103 -187
- package/dist/esm/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/esm/hooks/spaces/index.d.ts +35 -1
- package/dist/esm/hooks/spaces/index.js +13 -1
- package/dist/esm/hooks/spaces/index.js.map +1 -1
- package/dist/esm/hooks/spaces/rules/index.d.ts +12 -0
- package/dist/esm/hooks/spaces/rules/index.js +7 -0
- package/dist/esm/hooks/spaces/rules/index.js.map +1 -0
- package/dist/esm/hooks/spaces/rules/useCreateRule.d.ts +8 -0
- package/dist/esm/hooks/spaces/rules/useCreateRule.js +26 -0
- package/dist/esm/hooks/spaces/rules/useCreateRule.js.map +1 -0
- package/dist/esm/hooks/spaces/rules/useDeleteRule.d.ts +7 -0
- package/dist/esm/hooks/spaces/rules/useDeleteRule.js +23 -0
- package/dist/esm/hooks/spaces/rules/useDeleteRule.js.map +1 -0
- package/dist/esm/hooks/spaces/rules/useFetchManyRules.d.ts +6 -0
- package/dist/esm/hooks/spaces/rules/useFetchManyRules.js +20 -0
- package/dist/esm/hooks/spaces/rules/useFetchManyRules.js.map +1 -0
- package/dist/esm/hooks/spaces/rules/useFetchRule.d.ts +7 -0
- package/dist/esm/hooks/spaces/rules/useFetchRule.js +23 -0
- package/dist/esm/hooks/spaces/rules/useFetchRule.js.map +1 -0
- package/dist/esm/hooks/spaces/rules/useReorderRules.d.ts +7 -0
- package/dist/esm/hooks/spaces/rules/useReorderRules.js +23 -0
- package/dist/esm/hooks/spaces/rules/useReorderRules.js.map +1 -0
- package/dist/esm/hooks/spaces/rules/useUpdateRule.d.ts +11 -0
- package/dist/esm/hooks/spaces/rules/useUpdateRule.js +23 -0
- package/dist/esm/hooks/spaces/rules/useUpdateRule.js.map +1 -0
- package/dist/esm/hooks/spaces/useApproveMember.d.ts +2 -2
- 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.d.ts +3 -2
- 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.d.ts +3 -2
- 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.d.ts +7 -2
- package/dist/esm/hooks/spaces/useCreateSpace.js +65 -56
- package/dist/esm/hooks/spaces/useCreateSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useDeclineMember.d.ts +2 -2
- 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.d.ts +3 -2
- 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 +9 -5
- package/dist/esm/hooks/spaces/useFetchManySpaces.js +34 -68
- package/dist/esm/hooks/spaces/useFetchManySpaces.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpace.d.ts +5 -3
- package/dist/esm/hooks/spaces/useFetchSpace.js +15 -57
- package/dist/esm/hooks/spaces/useFetchSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceBreadcrumb.d.ts +3 -2
- 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.d.ts +5 -3
- package/dist/esm/hooks/spaces/useFetchSpaceByShortId.js +16 -57
- package/dist/esm/hooks/spaces/useFetchSpaceByShortId.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceBySlug.d.ts +5 -3
- package/dist/esm/hooks/spaces/useFetchSpaceBySlug.js +16 -57
- package/dist/esm/hooks/spaces/useFetchSpaceBySlug.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.d.ts +5 -4
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.js +16 -56
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceMembers.d.ts +2 -2
- package/dist/esm/hooks/spaces/useFetchSpaceMembers.js +12 -69
- package/dist/esm/hooks/spaces/useFetchSpaceMembers.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceTeam.d.ts +6 -0
- package/dist/esm/hooks/spaces/useFetchSpaceTeam.js +22 -0
- package/dist/esm/hooks/spaces/useFetchSpaceTeam.js.map +1 -0
- package/dist/esm/hooks/spaces/useFetchUserSpaces.d.ts +12 -0
- package/dist/esm/hooks/spaces/useFetchUserSpaces.js +24 -0
- package/dist/esm/hooks/spaces/useFetchUserSpaces.js.map +1 -0
- package/dist/esm/hooks/spaces/useJoinSpace.d.ts +3 -2
- 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.d.ts +3 -2
- 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.d.ts +26 -0
- package/dist/esm/hooks/spaces/useModerateSpaceComment.js +34 -0
- package/dist/esm/hooks/spaces/useModerateSpaceComment.js.map +1 -0
- package/dist/esm/hooks/spaces/useModerateSpaceEntity.d.ts +26 -0
- package/dist/esm/hooks/spaces/useModerateSpaceEntity.js +34 -0
- package/dist/esm/hooks/spaces/useModerateSpaceEntity.js.map +1 -0
- package/dist/esm/hooks/spaces/useRemoveMember.d.ts +2 -2
- 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.d.ts +3 -2
- package/dist/esm/hooks/spaces/useSpaceData.js +180 -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.d.ts +2 -2
- 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.d.ts +2 -2
- 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.d.ts +8 -3
- package/dist/esm/hooks/spaces/useUpdateSpace.js +59 -57
- package/dist/esm/hooks/spaces/useUpdateSpace.js.map +1 -1
- package/dist/esm/hooks/storage/index.d.ts +2 -1
- package/dist/esm/hooks/storage/index.js +2 -1
- package/dist/esm/hooks/storage/index.js.map +1 -1
- package/dist/esm/hooks/storage/useUploadFile.d.ts +16 -5
- package/dist/esm/hooks/storage/useUploadFile.js +47 -78
- package/dist/esm/hooks/storage/useUploadFile.js.map +1 -1
- package/dist/esm/hooks/storage/useUploadImage.d.ts +15 -0
- package/dist/esm/hooks/storage/useUploadImage.js +106 -0
- package/dist/esm/hooks/storage/useUploadImage.js.map +1 -0
- package/dist/esm/hooks/useStableObject.js +1 -1
- package/dist/esm/hooks/useStableObject.js.map +1 -1
- package/dist/esm/hooks/user/index.d.ts +1 -0
- package/dist/esm/hooks/user/useUser.js +30 -78
- 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 +59 -85
- package/dist/esm/hooks/user/useUserActions.js.map +1 -1
- package/dist/esm/hooks/users/index.d.ts +6 -7
- package/dist/esm/hooks/users/index.js +6 -7
- package/dist/esm/hooks/users/index.js.map +1 -1
- package/dist/esm/hooks/users/useCheckUsernameAvailability.d.ts +3 -2
- 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.d.ts +5 -3
- package/dist/esm/hooks/users/useFetchUser.js +14 -56
- package/dist/esm/hooks/users/useFetchUser.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUserByForeignId.d.ts +5 -3
- package/dist/esm/hooks/users/useFetchUserByForeignId.js +15 -58
- package/dist/esm/hooks/users/useFetchUserByForeignId.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUserByUsername.d.ts +5 -3
- package/dist/esm/hooks/users/useFetchUserByUsername.js +15 -58
- package/dist/esm/hooks/users/useFetchUserByUsername.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUserSuggestions.d.ts +3 -2
- package/dist/esm/hooks/users/useFetchUserSuggestions.js +12 -58
- package/dist/esm/hooks/users/useFetchUserSuggestions.js.map +1 -1
- package/dist/{cjs/hooks/users/useMentions.d.ts → esm/hooks/users/useUserMentions.d.ts} +10 -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/index.d.ts +1 -1
- package/dist/esm/hooks/utils/index.js +1 -1
- package/dist/esm/hooks/utils/index.js.map +1 -1
- package/dist/esm/hooks/utils/useGetMetadata.d.ts +4 -2
- package/dist/esm/hooks/utils/useGetMetadata.js +20 -65
- package/dist/esm/hooks/utils/useGetMetadata.js.map +1 -1
- package/dist/esm/index.d.ts +46 -28
- package/dist/esm/index.js +33 -13
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/AccountStorage.d.ts +6 -0
- package/dist/esm/interfaces/AccountStorage.js +2 -0
- package/dist/esm/interfaces/AccountStorage.js.map +1 -0
- package/dist/esm/interfaces/EntityListSortByOptions.d.ts +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/UrlMetadata.d.ts +92 -0
- package/dist/esm/interfaces/UrlMetadata.js +2 -0
- package/dist/esm/interfaces/UrlMetadata.js.map +1 -0
- package/dist/esm/interfaces/models/AppNotification.d.ts +225 -15
- 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/{cjs/interfaces/models/List.d.ts → esm/interfaces/models/Collection.d.ts} +2 -4
- package/dist/esm/interfaces/models/Collection.js +2 -0
- package/dist/esm/interfaces/models/Collection.js.map +1 -0
- package/dist/esm/interfaces/models/Comment.d.ts +14 -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 +15 -1
- package/dist/esm/interfaces/models/File.d.ts +39 -0
- package/dist/esm/interfaces/models/File.js +2 -0
- package/dist/esm/interfaces/models/File.js.map +1 -0
- package/dist/esm/interfaces/models/Image.d.ts +74 -0
- package/dist/esm/interfaces/models/Image.js +2 -0
- package/dist/esm/interfaces/models/Image.js.map +1 -0
- package/dist/esm/interfaces/models/Mention.d.ts +8 -1
- package/dist/esm/interfaces/models/Reaction.d.ts +23 -0
- package/dist/esm/interfaces/models/Reaction.js +2 -0
- package/dist/esm/interfaces/models/Reaction.js.map +1 -0
- package/dist/esm/interfaces/models/Rule.d.ts +22 -0
- package/dist/esm/interfaces/models/Rule.js +2 -0
- package/dist/esm/interfaces/models/Rule.js.map +1 -0
- package/dist/esm/interfaces/models/Space.d.ts +27 -6
- package/dist/esm/interfaces/models/SpaceMember.d.ts +4 -1
- package/dist/esm/interfaces/models/User.d.ts +11 -3
- package/dist/esm/store/api/appNotificationsApi.d.ts +182 -182
- 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 +3 -1
- package/dist/esm/store/api/baseApi.js +15 -14
- package/dist/esm/store/api/baseApi.js.map +1 -1
- package/dist/esm/store/api/collectionsApi.d.ts +4541 -0
- package/dist/esm/store/api/collectionsApi.js +133 -0
- package/dist/esm/store/api/collectionsApi.js.map +1 -0
- package/dist/esm/store/api/entityListsApi.d.ts +220 -218
- package/dist/esm/store/api/entityListsApi.js +83 -173
- package/dist/esm/store/api/entityListsApi.js.map +1 -1
- package/dist/esm/store/api/index.d.ts +1 -1
- package/dist/esm/store/api/index.js +2 -2
- package/dist/esm/store/api/index.js.map +1 -1
- package/dist/esm/store/api/spacesApi.d.ts +1332 -960
- package/dist/esm/store/api/spacesApi.js +232 -402
- package/dist/esm/store/api/spacesApi.js.map +1 -1
- package/dist/esm/store/api/userApi.d.ts +12 -4
- package/dist/esm/store/api/userApi.js +68 -18
- package/dist/esm/store/api/userApi.js.map +1 -1
- package/dist/esm/store/hooks.d.ts +28 -0
- package/dist/esm/store/hooks.js +14 -0
- package/dist/esm/store/hooks.js.map +1 -0
- package/dist/esm/store/index.d.ts +21 -11
- package/dist/esm/store/index.js +41 -40
- package/dist/esm/store/index.js.map +1 -1
- package/dist/esm/store/integration.d.ts +35 -0
- package/dist/esm/store/integration.js +45 -0
- package/dist/esm/store/integration.js.map +1 -0
- package/dist/esm/store/middleware.js +11 -19
- package/dist/esm/store/middleware.js.map +1 -1
- package/dist/esm/store/replykeReducers.d.ts +40 -0
- package/dist/esm/store/replykeReducers.js +40 -0
- package/dist/esm/store/replykeReducers.js.map +1 -0
- package/dist/esm/store/rootReducer.d.ts +33 -14
- package/dist/esm/store/rootReducer.js +7 -19
- package/dist/esm/store/rootReducer.js.map +1 -1
- package/dist/esm/store/slices/accountsSlice.d.ts +41 -0
- package/dist/esm/store/slices/accountsSlice.js +55 -0
- package/dist/esm/store/slices/accountsSlice.js.map +1 -0
- package/dist/esm/store/slices/appNotificationsSlice.d.ts +2263 -370
- package/dist/esm/store/slices/appNotificationsSlice.js +31 -49
- package/dist/esm/store/slices/appNotificationsSlice.js.map +1 -1
- package/dist/esm/store/slices/authSlice.d.ts +19 -7
- package/dist/esm/store/slices/authSlice.js +19 -20
- package/dist/esm/store/slices/authSlice.js.map +1 -1
- package/dist/esm/store/slices/authThunks.d.ts +7 -0
- package/dist/esm/store/slices/authThunks.js +263 -341
- 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 +428 -0
- package/dist/esm/store/slices/collectionsSlice.js +191 -0
- package/dist/esm/store/slices/collectionsSlice.js.map +1 -0
- package/dist/esm/store/slices/entityListsSlice.d.ts +4045 -184
- package/dist/esm/store/slices/entityListsSlice.js +82 -91
- package/dist/esm/store/slices/entityListsSlice.js.map +1 -1
- package/dist/esm/store/slices/spaceListsSlice.d.ts +1184 -89
- package/dist/esm/store/slices/spaceListsSlice.js +71 -84
- package/dist/esm/store/slices/spaceListsSlice.js.map +1 -1
- package/dist/esm/store/slices/userSlice.d.ts +747 -15
- package/dist/esm/store/slices/userSlice.js +24 -36
- package/dist/esm/store/slices/userSlice.js.map +1 -1
- package/dist/esm/store/types/index.d.ts +5 -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 +14 -15
- 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 +7 -4
- package/dist/cjs/hooks/comments/useCommentVotes.d.ts +0 -11
- package/dist/cjs/hooks/comments/useCommentVotes.js +0 -234
- package/dist/cjs/hooks/comments/useCommentVotes.js.map +0 -1
- package/dist/cjs/hooks/comments/useDownvoteComment.d.ts +0 -5
- package/dist/cjs/hooks/comments/useDownvoteComment.js +0 -71
- package/dist/cjs/hooks/comments/useDownvoteComment.js.map +0 -1
- package/dist/cjs/hooks/comments/useProfileComments.d.ts +0 -18
- package/dist/cjs/hooks/comments/useProfileComments.js +0 -177
- package/dist/cjs/hooks/comments/useProfileComments.js.map +0 -1
- package/dist/cjs/hooks/comments/useRemoveCommentDownvote.d.ts +0 -5
- package/dist/cjs/hooks/comments/useRemoveCommentDownvote.js +0 -71
- package/dist/cjs/hooks/comments/useRemoveCommentDownvote.js.map +0 -1
- package/dist/cjs/hooks/comments/useRemoveCommentUpvote.d.ts +0 -5
- package/dist/cjs/hooks/comments/useRemoveCommentUpvote.js +0 -71
- package/dist/cjs/hooks/comments/useRemoveCommentUpvote.js.map +0 -1
- package/dist/cjs/hooks/comments/useUpvoteComment.d.ts +0 -5
- package/dist/cjs/hooks/comments/useUpvoteComment.js +0 -71
- package/dist/cjs/hooks/comments/useUpvoteComment.js.map +0 -1
- package/dist/cjs/hooks/entities/useDownvoteEntity.d.ts +0 -5
- package/dist/cjs/hooks/entities/useDownvoteEntity.js +0 -71
- package/dist/cjs/hooks/entities/useDownvoteEntity.js.map +0 -1
- package/dist/cjs/hooks/entities/useEntityVotes.d.ts +0 -11
- package/dist/cjs/hooks/entities/useEntityVotes.js +0 -241
- package/dist/cjs/hooks/entities/useEntityVotes.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/entities/useRemoveEntityDownvote.d.ts +0 -5
- package/dist/cjs/hooks/entities/useRemoveEntityDownvote.js +0 -71
- package/dist/cjs/hooks/entities/useRemoveEntityDownvote.js.map +0 -1
- package/dist/cjs/hooks/entities/useRemoveEntityUpvote.d.ts +0 -5
- package/dist/cjs/hooks/entities/useRemoveEntityUpvote.js +0 -71
- package/dist/cjs/hooks/entities/useRemoveEntityUpvote.js.map +0 -1
- package/dist/cjs/hooks/entities/useUpvoteEntity.d.ts +0 -5
- package/dist/cjs/hooks/entities/useUpvoteEntity.js +0 -71
- package/dist/cjs/hooks/entities/useUpvoteEntity.js.map +0 -1
- package/dist/cjs/hooks/lists/index.d.ts +0 -3
- package/dist/cjs/hooks/lists/index.js +0 -14
- package/dist/cjs/hooks/lists/index.js.map +0 -1
- package/dist/cjs/hooks/lists/useIsEntitySaved.d.ts +0 -5
- package/dist/cjs/hooks/lists/useIsEntitySaved.js +0 -83
- package/dist/cjs/hooks/lists/useIsEntitySaved.js.map +0 -1
- package/dist/cjs/hooks/lists/useLists.d.ts +0 -36
- package/dist/cjs/hooks/lists/useLists.js +0 -239
- package/dist/cjs/hooks/lists/useLists.js.map +0 -1
- package/dist/cjs/hooks/lists/useListsActions.d.ts +0 -21
- package/dist/cjs/hooks/lists/useListsActions.js +0 -341
- package/dist/cjs/hooks/lists/useListsActions.js.map +0 -1
- package/dist/cjs/hooks/reports/useFetchSpaceReports.d.ts +0 -39
- package/dist/cjs/hooks/reports/useFetchSpaceReports.js +0 -96
- package/dist/cjs/hooks/reports/useFetchSpaceReports.js.map +0 -1
- package/dist/cjs/hooks/spaces/useFetchMySpaces.d.ts +0 -8
- package/dist/cjs/hooks/spaces/useFetchMySpaces.js +0 -85
- package/dist/cjs/hooks/spaces/useFetchMySpaces.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/hooks/users/useUpdateUser.d.ts +0 -18
- package/dist/cjs/hooks/users/useUpdateUser.js +0 -78
- package/dist/cjs/hooks/users/useUpdateUser.js.map +0 -1
- package/dist/cjs/interfaces/IPaginatedResponse.js.map +0 -1
- package/dist/cjs/interfaces/models/List.js.map +0 -1
- package/dist/cjs/store/api/listsApi.d.ts +0 -3564
- package/dist/cjs/store/api/listsApi.js +0 -288
- package/dist/cjs/store/api/listsApi.js.map +0 -1
- package/dist/cjs/store/slices/listsSlice.d.ts +0 -1911
- package/dist/cjs/store/slices/listsSlice.js +0 -211
- package/dist/cjs/store/slices/listsSlice.js.map +0 -1
- package/dist/esm/hooks/comments/useCommentVotes.d.ts +0 -11
- package/dist/esm/hooks/comments/useCommentVotes.js +0 -229
- package/dist/esm/hooks/comments/useCommentVotes.js.map +0 -1
- package/dist/esm/hooks/comments/useDownvoteComment.d.ts +0 -5
- package/dist/esm/hooks/comments/useDownvoteComment.js +0 -66
- package/dist/esm/hooks/comments/useDownvoteComment.js.map +0 -1
- package/dist/esm/hooks/comments/useProfileComments.d.ts +0 -18
- package/dist/esm/hooks/comments/useProfileComments.js +0 -172
- package/dist/esm/hooks/comments/useProfileComments.js.map +0 -1
- package/dist/esm/hooks/comments/useRemoveCommentDownvote.d.ts +0 -5
- package/dist/esm/hooks/comments/useRemoveCommentDownvote.js +0 -66
- package/dist/esm/hooks/comments/useRemoveCommentDownvote.js.map +0 -1
- package/dist/esm/hooks/comments/useRemoveCommentUpvote.d.ts +0 -5
- package/dist/esm/hooks/comments/useRemoveCommentUpvote.js +0 -66
- package/dist/esm/hooks/comments/useRemoveCommentUpvote.js.map +0 -1
- package/dist/esm/hooks/comments/useUpvoteComment.d.ts +0 -5
- package/dist/esm/hooks/comments/useUpvoteComment.js +0 -66
- package/dist/esm/hooks/comments/useUpvoteComment.js.map +0 -1
- package/dist/esm/hooks/entities/useDownvoteEntity.d.ts +0 -5
- package/dist/esm/hooks/entities/useDownvoteEntity.js +0 -66
- package/dist/esm/hooks/entities/useDownvoteEntity.js.map +0 -1
- package/dist/esm/hooks/entities/useEntityVotes.d.ts +0 -11
- package/dist/esm/hooks/entities/useEntityVotes.js +0 -236
- package/dist/esm/hooks/entities/useEntityVotes.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/entities/useRemoveEntityDownvote.d.ts +0 -5
- package/dist/esm/hooks/entities/useRemoveEntityDownvote.js +0 -66
- package/dist/esm/hooks/entities/useRemoveEntityDownvote.js.map +0 -1
- package/dist/esm/hooks/entities/useRemoveEntityUpvote.d.ts +0 -5
- package/dist/esm/hooks/entities/useRemoveEntityUpvote.js +0 -66
- package/dist/esm/hooks/entities/useRemoveEntityUpvote.js.map +0 -1
- package/dist/esm/hooks/entities/useUpvoteEntity.d.ts +0 -5
- package/dist/esm/hooks/entities/useUpvoteEntity.js +0 -66
- package/dist/esm/hooks/entities/useUpvoteEntity.js.map +0 -1
- package/dist/esm/hooks/lists/index.d.ts +0 -3
- package/dist/esm/hooks/lists/index.js +0 -5
- package/dist/esm/hooks/lists/index.js.map +0 -1
- package/dist/esm/hooks/lists/useIsEntitySaved.d.ts +0 -5
- package/dist/esm/hooks/lists/useIsEntitySaved.js +0 -78
- package/dist/esm/hooks/lists/useIsEntitySaved.js.map +0 -1
- package/dist/esm/hooks/lists/useLists.d.ts +0 -36
- package/dist/esm/hooks/lists/useLists.js +0 -234
- package/dist/esm/hooks/lists/useLists.js.map +0 -1
- package/dist/esm/hooks/lists/useListsActions.d.ts +0 -21
- package/dist/esm/hooks/lists/useListsActions.js +0 -338
- package/dist/esm/hooks/lists/useListsActions.js.map +0 -1
- package/dist/esm/hooks/reports/useFetchSpaceReports.d.ts +0 -39
- package/dist/esm/hooks/reports/useFetchSpaceReports.js +0 -91
- package/dist/esm/hooks/reports/useFetchSpaceReports.js.map +0 -1
- package/dist/esm/hooks/spaces/useFetchMySpaces.d.ts +0 -8
- package/dist/esm/hooks/spaces/useFetchMySpaces.js +0 -80
- package/dist/esm/hooks/spaces/useFetchMySpaces.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/hooks/users/useUpdateUser.d.ts +0 -18
- package/dist/esm/hooks/users/useUpdateUser.js +0 -73
- package/dist/esm/hooks/users/useUpdateUser.js.map +0 -1
- package/dist/esm/interfaces/IPaginatedResponse.js +0 -2
- package/dist/esm/interfaces/IPaginatedResponse.js.map +0 -1
- package/dist/esm/interfaces/models/List.js +0 -2
- package/dist/esm/interfaces/models/List.js.map +0 -1
- package/dist/esm/store/api/listsApi.d.ts +0 -3564
- package/dist/esm/store/api/listsApi.js +0 -285
- package/dist/esm/store/api/listsApi.js.map +0 -1
- package/dist/esm/store/slices/listsSlice.d.ts +0 -1911
- package/dist/esm/store/slices/listsSlice.js +0 -202
- package/dist/esm/store/slices/listsSlice.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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PayloadAction } from "@reduxjs/toolkit";
|
|
2
|
+
import type { ReplykeState } from '../replykeReducers';
|
|
2
3
|
import { Space } from "../../interfaces/models/Space";
|
|
3
4
|
import { SpaceListSortByOptions } from "../../interfaces/SpaceListSortByOptions";
|
|
4
5
|
export interface SpaceListState {
|
|
@@ -10,7 +11,10 @@ export interface SpaceListState {
|
|
|
10
11
|
lastFetched: number | null;
|
|
11
12
|
limit: number;
|
|
12
13
|
sortBy: SpaceListSortByOptions;
|
|
13
|
-
|
|
14
|
+
searchSlug: string | null;
|
|
15
|
+
searchName: string | null;
|
|
16
|
+
searchDescription: string | null;
|
|
17
|
+
searchAny: string | null;
|
|
14
18
|
readingPermission: "anyone" | "members" | null;
|
|
15
19
|
memberOf: boolean;
|
|
16
20
|
parentSpaceId: string | null;
|
|
@@ -22,7 +26,10 @@ export interface SpaceListsState {
|
|
|
22
26
|
}
|
|
23
27
|
export interface SpaceListFilters {
|
|
24
28
|
sortBy?: SpaceListSortByOptions;
|
|
25
|
-
|
|
29
|
+
searchSlug?: string | null;
|
|
30
|
+
searchName?: string | null;
|
|
31
|
+
searchDescription?: string | null;
|
|
32
|
+
searchAny?: string | null;
|
|
26
33
|
readingPermission?: "anyone" | "members" | null;
|
|
27
34
|
memberOf?: boolean;
|
|
28
35
|
parentSpaceId?: string | null;
|
|
@@ -74,11 +81,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
74
81
|
slug: string | null;
|
|
75
82
|
name: string;
|
|
76
83
|
description: string | null;
|
|
77
|
-
|
|
78
|
-
|
|
84
|
+
avatarFileId: string | null;
|
|
85
|
+
bannerFileId: string | null;
|
|
79
86
|
userId: string;
|
|
80
|
-
readingPermission: import("
|
|
81
|
-
postingPermission: import("
|
|
87
|
+
readingPermission: import("../..").ReadingPermission;
|
|
88
|
+
postingPermission: import("../..").PostingPermission;
|
|
82
89
|
requireJoinApproval: boolean;
|
|
83
90
|
parentSpaceId: string | null;
|
|
84
91
|
depth: number;
|
|
@@ -91,6 +98,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
91
98
|
membersCount: number;
|
|
92
99
|
childSpacesCount: number;
|
|
93
100
|
isMember?: boolean | undefined;
|
|
101
|
+
avatarFile?: {
|
|
102
|
+
id: string;
|
|
103
|
+
projectId: string;
|
|
104
|
+
userId: string | null;
|
|
105
|
+
entityId: string | null;
|
|
106
|
+
commentId: string | null;
|
|
107
|
+
chatMessageId: string | null;
|
|
108
|
+
spaceId: string | null;
|
|
109
|
+
type: "image" | "video" | "document" | "other";
|
|
110
|
+
originalPath: string;
|
|
111
|
+
originalSize: number;
|
|
112
|
+
originalMimeType: string;
|
|
113
|
+
position: number;
|
|
114
|
+
metadata: {
|
|
115
|
+
[x: string]: any;
|
|
116
|
+
};
|
|
117
|
+
image?: {
|
|
118
|
+
fileId: string;
|
|
119
|
+
originalWidth: number;
|
|
120
|
+
originalHeight: number;
|
|
121
|
+
variants: {
|
|
122
|
+
[x: string]: {
|
|
123
|
+
path: string;
|
|
124
|
+
publicPath: string;
|
|
125
|
+
width: number;
|
|
126
|
+
height: number;
|
|
127
|
+
size: number;
|
|
128
|
+
format: string;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
processingStatus: "completed" | "failed";
|
|
132
|
+
processingError: string | null;
|
|
133
|
+
format: string;
|
|
134
|
+
quality: number;
|
|
135
|
+
exifStripped: boolean;
|
|
136
|
+
createdAt: Date;
|
|
137
|
+
updatedAt: Date;
|
|
138
|
+
} | undefined;
|
|
139
|
+
createdAt: Date;
|
|
140
|
+
updatedAt: Date;
|
|
141
|
+
} | undefined;
|
|
142
|
+
bannerFile?: {
|
|
143
|
+
id: string;
|
|
144
|
+
projectId: string;
|
|
145
|
+
userId: string | null;
|
|
146
|
+
entityId: string | null;
|
|
147
|
+
commentId: string | null;
|
|
148
|
+
chatMessageId: string | null;
|
|
149
|
+
spaceId: string | null;
|
|
150
|
+
type: "image" | "video" | "document" | "other";
|
|
151
|
+
originalPath: string;
|
|
152
|
+
originalSize: number;
|
|
153
|
+
originalMimeType: string;
|
|
154
|
+
position: number;
|
|
155
|
+
metadata: {
|
|
156
|
+
[x: string]: any;
|
|
157
|
+
};
|
|
158
|
+
image?: {
|
|
159
|
+
fileId: string;
|
|
160
|
+
originalWidth: number;
|
|
161
|
+
originalHeight: number;
|
|
162
|
+
variants: {
|
|
163
|
+
[x: string]: {
|
|
164
|
+
path: string;
|
|
165
|
+
publicPath: string;
|
|
166
|
+
width: number;
|
|
167
|
+
height: number;
|
|
168
|
+
size: number;
|
|
169
|
+
format: string;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
processingStatus: "completed" | "failed";
|
|
173
|
+
processingError: string | null;
|
|
174
|
+
format: string;
|
|
175
|
+
quality: number;
|
|
176
|
+
exifStripped: boolean;
|
|
177
|
+
createdAt: Date;
|
|
178
|
+
updatedAt: Date;
|
|
179
|
+
} | undefined;
|
|
180
|
+
createdAt: Date;
|
|
181
|
+
updatedAt: Date;
|
|
182
|
+
} | undefined;
|
|
94
183
|
}[];
|
|
95
184
|
page: number;
|
|
96
185
|
loading: boolean;
|
|
@@ -99,7 +188,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
99
188
|
lastFetched: number | null;
|
|
100
189
|
limit: number;
|
|
101
190
|
sortBy: SpaceListSortByOptions;
|
|
102
|
-
|
|
191
|
+
searchSlug: string | null;
|
|
192
|
+
searchName: string | null;
|
|
193
|
+
searchDescription: string | null;
|
|
194
|
+
searchAny: string | null;
|
|
103
195
|
readingPermission: "anyone" | "members" | null;
|
|
104
196
|
memberOf: boolean;
|
|
105
197
|
parentSpaceId: string | null;
|
|
@@ -116,11 +208,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
116
208
|
slug: string | null;
|
|
117
209
|
name: string;
|
|
118
210
|
description: string | null;
|
|
119
|
-
|
|
120
|
-
|
|
211
|
+
avatarFileId: string | null;
|
|
212
|
+
bannerFileId: string | null;
|
|
121
213
|
userId: string;
|
|
122
|
-
readingPermission: import("
|
|
123
|
-
postingPermission: import("
|
|
214
|
+
readingPermission: import("../..").ReadingPermission;
|
|
215
|
+
postingPermission: import("../..").PostingPermission;
|
|
124
216
|
requireJoinApproval: boolean;
|
|
125
217
|
parentSpaceId: string | null;
|
|
126
218
|
depth: number;
|
|
@@ -133,6 +225,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
133
225
|
membersCount: number;
|
|
134
226
|
childSpacesCount: number;
|
|
135
227
|
isMember?: boolean | undefined;
|
|
228
|
+
avatarFile?: {
|
|
229
|
+
id: string;
|
|
230
|
+
projectId: string;
|
|
231
|
+
userId: string | null;
|
|
232
|
+
entityId: string | null;
|
|
233
|
+
commentId: string | null;
|
|
234
|
+
chatMessageId: string | null;
|
|
235
|
+
spaceId: string | null;
|
|
236
|
+
type: "image" | "video" | "document" | "other";
|
|
237
|
+
originalPath: string;
|
|
238
|
+
originalSize: number;
|
|
239
|
+
originalMimeType: string;
|
|
240
|
+
position: number;
|
|
241
|
+
metadata: {
|
|
242
|
+
[x: string]: any;
|
|
243
|
+
};
|
|
244
|
+
image?: {
|
|
245
|
+
fileId: string;
|
|
246
|
+
originalWidth: number;
|
|
247
|
+
originalHeight: number;
|
|
248
|
+
variants: {
|
|
249
|
+
[x: string]: {
|
|
250
|
+
path: string;
|
|
251
|
+
publicPath: string;
|
|
252
|
+
width: number;
|
|
253
|
+
height: number;
|
|
254
|
+
size: number;
|
|
255
|
+
format: string;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
processingStatus: "completed" | "failed";
|
|
259
|
+
processingError: string | null;
|
|
260
|
+
format: string;
|
|
261
|
+
quality: number;
|
|
262
|
+
exifStripped: boolean;
|
|
263
|
+
createdAt: Date;
|
|
264
|
+
updatedAt: Date;
|
|
265
|
+
} | undefined;
|
|
266
|
+
createdAt: Date;
|
|
267
|
+
updatedAt: Date;
|
|
268
|
+
} | undefined;
|
|
269
|
+
bannerFile?: {
|
|
270
|
+
id: string;
|
|
271
|
+
projectId: string;
|
|
272
|
+
userId: string | null;
|
|
273
|
+
entityId: string | null;
|
|
274
|
+
commentId: string | null;
|
|
275
|
+
chatMessageId: string | null;
|
|
276
|
+
spaceId: string | null;
|
|
277
|
+
type: "image" | "video" | "document" | "other";
|
|
278
|
+
originalPath: string;
|
|
279
|
+
originalSize: number;
|
|
280
|
+
originalMimeType: string;
|
|
281
|
+
position: number;
|
|
282
|
+
metadata: {
|
|
283
|
+
[x: string]: any;
|
|
284
|
+
};
|
|
285
|
+
image?: {
|
|
286
|
+
fileId: string;
|
|
287
|
+
originalWidth: number;
|
|
288
|
+
originalHeight: number;
|
|
289
|
+
variants: {
|
|
290
|
+
[x: string]: {
|
|
291
|
+
path: string;
|
|
292
|
+
publicPath: string;
|
|
293
|
+
width: number;
|
|
294
|
+
height: number;
|
|
295
|
+
size: number;
|
|
296
|
+
format: string;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
processingStatus: "completed" | "failed";
|
|
300
|
+
processingError: string | null;
|
|
301
|
+
format: string;
|
|
302
|
+
quality: number;
|
|
303
|
+
exifStripped: boolean;
|
|
304
|
+
createdAt: Date;
|
|
305
|
+
updatedAt: Date;
|
|
306
|
+
} | undefined;
|
|
307
|
+
createdAt: Date;
|
|
308
|
+
updatedAt: Date;
|
|
309
|
+
} | undefined;
|
|
136
310
|
}[];
|
|
137
311
|
page: number;
|
|
138
312
|
loading: boolean;
|
|
@@ -141,7 +315,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
141
315
|
lastFetched: number | null;
|
|
142
316
|
limit: number;
|
|
143
317
|
sortBy: SpaceListSortByOptions;
|
|
144
|
-
|
|
318
|
+
searchSlug: string | null;
|
|
319
|
+
searchName: string | null;
|
|
320
|
+
searchDescription: string | null;
|
|
321
|
+
searchAny: string | null;
|
|
145
322
|
readingPermission: "anyone" | "members" | null;
|
|
146
323
|
memberOf: boolean;
|
|
147
324
|
parentSpaceId: string | null;
|
|
@@ -158,11 +335,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
158
335
|
slug: string | null;
|
|
159
336
|
name: string;
|
|
160
337
|
description: string | null;
|
|
161
|
-
|
|
162
|
-
|
|
338
|
+
avatarFileId: string | null;
|
|
339
|
+
bannerFileId: string | null;
|
|
163
340
|
userId: string;
|
|
164
|
-
readingPermission: import("
|
|
165
|
-
postingPermission: import("
|
|
341
|
+
readingPermission: import("../..").ReadingPermission;
|
|
342
|
+
postingPermission: import("../..").PostingPermission;
|
|
166
343
|
requireJoinApproval: boolean;
|
|
167
344
|
parentSpaceId: string | null;
|
|
168
345
|
depth: number;
|
|
@@ -175,6 +352,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
175
352
|
membersCount: number;
|
|
176
353
|
childSpacesCount: number;
|
|
177
354
|
isMember?: boolean | undefined;
|
|
355
|
+
avatarFile?: {
|
|
356
|
+
id: string;
|
|
357
|
+
projectId: string;
|
|
358
|
+
userId: string | null;
|
|
359
|
+
entityId: string | null;
|
|
360
|
+
commentId: string | null;
|
|
361
|
+
chatMessageId: string | null;
|
|
362
|
+
spaceId: string | null;
|
|
363
|
+
type: "image" | "video" | "document" | "other";
|
|
364
|
+
originalPath: string;
|
|
365
|
+
originalSize: number;
|
|
366
|
+
originalMimeType: string;
|
|
367
|
+
position: number;
|
|
368
|
+
metadata: {
|
|
369
|
+
[x: string]: any;
|
|
370
|
+
};
|
|
371
|
+
image?: {
|
|
372
|
+
fileId: string;
|
|
373
|
+
originalWidth: number;
|
|
374
|
+
originalHeight: number;
|
|
375
|
+
variants: {
|
|
376
|
+
[x: string]: {
|
|
377
|
+
path: string;
|
|
378
|
+
publicPath: string;
|
|
379
|
+
width: number;
|
|
380
|
+
height: number;
|
|
381
|
+
size: number;
|
|
382
|
+
format: string;
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
processingStatus: "completed" | "failed";
|
|
386
|
+
processingError: string | null;
|
|
387
|
+
format: string;
|
|
388
|
+
quality: number;
|
|
389
|
+
exifStripped: boolean;
|
|
390
|
+
createdAt: Date;
|
|
391
|
+
updatedAt: Date;
|
|
392
|
+
} | undefined;
|
|
393
|
+
createdAt: Date;
|
|
394
|
+
updatedAt: Date;
|
|
395
|
+
} | undefined;
|
|
396
|
+
bannerFile?: {
|
|
397
|
+
id: string;
|
|
398
|
+
projectId: string;
|
|
399
|
+
userId: string | null;
|
|
400
|
+
entityId: string | null;
|
|
401
|
+
commentId: string | null;
|
|
402
|
+
chatMessageId: string | null;
|
|
403
|
+
spaceId: string | null;
|
|
404
|
+
type: "image" | "video" | "document" | "other";
|
|
405
|
+
originalPath: string;
|
|
406
|
+
originalSize: number;
|
|
407
|
+
originalMimeType: string;
|
|
408
|
+
position: number;
|
|
409
|
+
metadata: {
|
|
410
|
+
[x: string]: any;
|
|
411
|
+
};
|
|
412
|
+
image?: {
|
|
413
|
+
fileId: string;
|
|
414
|
+
originalWidth: number;
|
|
415
|
+
originalHeight: number;
|
|
416
|
+
variants: {
|
|
417
|
+
[x: string]: {
|
|
418
|
+
path: string;
|
|
419
|
+
publicPath: string;
|
|
420
|
+
width: number;
|
|
421
|
+
height: number;
|
|
422
|
+
size: number;
|
|
423
|
+
format: string;
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
processingStatus: "completed" | "failed";
|
|
427
|
+
processingError: string | null;
|
|
428
|
+
format: string;
|
|
429
|
+
quality: number;
|
|
430
|
+
exifStripped: boolean;
|
|
431
|
+
createdAt: Date;
|
|
432
|
+
updatedAt: Date;
|
|
433
|
+
} | undefined;
|
|
434
|
+
createdAt: Date;
|
|
435
|
+
updatedAt: Date;
|
|
436
|
+
} | undefined;
|
|
178
437
|
}[];
|
|
179
438
|
page: number;
|
|
180
439
|
loading: boolean;
|
|
@@ -183,7 +442,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
183
442
|
lastFetched: number | null;
|
|
184
443
|
limit: number;
|
|
185
444
|
sortBy: SpaceListSortByOptions;
|
|
186
|
-
|
|
445
|
+
searchSlug: string | null;
|
|
446
|
+
searchName: string | null;
|
|
447
|
+
searchDescription: string | null;
|
|
448
|
+
searchAny: string | null;
|
|
187
449
|
readingPermission: "anyone" | "members" | null;
|
|
188
450
|
memberOf: boolean;
|
|
189
451
|
parentSpaceId: string | null;
|
|
@@ -203,11 +465,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
203
465
|
slug: string | null;
|
|
204
466
|
name: string;
|
|
205
467
|
description: string | null;
|
|
206
|
-
|
|
207
|
-
|
|
468
|
+
avatarFileId: string | null;
|
|
469
|
+
bannerFileId: string | null;
|
|
208
470
|
userId: string;
|
|
209
|
-
readingPermission: import("
|
|
210
|
-
postingPermission: import("
|
|
471
|
+
readingPermission: import("../..").ReadingPermission;
|
|
472
|
+
postingPermission: import("../..").PostingPermission;
|
|
211
473
|
requireJoinApproval: boolean;
|
|
212
474
|
parentSpaceId: string | null;
|
|
213
475
|
depth: number;
|
|
@@ -220,6 +482,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
220
482
|
membersCount: number;
|
|
221
483
|
childSpacesCount: number;
|
|
222
484
|
isMember?: boolean | undefined;
|
|
485
|
+
avatarFile?: {
|
|
486
|
+
id: string;
|
|
487
|
+
projectId: string;
|
|
488
|
+
userId: string | null;
|
|
489
|
+
entityId: string | null;
|
|
490
|
+
commentId: string | null;
|
|
491
|
+
chatMessageId: string | null;
|
|
492
|
+
spaceId: string | null;
|
|
493
|
+
type: "image" | "video" | "document" | "other";
|
|
494
|
+
originalPath: string;
|
|
495
|
+
originalSize: number;
|
|
496
|
+
originalMimeType: string;
|
|
497
|
+
position: number;
|
|
498
|
+
metadata: {
|
|
499
|
+
[x: string]: any;
|
|
500
|
+
};
|
|
501
|
+
image?: {
|
|
502
|
+
fileId: string;
|
|
503
|
+
originalWidth: number;
|
|
504
|
+
originalHeight: number;
|
|
505
|
+
variants: {
|
|
506
|
+
[x: string]: {
|
|
507
|
+
path: string;
|
|
508
|
+
publicPath: string;
|
|
509
|
+
width: number;
|
|
510
|
+
height: number;
|
|
511
|
+
size: number;
|
|
512
|
+
format: string;
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
processingStatus: "completed" | "failed";
|
|
516
|
+
processingError: string | null;
|
|
517
|
+
format: string;
|
|
518
|
+
quality: number;
|
|
519
|
+
exifStripped: boolean;
|
|
520
|
+
createdAt: Date;
|
|
521
|
+
updatedAt: Date;
|
|
522
|
+
} | undefined;
|
|
523
|
+
createdAt: Date;
|
|
524
|
+
updatedAt: Date;
|
|
525
|
+
} | undefined;
|
|
526
|
+
bannerFile?: {
|
|
527
|
+
id: string;
|
|
528
|
+
projectId: string;
|
|
529
|
+
userId: string | null;
|
|
530
|
+
entityId: string | null;
|
|
531
|
+
commentId: string | null;
|
|
532
|
+
chatMessageId: string | null;
|
|
533
|
+
spaceId: string | null;
|
|
534
|
+
type: "image" | "video" | "document" | "other";
|
|
535
|
+
originalPath: string;
|
|
536
|
+
originalSize: number;
|
|
537
|
+
originalMimeType: string;
|
|
538
|
+
position: number;
|
|
539
|
+
metadata: {
|
|
540
|
+
[x: string]: any;
|
|
541
|
+
};
|
|
542
|
+
image?: {
|
|
543
|
+
fileId: string;
|
|
544
|
+
originalWidth: number;
|
|
545
|
+
originalHeight: number;
|
|
546
|
+
variants: {
|
|
547
|
+
[x: string]: {
|
|
548
|
+
path: string;
|
|
549
|
+
publicPath: string;
|
|
550
|
+
width: number;
|
|
551
|
+
height: number;
|
|
552
|
+
size: number;
|
|
553
|
+
format: string;
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
processingStatus: "completed" | "failed";
|
|
557
|
+
processingError: string | null;
|
|
558
|
+
format: string;
|
|
559
|
+
quality: number;
|
|
560
|
+
exifStripped: boolean;
|
|
561
|
+
createdAt: Date;
|
|
562
|
+
updatedAt: Date;
|
|
563
|
+
} | undefined;
|
|
564
|
+
createdAt: Date;
|
|
565
|
+
updatedAt: Date;
|
|
566
|
+
} | undefined;
|
|
223
567
|
}[];
|
|
224
568
|
page: number;
|
|
225
569
|
loading: boolean;
|
|
@@ -228,7 +572,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
228
572
|
lastFetched: number | null;
|
|
229
573
|
limit: number;
|
|
230
574
|
sortBy: SpaceListSortByOptions;
|
|
231
|
-
|
|
575
|
+
searchSlug: string | null;
|
|
576
|
+
searchName: string | null;
|
|
577
|
+
searchDescription: string | null;
|
|
578
|
+
searchAny: string | null;
|
|
232
579
|
readingPermission: "anyone" | "members" | null;
|
|
233
580
|
memberOf: boolean;
|
|
234
581
|
parentSpaceId: string | null;
|
|
@@ -245,11 +592,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
245
592
|
slug: string | null;
|
|
246
593
|
name: string;
|
|
247
594
|
description: string | null;
|
|
248
|
-
|
|
249
|
-
|
|
595
|
+
avatarFileId: string | null;
|
|
596
|
+
bannerFileId: string | null;
|
|
250
597
|
userId: string;
|
|
251
|
-
readingPermission: import("
|
|
252
|
-
postingPermission: import("
|
|
598
|
+
readingPermission: import("../..").ReadingPermission;
|
|
599
|
+
postingPermission: import("../..").PostingPermission;
|
|
253
600
|
requireJoinApproval: boolean;
|
|
254
601
|
parentSpaceId: string | null;
|
|
255
602
|
depth: number;
|
|
@@ -262,6 +609,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
262
609
|
membersCount: number;
|
|
263
610
|
childSpacesCount: number;
|
|
264
611
|
isMember?: boolean | undefined;
|
|
612
|
+
avatarFile?: {
|
|
613
|
+
id: string;
|
|
614
|
+
projectId: string;
|
|
615
|
+
userId: string | null;
|
|
616
|
+
entityId: string | null;
|
|
617
|
+
commentId: string | null;
|
|
618
|
+
chatMessageId: string | null;
|
|
619
|
+
spaceId: string | null;
|
|
620
|
+
type: "image" | "video" | "document" | "other";
|
|
621
|
+
originalPath: string;
|
|
622
|
+
originalSize: number;
|
|
623
|
+
originalMimeType: string;
|
|
624
|
+
position: number;
|
|
625
|
+
metadata: {
|
|
626
|
+
[x: string]: any;
|
|
627
|
+
};
|
|
628
|
+
image?: {
|
|
629
|
+
fileId: string;
|
|
630
|
+
originalWidth: number;
|
|
631
|
+
originalHeight: number;
|
|
632
|
+
variants: {
|
|
633
|
+
[x: string]: {
|
|
634
|
+
path: string;
|
|
635
|
+
publicPath: string;
|
|
636
|
+
width: number;
|
|
637
|
+
height: number;
|
|
638
|
+
size: number;
|
|
639
|
+
format: string;
|
|
640
|
+
};
|
|
641
|
+
};
|
|
642
|
+
processingStatus: "completed" | "failed";
|
|
643
|
+
processingError: string | null;
|
|
644
|
+
format: string;
|
|
645
|
+
quality: number;
|
|
646
|
+
exifStripped: boolean;
|
|
647
|
+
createdAt: Date;
|
|
648
|
+
updatedAt: Date;
|
|
649
|
+
} | undefined;
|
|
650
|
+
createdAt: Date;
|
|
651
|
+
updatedAt: Date;
|
|
652
|
+
} | undefined;
|
|
653
|
+
bannerFile?: {
|
|
654
|
+
id: string;
|
|
655
|
+
projectId: string;
|
|
656
|
+
userId: string | null;
|
|
657
|
+
entityId: string | null;
|
|
658
|
+
commentId: string | null;
|
|
659
|
+
chatMessageId: string | null;
|
|
660
|
+
spaceId: string | null;
|
|
661
|
+
type: "image" | "video" | "document" | "other";
|
|
662
|
+
originalPath: string;
|
|
663
|
+
originalSize: number;
|
|
664
|
+
originalMimeType: string;
|
|
665
|
+
position: number;
|
|
666
|
+
metadata: {
|
|
667
|
+
[x: string]: any;
|
|
668
|
+
};
|
|
669
|
+
image?: {
|
|
670
|
+
fileId: string;
|
|
671
|
+
originalWidth: number;
|
|
672
|
+
originalHeight: number;
|
|
673
|
+
variants: {
|
|
674
|
+
[x: string]: {
|
|
675
|
+
path: string;
|
|
676
|
+
publicPath: string;
|
|
677
|
+
width: number;
|
|
678
|
+
height: number;
|
|
679
|
+
size: number;
|
|
680
|
+
format: string;
|
|
681
|
+
};
|
|
682
|
+
};
|
|
683
|
+
processingStatus: "completed" | "failed";
|
|
684
|
+
processingError: string | null;
|
|
685
|
+
format: string;
|
|
686
|
+
quality: number;
|
|
687
|
+
exifStripped: boolean;
|
|
688
|
+
createdAt: Date;
|
|
689
|
+
updatedAt: Date;
|
|
690
|
+
} | undefined;
|
|
691
|
+
createdAt: Date;
|
|
692
|
+
updatedAt: Date;
|
|
693
|
+
} | undefined;
|
|
265
694
|
}[];
|
|
266
695
|
page: number;
|
|
267
696
|
loading: boolean;
|
|
@@ -270,7 +699,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
270
699
|
lastFetched: number | null;
|
|
271
700
|
limit: number;
|
|
272
701
|
sortBy: SpaceListSortByOptions;
|
|
273
|
-
|
|
702
|
+
searchSlug: string | null;
|
|
703
|
+
searchName: string | null;
|
|
704
|
+
searchDescription: string | null;
|
|
705
|
+
searchAny: string | null;
|
|
274
706
|
readingPermission: "anyone" | "members" | null;
|
|
275
707
|
memberOf: boolean;
|
|
276
708
|
parentSpaceId: string | null;
|
|
@@ -287,11 +719,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
287
719
|
slug: string | null;
|
|
288
720
|
name: string;
|
|
289
721
|
description: string | null;
|
|
290
|
-
|
|
291
|
-
|
|
722
|
+
avatarFileId: string | null;
|
|
723
|
+
bannerFileId: string | null;
|
|
292
724
|
userId: string;
|
|
293
|
-
readingPermission: import("
|
|
294
|
-
postingPermission: import("
|
|
725
|
+
readingPermission: import("../..").ReadingPermission;
|
|
726
|
+
postingPermission: import("../..").PostingPermission;
|
|
295
727
|
requireJoinApproval: boolean;
|
|
296
728
|
parentSpaceId: string | null;
|
|
297
729
|
depth: number;
|
|
@@ -304,6 +736,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
304
736
|
membersCount: number;
|
|
305
737
|
childSpacesCount: number;
|
|
306
738
|
isMember?: boolean | undefined;
|
|
739
|
+
avatarFile?: {
|
|
740
|
+
id: string;
|
|
741
|
+
projectId: string;
|
|
742
|
+
userId: string | null;
|
|
743
|
+
entityId: string | null;
|
|
744
|
+
commentId: string | null;
|
|
745
|
+
chatMessageId: string | null;
|
|
746
|
+
spaceId: string | null;
|
|
747
|
+
type: "image" | "video" | "document" | "other";
|
|
748
|
+
originalPath: string;
|
|
749
|
+
originalSize: number;
|
|
750
|
+
originalMimeType: string;
|
|
751
|
+
position: number;
|
|
752
|
+
metadata: {
|
|
753
|
+
[x: string]: any;
|
|
754
|
+
};
|
|
755
|
+
image?: {
|
|
756
|
+
fileId: string;
|
|
757
|
+
originalWidth: number;
|
|
758
|
+
originalHeight: number;
|
|
759
|
+
variants: {
|
|
760
|
+
[x: string]: {
|
|
761
|
+
path: string;
|
|
762
|
+
publicPath: string;
|
|
763
|
+
width: number;
|
|
764
|
+
height: number;
|
|
765
|
+
size: number;
|
|
766
|
+
format: string;
|
|
767
|
+
};
|
|
768
|
+
};
|
|
769
|
+
processingStatus: "completed" | "failed";
|
|
770
|
+
processingError: string | null;
|
|
771
|
+
format: string;
|
|
772
|
+
quality: number;
|
|
773
|
+
exifStripped: boolean;
|
|
774
|
+
createdAt: Date;
|
|
775
|
+
updatedAt: Date;
|
|
776
|
+
} | undefined;
|
|
777
|
+
createdAt: Date;
|
|
778
|
+
updatedAt: Date;
|
|
779
|
+
} | undefined;
|
|
780
|
+
bannerFile?: {
|
|
781
|
+
id: string;
|
|
782
|
+
projectId: string;
|
|
783
|
+
userId: string | null;
|
|
784
|
+
entityId: string | null;
|
|
785
|
+
commentId: string | null;
|
|
786
|
+
chatMessageId: string | null;
|
|
787
|
+
spaceId: string | null;
|
|
788
|
+
type: "image" | "video" | "document" | "other";
|
|
789
|
+
originalPath: string;
|
|
790
|
+
originalSize: number;
|
|
791
|
+
originalMimeType: string;
|
|
792
|
+
position: number;
|
|
793
|
+
metadata: {
|
|
794
|
+
[x: string]: any;
|
|
795
|
+
};
|
|
796
|
+
image?: {
|
|
797
|
+
fileId: string;
|
|
798
|
+
originalWidth: number;
|
|
799
|
+
originalHeight: number;
|
|
800
|
+
variants: {
|
|
801
|
+
[x: string]: {
|
|
802
|
+
path: string;
|
|
803
|
+
publicPath: string;
|
|
804
|
+
width: number;
|
|
805
|
+
height: number;
|
|
806
|
+
size: number;
|
|
807
|
+
format: string;
|
|
808
|
+
};
|
|
809
|
+
};
|
|
810
|
+
processingStatus: "completed" | "failed";
|
|
811
|
+
processingError: string | null;
|
|
812
|
+
format: string;
|
|
813
|
+
quality: number;
|
|
814
|
+
exifStripped: boolean;
|
|
815
|
+
createdAt: Date;
|
|
816
|
+
updatedAt: Date;
|
|
817
|
+
} | undefined;
|
|
818
|
+
createdAt: Date;
|
|
819
|
+
updatedAt: Date;
|
|
820
|
+
} | undefined;
|
|
307
821
|
}[];
|
|
308
822
|
page: number;
|
|
309
823
|
loading: boolean;
|
|
@@ -312,7 +826,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
312
826
|
lastFetched: number | null;
|
|
313
827
|
limit: number;
|
|
314
828
|
sortBy: SpaceListSortByOptions;
|
|
315
|
-
|
|
829
|
+
searchSlug: string | null;
|
|
830
|
+
searchName: string | null;
|
|
831
|
+
searchDescription: string | null;
|
|
832
|
+
searchAny: string | null;
|
|
316
833
|
readingPermission: "anyone" | "members" | null;
|
|
317
834
|
memberOf: boolean;
|
|
318
835
|
parentSpaceId: string | null;
|
|
@@ -332,11 +849,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
332
849
|
slug: string | null;
|
|
333
850
|
name: string;
|
|
334
851
|
description: string | null;
|
|
335
|
-
|
|
336
|
-
|
|
852
|
+
avatarFileId: string | null;
|
|
853
|
+
bannerFileId: string | null;
|
|
337
854
|
userId: string;
|
|
338
|
-
readingPermission: import("
|
|
339
|
-
postingPermission: import("
|
|
855
|
+
readingPermission: import("../..").ReadingPermission;
|
|
856
|
+
postingPermission: import("../..").PostingPermission;
|
|
340
857
|
requireJoinApproval: boolean;
|
|
341
858
|
parentSpaceId: string | null;
|
|
342
859
|
depth: number;
|
|
@@ -349,6 +866,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
349
866
|
membersCount: number;
|
|
350
867
|
childSpacesCount: number;
|
|
351
868
|
isMember?: boolean | undefined;
|
|
869
|
+
avatarFile?: {
|
|
870
|
+
id: string;
|
|
871
|
+
projectId: string;
|
|
872
|
+
userId: string | null;
|
|
873
|
+
entityId: string | null;
|
|
874
|
+
commentId: string | null;
|
|
875
|
+
chatMessageId: string | null;
|
|
876
|
+
spaceId: string | null;
|
|
877
|
+
type: "image" | "video" | "document" | "other";
|
|
878
|
+
originalPath: string;
|
|
879
|
+
originalSize: number;
|
|
880
|
+
originalMimeType: string;
|
|
881
|
+
position: number;
|
|
882
|
+
metadata: {
|
|
883
|
+
[x: string]: any;
|
|
884
|
+
};
|
|
885
|
+
image?: {
|
|
886
|
+
fileId: string;
|
|
887
|
+
originalWidth: number;
|
|
888
|
+
originalHeight: number;
|
|
889
|
+
variants: {
|
|
890
|
+
[x: string]: {
|
|
891
|
+
path: string;
|
|
892
|
+
publicPath: string;
|
|
893
|
+
width: number;
|
|
894
|
+
height: number;
|
|
895
|
+
size: number;
|
|
896
|
+
format: string;
|
|
897
|
+
};
|
|
898
|
+
};
|
|
899
|
+
processingStatus: "completed" | "failed";
|
|
900
|
+
processingError: string | null;
|
|
901
|
+
format: string;
|
|
902
|
+
quality: number;
|
|
903
|
+
exifStripped: boolean;
|
|
904
|
+
createdAt: Date;
|
|
905
|
+
updatedAt: Date;
|
|
906
|
+
} | undefined;
|
|
907
|
+
createdAt: Date;
|
|
908
|
+
updatedAt: Date;
|
|
909
|
+
} | undefined;
|
|
910
|
+
bannerFile?: {
|
|
911
|
+
id: string;
|
|
912
|
+
projectId: string;
|
|
913
|
+
userId: string | null;
|
|
914
|
+
entityId: string | null;
|
|
915
|
+
commentId: string | null;
|
|
916
|
+
chatMessageId: string | null;
|
|
917
|
+
spaceId: string | null;
|
|
918
|
+
type: "image" | "video" | "document" | "other";
|
|
919
|
+
originalPath: string;
|
|
920
|
+
originalSize: number;
|
|
921
|
+
originalMimeType: string;
|
|
922
|
+
position: number;
|
|
923
|
+
metadata: {
|
|
924
|
+
[x: string]: any;
|
|
925
|
+
};
|
|
926
|
+
image?: {
|
|
927
|
+
fileId: string;
|
|
928
|
+
originalWidth: number;
|
|
929
|
+
originalHeight: number;
|
|
930
|
+
variants: {
|
|
931
|
+
[x: string]: {
|
|
932
|
+
path: string;
|
|
933
|
+
publicPath: string;
|
|
934
|
+
width: number;
|
|
935
|
+
height: number;
|
|
936
|
+
size: number;
|
|
937
|
+
format: string;
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
processingStatus: "completed" | "failed";
|
|
941
|
+
processingError: string | null;
|
|
942
|
+
format: string;
|
|
943
|
+
quality: number;
|
|
944
|
+
exifStripped: boolean;
|
|
945
|
+
createdAt: Date;
|
|
946
|
+
updatedAt: Date;
|
|
947
|
+
} | undefined;
|
|
948
|
+
createdAt: Date;
|
|
949
|
+
updatedAt: Date;
|
|
950
|
+
} | undefined;
|
|
352
951
|
}[];
|
|
353
952
|
page: number;
|
|
354
953
|
loading: boolean;
|
|
@@ -357,7 +956,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
357
956
|
lastFetched: number | null;
|
|
358
957
|
limit: number;
|
|
359
958
|
sortBy: SpaceListSortByOptions;
|
|
360
|
-
|
|
959
|
+
searchSlug: string | null;
|
|
960
|
+
searchName: string | null;
|
|
961
|
+
searchDescription: string | null;
|
|
962
|
+
searchAny: string | null;
|
|
361
963
|
readingPermission: "anyone" | "members" | null;
|
|
362
964
|
memberOf: boolean;
|
|
363
965
|
parentSpaceId: string | null;
|
|
@@ -377,11 +979,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
377
979
|
slug: string | null;
|
|
378
980
|
name: string;
|
|
379
981
|
description: string | null;
|
|
380
|
-
|
|
381
|
-
|
|
982
|
+
avatarFileId: string | null;
|
|
983
|
+
bannerFileId: string | null;
|
|
382
984
|
userId: string;
|
|
383
|
-
readingPermission: import("
|
|
384
|
-
postingPermission: import("
|
|
985
|
+
readingPermission: import("../..").ReadingPermission;
|
|
986
|
+
postingPermission: import("../..").PostingPermission;
|
|
385
987
|
requireJoinApproval: boolean;
|
|
386
988
|
parentSpaceId: string | null;
|
|
387
989
|
depth: number;
|
|
@@ -394,6 +996,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
394
996
|
membersCount: number;
|
|
395
997
|
childSpacesCount: number;
|
|
396
998
|
isMember?: boolean | undefined;
|
|
999
|
+
avatarFile?: {
|
|
1000
|
+
id: string;
|
|
1001
|
+
projectId: string;
|
|
1002
|
+
userId: string | null;
|
|
1003
|
+
entityId: string | null;
|
|
1004
|
+
commentId: string | null;
|
|
1005
|
+
chatMessageId: string | null;
|
|
1006
|
+
spaceId: string | null;
|
|
1007
|
+
type: "image" | "video" | "document" | "other";
|
|
1008
|
+
originalPath: string;
|
|
1009
|
+
originalSize: number;
|
|
1010
|
+
originalMimeType: string;
|
|
1011
|
+
position: number;
|
|
1012
|
+
metadata: {
|
|
1013
|
+
[x: string]: any;
|
|
1014
|
+
};
|
|
1015
|
+
image?: {
|
|
1016
|
+
fileId: string;
|
|
1017
|
+
originalWidth: number;
|
|
1018
|
+
originalHeight: number;
|
|
1019
|
+
variants: {
|
|
1020
|
+
[x: string]: {
|
|
1021
|
+
path: string;
|
|
1022
|
+
publicPath: string;
|
|
1023
|
+
width: number;
|
|
1024
|
+
height: number;
|
|
1025
|
+
size: number;
|
|
1026
|
+
format: string;
|
|
1027
|
+
};
|
|
1028
|
+
};
|
|
1029
|
+
processingStatus: "completed" | "failed";
|
|
1030
|
+
processingError: string | null;
|
|
1031
|
+
format: string;
|
|
1032
|
+
quality: number;
|
|
1033
|
+
exifStripped: boolean;
|
|
1034
|
+
createdAt: Date;
|
|
1035
|
+
updatedAt: Date;
|
|
1036
|
+
} | undefined;
|
|
1037
|
+
createdAt: Date;
|
|
1038
|
+
updatedAt: Date;
|
|
1039
|
+
} | undefined;
|
|
1040
|
+
bannerFile?: {
|
|
1041
|
+
id: string;
|
|
1042
|
+
projectId: string;
|
|
1043
|
+
userId: string | null;
|
|
1044
|
+
entityId: string | null;
|
|
1045
|
+
commentId: string | null;
|
|
1046
|
+
chatMessageId: string | null;
|
|
1047
|
+
spaceId: string | null;
|
|
1048
|
+
type: "image" | "video" | "document" | "other";
|
|
1049
|
+
originalPath: string;
|
|
1050
|
+
originalSize: number;
|
|
1051
|
+
originalMimeType: string;
|
|
1052
|
+
position: number;
|
|
1053
|
+
metadata: {
|
|
1054
|
+
[x: string]: any;
|
|
1055
|
+
};
|
|
1056
|
+
image?: {
|
|
1057
|
+
fileId: string;
|
|
1058
|
+
originalWidth: number;
|
|
1059
|
+
originalHeight: number;
|
|
1060
|
+
variants: {
|
|
1061
|
+
[x: string]: {
|
|
1062
|
+
path: string;
|
|
1063
|
+
publicPath: string;
|
|
1064
|
+
width: number;
|
|
1065
|
+
height: number;
|
|
1066
|
+
size: number;
|
|
1067
|
+
format: string;
|
|
1068
|
+
};
|
|
1069
|
+
};
|
|
1070
|
+
processingStatus: "completed" | "failed";
|
|
1071
|
+
processingError: string | null;
|
|
1072
|
+
format: string;
|
|
1073
|
+
quality: number;
|
|
1074
|
+
exifStripped: boolean;
|
|
1075
|
+
createdAt: Date;
|
|
1076
|
+
updatedAt: Date;
|
|
1077
|
+
} | undefined;
|
|
1078
|
+
createdAt: Date;
|
|
1079
|
+
updatedAt: Date;
|
|
1080
|
+
} | undefined;
|
|
397
1081
|
}[];
|
|
398
1082
|
page: number;
|
|
399
1083
|
loading: boolean;
|
|
@@ -402,7 +1086,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
402
1086
|
lastFetched: number | null;
|
|
403
1087
|
limit: number;
|
|
404
1088
|
sortBy: SpaceListSortByOptions;
|
|
405
|
-
|
|
1089
|
+
searchSlug: string | null;
|
|
1090
|
+
searchName: string | null;
|
|
1091
|
+
searchDescription: string | null;
|
|
1092
|
+
searchAny: string | null;
|
|
406
1093
|
readingPermission: "anyone" | "members" | null;
|
|
407
1094
|
memberOf: boolean;
|
|
408
1095
|
parentSpaceId: string | null;
|
|
@@ -419,11 +1106,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
419
1106
|
slug: string | null;
|
|
420
1107
|
name: string;
|
|
421
1108
|
description: string | null;
|
|
422
|
-
|
|
423
|
-
|
|
1109
|
+
avatarFileId: string | null;
|
|
1110
|
+
bannerFileId: string | null;
|
|
424
1111
|
userId: string;
|
|
425
|
-
readingPermission: import("
|
|
426
|
-
postingPermission: import("
|
|
1112
|
+
readingPermission: import("../..").ReadingPermission;
|
|
1113
|
+
postingPermission: import("../..").PostingPermission;
|
|
427
1114
|
requireJoinApproval: boolean;
|
|
428
1115
|
parentSpaceId: string | null;
|
|
429
1116
|
depth: number;
|
|
@@ -436,6 +1123,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
436
1123
|
membersCount: number;
|
|
437
1124
|
childSpacesCount: number;
|
|
438
1125
|
isMember?: boolean | undefined;
|
|
1126
|
+
avatarFile?: {
|
|
1127
|
+
id: string;
|
|
1128
|
+
projectId: string;
|
|
1129
|
+
userId: string | null;
|
|
1130
|
+
entityId: string | null;
|
|
1131
|
+
commentId: string | null;
|
|
1132
|
+
chatMessageId: string | null;
|
|
1133
|
+
spaceId: string | null;
|
|
1134
|
+
type: "image" | "video" | "document" | "other";
|
|
1135
|
+
originalPath: string;
|
|
1136
|
+
originalSize: number;
|
|
1137
|
+
originalMimeType: string;
|
|
1138
|
+
position: number;
|
|
1139
|
+
metadata: {
|
|
1140
|
+
[x: string]: any;
|
|
1141
|
+
};
|
|
1142
|
+
image?: {
|
|
1143
|
+
fileId: string;
|
|
1144
|
+
originalWidth: number;
|
|
1145
|
+
originalHeight: number;
|
|
1146
|
+
variants: {
|
|
1147
|
+
[x: string]: {
|
|
1148
|
+
path: string;
|
|
1149
|
+
publicPath: string;
|
|
1150
|
+
width: number;
|
|
1151
|
+
height: number;
|
|
1152
|
+
size: number;
|
|
1153
|
+
format: string;
|
|
1154
|
+
};
|
|
1155
|
+
};
|
|
1156
|
+
processingStatus: "completed" | "failed";
|
|
1157
|
+
processingError: string | null;
|
|
1158
|
+
format: string;
|
|
1159
|
+
quality: number;
|
|
1160
|
+
exifStripped: boolean;
|
|
1161
|
+
createdAt: Date;
|
|
1162
|
+
updatedAt: Date;
|
|
1163
|
+
} | undefined;
|
|
1164
|
+
createdAt: Date;
|
|
1165
|
+
updatedAt: Date;
|
|
1166
|
+
} | undefined;
|
|
1167
|
+
bannerFile?: {
|
|
1168
|
+
id: string;
|
|
1169
|
+
projectId: string;
|
|
1170
|
+
userId: string | null;
|
|
1171
|
+
entityId: string | null;
|
|
1172
|
+
commentId: string | null;
|
|
1173
|
+
chatMessageId: string | null;
|
|
1174
|
+
spaceId: string | null;
|
|
1175
|
+
type: "image" | "video" | "document" | "other";
|
|
1176
|
+
originalPath: string;
|
|
1177
|
+
originalSize: number;
|
|
1178
|
+
originalMimeType: string;
|
|
1179
|
+
position: number;
|
|
1180
|
+
metadata: {
|
|
1181
|
+
[x: string]: any;
|
|
1182
|
+
};
|
|
1183
|
+
image?: {
|
|
1184
|
+
fileId: string;
|
|
1185
|
+
originalWidth: number;
|
|
1186
|
+
originalHeight: number;
|
|
1187
|
+
variants: {
|
|
1188
|
+
[x: string]: {
|
|
1189
|
+
path: string;
|
|
1190
|
+
publicPath: string;
|
|
1191
|
+
width: number;
|
|
1192
|
+
height: number;
|
|
1193
|
+
size: number;
|
|
1194
|
+
format: string;
|
|
1195
|
+
};
|
|
1196
|
+
};
|
|
1197
|
+
processingStatus: "completed" | "failed";
|
|
1198
|
+
processingError: string | null;
|
|
1199
|
+
format: string;
|
|
1200
|
+
quality: number;
|
|
1201
|
+
exifStripped: boolean;
|
|
1202
|
+
createdAt: Date;
|
|
1203
|
+
updatedAt: Date;
|
|
1204
|
+
} | undefined;
|
|
1205
|
+
createdAt: Date;
|
|
1206
|
+
updatedAt: Date;
|
|
1207
|
+
} | undefined;
|
|
439
1208
|
}[];
|
|
440
1209
|
page: number;
|
|
441
1210
|
loading: boolean;
|
|
@@ -444,7 +1213,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
444
1213
|
lastFetched: number | null;
|
|
445
1214
|
limit: number;
|
|
446
1215
|
sortBy: SpaceListSortByOptions;
|
|
447
|
-
|
|
1216
|
+
searchSlug: string | null;
|
|
1217
|
+
searchName: string | null;
|
|
1218
|
+
searchDescription: string | null;
|
|
1219
|
+
searchAny: string | null;
|
|
448
1220
|
readingPermission: "anyone" | "members" | null;
|
|
449
1221
|
memberOf: boolean;
|
|
450
1222
|
parentSpaceId: string | null;
|
|
@@ -461,11 +1233,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
461
1233
|
slug: string | null;
|
|
462
1234
|
name: string;
|
|
463
1235
|
description: string | null;
|
|
464
|
-
|
|
465
|
-
|
|
1236
|
+
avatarFileId: string | null;
|
|
1237
|
+
bannerFileId: string | null;
|
|
466
1238
|
userId: string;
|
|
467
|
-
readingPermission: import("
|
|
468
|
-
postingPermission: import("
|
|
1239
|
+
readingPermission: import("../..").ReadingPermission;
|
|
1240
|
+
postingPermission: import("../..").PostingPermission;
|
|
469
1241
|
requireJoinApproval: boolean;
|
|
470
1242
|
parentSpaceId: string | null;
|
|
471
1243
|
depth: number;
|
|
@@ -478,6 +1250,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
478
1250
|
membersCount: number;
|
|
479
1251
|
childSpacesCount: number;
|
|
480
1252
|
isMember?: boolean | undefined;
|
|
1253
|
+
avatarFile?: {
|
|
1254
|
+
id: string;
|
|
1255
|
+
projectId: string;
|
|
1256
|
+
userId: string | null;
|
|
1257
|
+
entityId: string | null;
|
|
1258
|
+
commentId: string | null;
|
|
1259
|
+
chatMessageId: string | null;
|
|
1260
|
+
spaceId: string | null;
|
|
1261
|
+
type: "image" | "video" | "document" | "other";
|
|
1262
|
+
originalPath: string;
|
|
1263
|
+
originalSize: number;
|
|
1264
|
+
originalMimeType: string;
|
|
1265
|
+
position: number;
|
|
1266
|
+
metadata: {
|
|
1267
|
+
[x: string]: any;
|
|
1268
|
+
};
|
|
1269
|
+
image?: {
|
|
1270
|
+
fileId: string;
|
|
1271
|
+
originalWidth: number;
|
|
1272
|
+
originalHeight: number;
|
|
1273
|
+
variants: {
|
|
1274
|
+
[x: string]: {
|
|
1275
|
+
path: string;
|
|
1276
|
+
publicPath: string;
|
|
1277
|
+
width: number;
|
|
1278
|
+
height: number;
|
|
1279
|
+
size: number;
|
|
1280
|
+
format: string;
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
processingStatus: "completed" | "failed";
|
|
1284
|
+
processingError: string | null;
|
|
1285
|
+
format: string;
|
|
1286
|
+
quality: number;
|
|
1287
|
+
exifStripped: boolean;
|
|
1288
|
+
createdAt: Date;
|
|
1289
|
+
updatedAt: Date;
|
|
1290
|
+
} | undefined;
|
|
1291
|
+
createdAt: Date;
|
|
1292
|
+
updatedAt: Date;
|
|
1293
|
+
} | undefined;
|
|
1294
|
+
bannerFile?: {
|
|
1295
|
+
id: string;
|
|
1296
|
+
projectId: string;
|
|
1297
|
+
userId: string | null;
|
|
1298
|
+
entityId: string | null;
|
|
1299
|
+
commentId: string | null;
|
|
1300
|
+
chatMessageId: string | null;
|
|
1301
|
+
spaceId: string | null;
|
|
1302
|
+
type: "image" | "video" | "document" | "other";
|
|
1303
|
+
originalPath: string;
|
|
1304
|
+
originalSize: number;
|
|
1305
|
+
originalMimeType: string;
|
|
1306
|
+
position: number;
|
|
1307
|
+
metadata: {
|
|
1308
|
+
[x: string]: any;
|
|
1309
|
+
};
|
|
1310
|
+
image?: {
|
|
1311
|
+
fileId: string;
|
|
1312
|
+
originalWidth: number;
|
|
1313
|
+
originalHeight: number;
|
|
1314
|
+
variants: {
|
|
1315
|
+
[x: string]: {
|
|
1316
|
+
path: string;
|
|
1317
|
+
publicPath: string;
|
|
1318
|
+
width: number;
|
|
1319
|
+
height: number;
|
|
1320
|
+
size: number;
|
|
1321
|
+
format: string;
|
|
1322
|
+
};
|
|
1323
|
+
};
|
|
1324
|
+
processingStatus: "completed" | "failed";
|
|
1325
|
+
processingError: string | null;
|
|
1326
|
+
format: string;
|
|
1327
|
+
quality: number;
|
|
1328
|
+
exifStripped: boolean;
|
|
1329
|
+
createdAt: Date;
|
|
1330
|
+
updatedAt: Date;
|
|
1331
|
+
} | undefined;
|
|
1332
|
+
createdAt: Date;
|
|
1333
|
+
updatedAt: Date;
|
|
1334
|
+
} | undefined;
|
|
481
1335
|
}[];
|
|
482
1336
|
page: number;
|
|
483
1337
|
loading: boolean;
|
|
@@ -486,7 +1340,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
486
1340
|
lastFetched: number | null;
|
|
487
1341
|
limit: number;
|
|
488
1342
|
sortBy: SpaceListSortByOptions;
|
|
489
|
-
|
|
1343
|
+
searchSlug: string | null;
|
|
1344
|
+
searchName: string | null;
|
|
1345
|
+
searchDescription: string | null;
|
|
1346
|
+
searchAny: string | null;
|
|
490
1347
|
readingPermission: "anyone" | "members" | null;
|
|
491
1348
|
memberOf: boolean;
|
|
492
1349
|
parentSpaceId: string | null;
|
|
@@ -503,11 +1360,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
503
1360
|
slug: string | null;
|
|
504
1361
|
name: string;
|
|
505
1362
|
description: string | null;
|
|
506
|
-
|
|
507
|
-
|
|
1363
|
+
avatarFileId: string | null;
|
|
1364
|
+
bannerFileId: string | null;
|
|
508
1365
|
userId: string;
|
|
509
|
-
readingPermission: import("
|
|
510
|
-
postingPermission: import("
|
|
1366
|
+
readingPermission: import("../..").ReadingPermission;
|
|
1367
|
+
postingPermission: import("../..").PostingPermission;
|
|
511
1368
|
requireJoinApproval: boolean;
|
|
512
1369
|
parentSpaceId: string | null;
|
|
513
1370
|
depth: number;
|
|
@@ -520,6 +1377,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
520
1377
|
membersCount: number;
|
|
521
1378
|
childSpacesCount: number;
|
|
522
1379
|
isMember?: boolean | undefined;
|
|
1380
|
+
avatarFile?: {
|
|
1381
|
+
id: string;
|
|
1382
|
+
projectId: string;
|
|
1383
|
+
userId: string | null;
|
|
1384
|
+
entityId: string | null;
|
|
1385
|
+
commentId: string | null;
|
|
1386
|
+
chatMessageId: string | null;
|
|
1387
|
+
spaceId: string | null;
|
|
1388
|
+
type: "image" | "video" | "document" | "other";
|
|
1389
|
+
originalPath: string;
|
|
1390
|
+
originalSize: number;
|
|
1391
|
+
originalMimeType: string;
|
|
1392
|
+
position: number;
|
|
1393
|
+
metadata: {
|
|
1394
|
+
[x: string]: any;
|
|
1395
|
+
};
|
|
1396
|
+
image?: {
|
|
1397
|
+
fileId: string;
|
|
1398
|
+
originalWidth: number;
|
|
1399
|
+
originalHeight: number;
|
|
1400
|
+
variants: {
|
|
1401
|
+
[x: string]: {
|
|
1402
|
+
path: string;
|
|
1403
|
+
publicPath: string;
|
|
1404
|
+
width: number;
|
|
1405
|
+
height: number;
|
|
1406
|
+
size: number;
|
|
1407
|
+
format: string;
|
|
1408
|
+
};
|
|
1409
|
+
};
|
|
1410
|
+
processingStatus: "completed" | "failed";
|
|
1411
|
+
processingError: string | null;
|
|
1412
|
+
format: string;
|
|
1413
|
+
quality: number;
|
|
1414
|
+
exifStripped: boolean;
|
|
1415
|
+
createdAt: Date;
|
|
1416
|
+
updatedAt: Date;
|
|
1417
|
+
} | undefined;
|
|
1418
|
+
createdAt: Date;
|
|
1419
|
+
updatedAt: Date;
|
|
1420
|
+
} | undefined;
|
|
1421
|
+
bannerFile?: {
|
|
1422
|
+
id: string;
|
|
1423
|
+
projectId: string;
|
|
1424
|
+
userId: string | null;
|
|
1425
|
+
entityId: string | null;
|
|
1426
|
+
commentId: string | null;
|
|
1427
|
+
chatMessageId: string | null;
|
|
1428
|
+
spaceId: string | null;
|
|
1429
|
+
type: "image" | "video" | "document" | "other";
|
|
1430
|
+
originalPath: string;
|
|
1431
|
+
originalSize: number;
|
|
1432
|
+
originalMimeType: string;
|
|
1433
|
+
position: number;
|
|
1434
|
+
metadata: {
|
|
1435
|
+
[x: string]: any;
|
|
1436
|
+
};
|
|
1437
|
+
image?: {
|
|
1438
|
+
fileId: string;
|
|
1439
|
+
originalWidth: number;
|
|
1440
|
+
originalHeight: number;
|
|
1441
|
+
variants: {
|
|
1442
|
+
[x: string]: {
|
|
1443
|
+
path: string;
|
|
1444
|
+
publicPath: string;
|
|
1445
|
+
width: number;
|
|
1446
|
+
height: number;
|
|
1447
|
+
size: number;
|
|
1448
|
+
format: string;
|
|
1449
|
+
};
|
|
1450
|
+
};
|
|
1451
|
+
processingStatus: "completed" | "failed";
|
|
1452
|
+
processingError: string | null;
|
|
1453
|
+
format: string;
|
|
1454
|
+
quality: number;
|
|
1455
|
+
exifStripped: boolean;
|
|
1456
|
+
createdAt: Date;
|
|
1457
|
+
updatedAt: Date;
|
|
1458
|
+
} | undefined;
|
|
1459
|
+
createdAt: Date;
|
|
1460
|
+
updatedAt: Date;
|
|
1461
|
+
} | undefined;
|
|
523
1462
|
}[];
|
|
524
1463
|
page: number;
|
|
525
1464
|
loading: boolean;
|
|
@@ -528,7 +1467,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
528
1467
|
lastFetched: number | null;
|
|
529
1468
|
limit: number;
|
|
530
1469
|
sortBy: SpaceListSortByOptions;
|
|
531
|
-
|
|
1470
|
+
searchSlug: string | null;
|
|
1471
|
+
searchName: string | null;
|
|
1472
|
+
searchDescription: string | null;
|
|
1473
|
+
searchAny: string | null;
|
|
532
1474
|
readingPermission: "anyone" | "members" | null;
|
|
533
1475
|
memberOf: boolean;
|
|
534
1476
|
parentSpaceId: string | null;
|
|
@@ -545,11 +1487,11 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
545
1487
|
slug: string | null;
|
|
546
1488
|
name: string;
|
|
547
1489
|
description: string | null;
|
|
548
|
-
|
|
549
|
-
|
|
1490
|
+
avatarFileId: string | null;
|
|
1491
|
+
bannerFileId: string | null;
|
|
550
1492
|
userId: string;
|
|
551
|
-
readingPermission: import("
|
|
552
|
-
postingPermission: import("
|
|
1493
|
+
readingPermission: import("../..").ReadingPermission;
|
|
1494
|
+
postingPermission: import("../..").PostingPermission;
|
|
553
1495
|
requireJoinApproval: boolean;
|
|
554
1496
|
parentSpaceId: string | null;
|
|
555
1497
|
depth: number;
|
|
@@ -562,6 +1504,88 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
562
1504
|
membersCount: number;
|
|
563
1505
|
childSpacesCount: number;
|
|
564
1506
|
isMember?: boolean | undefined;
|
|
1507
|
+
avatarFile?: {
|
|
1508
|
+
id: string;
|
|
1509
|
+
projectId: string;
|
|
1510
|
+
userId: string | null;
|
|
1511
|
+
entityId: string | null;
|
|
1512
|
+
commentId: string | null;
|
|
1513
|
+
chatMessageId: string | null;
|
|
1514
|
+
spaceId: string | null;
|
|
1515
|
+
type: "image" | "video" | "document" | "other";
|
|
1516
|
+
originalPath: string;
|
|
1517
|
+
originalSize: number;
|
|
1518
|
+
originalMimeType: string;
|
|
1519
|
+
position: number;
|
|
1520
|
+
metadata: {
|
|
1521
|
+
[x: string]: any;
|
|
1522
|
+
};
|
|
1523
|
+
image?: {
|
|
1524
|
+
fileId: string;
|
|
1525
|
+
originalWidth: number;
|
|
1526
|
+
originalHeight: number;
|
|
1527
|
+
variants: {
|
|
1528
|
+
[x: string]: {
|
|
1529
|
+
path: string;
|
|
1530
|
+
publicPath: string;
|
|
1531
|
+
width: number;
|
|
1532
|
+
height: number;
|
|
1533
|
+
size: number;
|
|
1534
|
+
format: string;
|
|
1535
|
+
};
|
|
1536
|
+
};
|
|
1537
|
+
processingStatus: "completed" | "failed";
|
|
1538
|
+
processingError: string | null;
|
|
1539
|
+
format: string;
|
|
1540
|
+
quality: number;
|
|
1541
|
+
exifStripped: boolean;
|
|
1542
|
+
createdAt: Date;
|
|
1543
|
+
updatedAt: Date;
|
|
1544
|
+
} | undefined;
|
|
1545
|
+
createdAt: Date;
|
|
1546
|
+
updatedAt: Date;
|
|
1547
|
+
} | undefined;
|
|
1548
|
+
bannerFile?: {
|
|
1549
|
+
id: string;
|
|
1550
|
+
projectId: string;
|
|
1551
|
+
userId: string | null;
|
|
1552
|
+
entityId: string | null;
|
|
1553
|
+
commentId: string | null;
|
|
1554
|
+
chatMessageId: string | null;
|
|
1555
|
+
spaceId: string | null;
|
|
1556
|
+
type: "image" | "video" | "document" | "other";
|
|
1557
|
+
originalPath: string;
|
|
1558
|
+
originalSize: number;
|
|
1559
|
+
originalMimeType: string;
|
|
1560
|
+
position: number;
|
|
1561
|
+
metadata: {
|
|
1562
|
+
[x: string]: any;
|
|
1563
|
+
};
|
|
1564
|
+
image?: {
|
|
1565
|
+
fileId: string;
|
|
1566
|
+
originalWidth: number;
|
|
1567
|
+
originalHeight: number;
|
|
1568
|
+
variants: {
|
|
1569
|
+
[x: string]: {
|
|
1570
|
+
path: string;
|
|
1571
|
+
publicPath: string;
|
|
1572
|
+
width: number;
|
|
1573
|
+
height: number;
|
|
1574
|
+
size: number;
|
|
1575
|
+
format: string;
|
|
1576
|
+
};
|
|
1577
|
+
};
|
|
1578
|
+
processingStatus: "completed" | "failed";
|
|
1579
|
+
processingError: string | null;
|
|
1580
|
+
format: string;
|
|
1581
|
+
quality: number;
|
|
1582
|
+
exifStripped: boolean;
|
|
1583
|
+
createdAt: Date;
|
|
1584
|
+
updatedAt: Date;
|
|
1585
|
+
} | undefined;
|
|
1586
|
+
createdAt: Date;
|
|
1587
|
+
updatedAt: Date;
|
|
1588
|
+
} | undefined;
|
|
565
1589
|
}[];
|
|
566
1590
|
page: number;
|
|
567
1591
|
loading: boolean;
|
|
@@ -570,7 +1594,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
570
1594
|
lastFetched: number | null;
|
|
571
1595
|
limit: number;
|
|
572
1596
|
sortBy: SpaceListSortByOptions;
|
|
573
|
-
|
|
1597
|
+
searchSlug: string | null;
|
|
1598
|
+
searchName: string | null;
|
|
1599
|
+
searchDescription: string | null;
|
|
1600
|
+
searchAny: string | null;
|
|
574
1601
|
readingPermission: "anyone" | "members" | null;
|
|
575
1602
|
memberOf: boolean;
|
|
576
1603
|
parentSpaceId: string | null;
|
|
@@ -588,7 +1615,11 @@ export declare const initializeList: import("@reduxjs/toolkit").ActionCreatorWit
|
|
|
588
1615
|
listId: string;
|
|
589
1616
|
error: string | null;
|
|
590
1617
|
}, "spaceLists/setSpaceListError">, addSpace: import("@reduxjs/toolkit").ActionCreatorWithPayload<SpaceAddPayload, "spaceLists/addSpace">, removeSpace: import("@reduxjs/toolkit").ActionCreatorWithPayload<SpaceRemovePayload, "spaceLists/removeSpace">, updateSpace: import("@reduxjs/toolkit").ActionCreatorWithPayload<SpaceUpdatePayload, "spaceLists/updateSpace">, cleanupList: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "spaceLists/cleanupList">, cleanupOldLists: import("@reduxjs/toolkit").ActionCreatorWithPayload<number, "spaceLists/cleanupOldLists">;
|
|
591
|
-
export declare const selectSpaceList: ((state:
|
|
1618
|
+
export declare const selectSpaceList: ((state: {
|
|
1619
|
+
replyke: ReplykeState;
|
|
1620
|
+
} & {
|
|
1621
|
+
replyke: ReplykeState;
|
|
1622
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
592
1623
|
clearCache: () => void;
|
|
593
1624
|
resultsCount: () => number;
|
|
594
1625
|
resetResultsCount: () => void;
|
|
@@ -601,8 +1632,10 @@ export declare const selectSpaceList: ((state: any, listId: string) => SpaceList
|
|
|
601
1632
|
};
|
|
602
1633
|
lastResult: () => SpaceListState | undefined;
|
|
603
1634
|
dependencies: [(state: {
|
|
604
|
-
|
|
605
|
-
}) => SpaceListsState, (_:
|
|
1635
|
+
replyke: ReplykeState;
|
|
1636
|
+
}) => SpaceListsState, (_: {
|
|
1637
|
+
replyke: ReplykeState;
|
|
1638
|
+
}, listId: string) => string];
|
|
606
1639
|
recomputations: () => number;
|
|
607
1640
|
resetRecomputations: () => void;
|
|
608
1641
|
dependencyRecomputations: () => number;
|
|
@@ -611,7 +1644,11 @@ export declare const selectSpaceList: ((state: any, listId: string) => SpaceList
|
|
|
611
1644
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
612
1645
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
613
1646
|
};
|
|
614
|
-
export declare const selectSpaceListSpaces: ((state:
|
|
1647
|
+
export declare const selectSpaceListSpaces: ((state: {
|
|
1648
|
+
replyke: ReplykeState;
|
|
1649
|
+
} & {
|
|
1650
|
+
replyke: ReplykeState;
|
|
1651
|
+
}, listId: string) => Space[]) & {
|
|
615
1652
|
clearCache: () => void;
|
|
616
1653
|
resultsCount: () => number;
|
|
617
1654
|
resetResultsCount: () => void;
|
|
@@ -623,7 +1660,11 @@ export declare const selectSpaceListSpaces: ((state: any, listId: string) => Spa
|
|
|
623
1660
|
resetResultsCount: () => void;
|
|
624
1661
|
};
|
|
625
1662
|
lastResult: () => Space[];
|
|
626
|
-
dependencies: [((state:
|
|
1663
|
+
dependencies: [((state: {
|
|
1664
|
+
replyke: ReplykeState;
|
|
1665
|
+
} & {
|
|
1666
|
+
replyke: ReplykeState;
|
|
1667
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
627
1668
|
clearCache: () => void;
|
|
628
1669
|
resultsCount: () => number;
|
|
629
1670
|
resetResultsCount: () => void;
|
|
@@ -636,8 +1677,10 @@ export declare const selectSpaceListSpaces: ((state: any, listId: string) => Spa
|
|
|
636
1677
|
};
|
|
637
1678
|
lastResult: () => SpaceListState | undefined;
|
|
638
1679
|
dependencies: [(state: {
|
|
639
|
-
|
|
640
|
-
}) => SpaceListsState, (_:
|
|
1680
|
+
replyke: ReplykeState;
|
|
1681
|
+
}) => SpaceListsState, (_: {
|
|
1682
|
+
replyke: ReplykeState;
|
|
1683
|
+
}, listId: string) => string];
|
|
641
1684
|
recomputations: () => number;
|
|
642
1685
|
resetRecomputations: () => void;
|
|
643
1686
|
dependencyRecomputations: () => number;
|
|
@@ -654,7 +1697,11 @@ export declare const selectSpaceListSpaces: ((state: any, listId: string) => Spa
|
|
|
654
1697
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
655
1698
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
656
1699
|
};
|
|
657
|
-
export declare const selectSpaceListLoading: ((state:
|
|
1700
|
+
export declare const selectSpaceListLoading: ((state: {
|
|
1701
|
+
replyke: ReplykeState;
|
|
1702
|
+
} & {
|
|
1703
|
+
replyke: ReplykeState;
|
|
1704
|
+
}, listId: string) => boolean) & {
|
|
658
1705
|
clearCache: () => void;
|
|
659
1706
|
resultsCount: () => number;
|
|
660
1707
|
resetResultsCount: () => void;
|
|
@@ -666,7 +1713,11 @@ export declare const selectSpaceListLoading: ((state: any, listId: string) => bo
|
|
|
666
1713
|
resetResultsCount: () => void;
|
|
667
1714
|
};
|
|
668
1715
|
lastResult: () => boolean;
|
|
669
|
-
dependencies: [((state:
|
|
1716
|
+
dependencies: [((state: {
|
|
1717
|
+
replyke: ReplykeState;
|
|
1718
|
+
} & {
|
|
1719
|
+
replyke: ReplykeState;
|
|
1720
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
670
1721
|
clearCache: () => void;
|
|
671
1722
|
resultsCount: () => number;
|
|
672
1723
|
resetResultsCount: () => void;
|
|
@@ -679,8 +1730,10 @@ export declare const selectSpaceListLoading: ((state: any, listId: string) => bo
|
|
|
679
1730
|
};
|
|
680
1731
|
lastResult: () => SpaceListState | undefined;
|
|
681
1732
|
dependencies: [(state: {
|
|
682
|
-
|
|
683
|
-
}) => SpaceListsState, (_:
|
|
1733
|
+
replyke: ReplykeState;
|
|
1734
|
+
}) => SpaceListsState, (_: {
|
|
1735
|
+
replyke: ReplykeState;
|
|
1736
|
+
}, listId: string) => string];
|
|
684
1737
|
recomputations: () => number;
|
|
685
1738
|
resetRecomputations: () => void;
|
|
686
1739
|
dependencyRecomputations: () => number;
|
|
@@ -697,7 +1750,11 @@ export declare const selectSpaceListLoading: ((state: any, listId: string) => bo
|
|
|
697
1750
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
698
1751
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
699
1752
|
};
|
|
700
|
-
export declare const selectSpaceListHasMore: ((state:
|
|
1753
|
+
export declare const selectSpaceListHasMore: ((state: {
|
|
1754
|
+
replyke: ReplykeState;
|
|
1755
|
+
} & {
|
|
1756
|
+
replyke: ReplykeState;
|
|
1757
|
+
}, listId: string) => boolean) & {
|
|
701
1758
|
clearCache: () => void;
|
|
702
1759
|
resultsCount: () => number;
|
|
703
1760
|
resetResultsCount: () => void;
|
|
@@ -709,7 +1766,11 @@ export declare const selectSpaceListHasMore: ((state: any, listId: string) => bo
|
|
|
709
1766
|
resetResultsCount: () => void;
|
|
710
1767
|
};
|
|
711
1768
|
lastResult: () => boolean;
|
|
712
|
-
dependencies: [((state:
|
|
1769
|
+
dependencies: [((state: {
|
|
1770
|
+
replyke: ReplykeState;
|
|
1771
|
+
} & {
|
|
1772
|
+
replyke: ReplykeState;
|
|
1773
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
713
1774
|
clearCache: () => void;
|
|
714
1775
|
resultsCount: () => number;
|
|
715
1776
|
resetResultsCount: () => void;
|
|
@@ -722,8 +1783,10 @@ export declare const selectSpaceListHasMore: ((state: any, listId: string) => bo
|
|
|
722
1783
|
};
|
|
723
1784
|
lastResult: () => SpaceListState | undefined;
|
|
724
1785
|
dependencies: [(state: {
|
|
725
|
-
|
|
726
|
-
}) => SpaceListsState, (_:
|
|
1786
|
+
replyke: ReplykeState;
|
|
1787
|
+
}) => SpaceListsState, (_: {
|
|
1788
|
+
replyke: ReplykeState;
|
|
1789
|
+
}, listId: string) => string];
|
|
727
1790
|
recomputations: () => number;
|
|
728
1791
|
resetRecomputations: () => void;
|
|
729
1792
|
dependencyRecomputations: () => number;
|
|
@@ -740,9 +1803,16 @@ export declare const selectSpaceListHasMore: ((state: any, listId: string) => bo
|
|
|
740
1803
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
741
1804
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
742
1805
|
};
|
|
743
|
-
export declare const selectSpaceListFilters: ((state:
|
|
1806
|
+
export declare const selectSpaceListFilters: ((state: {
|
|
1807
|
+
replyke: ReplykeState;
|
|
1808
|
+
} & {
|
|
1809
|
+
replyke: ReplykeState;
|
|
1810
|
+
}, listId: string) => {
|
|
744
1811
|
sortBy: SpaceListSortByOptions;
|
|
745
|
-
|
|
1812
|
+
searchSlug: string | null;
|
|
1813
|
+
searchName: string | null;
|
|
1814
|
+
searchDescription: string | null;
|
|
1815
|
+
searchAny: string | null;
|
|
746
1816
|
readingPermission: "anyone" | "members" | null;
|
|
747
1817
|
memberOf: boolean;
|
|
748
1818
|
parentSpaceId: string | null;
|
|
@@ -753,14 +1823,20 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
753
1823
|
} & {
|
|
754
1824
|
resultFunc: (resultFuncArgs_0: SpaceListState | undefined) => {
|
|
755
1825
|
sortBy: SpaceListSortByOptions;
|
|
756
|
-
|
|
1826
|
+
searchSlug: string | null;
|
|
1827
|
+
searchName: string | null;
|
|
1828
|
+
searchDescription: string | null;
|
|
1829
|
+
searchAny: string | null;
|
|
757
1830
|
readingPermission: "anyone" | "members" | null;
|
|
758
1831
|
memberOf: boolean;
|
|
759
1832
|
parentSpaceId: string | null;
|
|
760
1833
|
} | null;
|
|
761
1834
|
memoizedResultFunc: ((resultFuncArgs_0: SpaceListState | undefined) => {
|
|
762
1835
|
sortBy: SpaceListSortByOptions;
|
|
763
|
-
|
|
1836
|
+
searchSlug: string | null;
|
|
1837
|
+
searchName: string | null;
|
|
1838
|
+
searchDescription: string | null;
|
|
1839
|
+
searchAny: string | null;
|
|
764
1840
|
readingPermission: "anyone" | "members" | null;
|
|
765
1841
|
memberOf: boolean;
|
|
766
1842
|
parentSpaceId: string | null;
|
|
@@ -771,12 +1847,19 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
771
1847
|
};
|
|
772
1848
|
lastResult: () => {
|
|
773
1849
|
sortBy: SpaceListSortByOptions;
|
|
774
|
-
|
|
1850
|
+
searchSlug: string | null;
|
|
1851
|
+
searchName: string | null;
|
|
1852
|
+
searchDescription: string | null;
|
|
1853
|
+
searchAny: string | null;
|
|
775
1854
|
readingPermission: "anyone" | "members" | null;
|
|
776
1855
|
memberOf: boolean;
|
|
777
1856
|
parentSpaceId: string | null;
|
|
778
1857
|
} | null;
|
|
779
|
-
dependencies: [((state:
|
|
1858
|
+
dependencies: [((state: {
|
|
1859
|
+
replyke: ReplykeState;
|
|
1860
|
+
} & {
|
|
1861
|
+
replyke: ReplykeState;
|
|
1862
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
780
1863
|
clearCache: () => void;
|
|
781
1864
|
resultsCount: () => number;
|
|
782
1865
|
resetResultsCount: () => void;
|
|
@@ -789,8 +1872,10 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
789
1872
|
};
|
|
790
1873
|
lastResult: () => SpaceListState | undefined;
|
|
791
1874
|
dependencies: [(state: {
|
|
792
|
-
|
|
793
|
-
}) => SpaceListsState, (_:
|
|
1875
|
+
replyke: ReplykeState;
|
|
1876
|
+
}) => SpaceListsState, (_: {
|
|
1877
|
+
replyke: ReplykeState;
|
|
1878
|
+
}, listId: string) => string];
|
|
794
1879
|
recomputations: () => number;
|
|
795
1880
|
resetRecomputations: () => void;
|
|
796
1881
|
dependencyRecomputations: () => number;
|
|
@@ -807,7 +1892,11 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
807
1892
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
808
1893
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
809
1894
|
};
|
|
810
|
-
export declare const selectSpaceListConfig: ((state:
|
|
1895
|
+
export declare const selectSpaceListConfig: ((state: {
|
|
1896
|
+
replyke: ReplykeState;
|
|
1897
|
+
} & {
|
|
1898
|
+
replyke: ReplykeState;
|
|
1899
|
+
}, listId: string) => {
|
|
811
1900
|
limit: number;
|
|
812
1901
|
} | null) & {
|
|
813
1902
|
clearCache: () => void;
|
|
@@ -827,7 +1916,11 @@ export declare const selectSpaceListConfig: ((state: any, listId: string) => {
|
|
|
827
1916
|
lastResult: () => {
|
|
828
1917
|
limit: number;
|
|
829
1918
|
} | null;
|
|
830
|
-
dependencies: [((state:
|
|
1919
|
+
dependencies: [((state: {
|
|
1920
|
+
replyke: ReplykeState;
|
|
1921
|
+
} & {
|
|
1922
|
+
replyke: ReplykeState;
|
|
1923
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
831
1924
|
clearCache: () => void;
|
|
832
1925
|
resultsCount: () => number;
|
|
833
1926
|
resetResultsCount: () => void;
|
|
@@ -840,8 +1933,10 @@ export declare const selectSpaceListConfig: ((state: any, listId: string) => {
|
|
|
840
1933
|
};
|
|
841
1934
|
lastResult: () => SpaceListState | undefined;
|
|
842
1935
|
dependencies: [(state: {
|
|
843
|
-
|
|
844
|
-
}) => SpaceListsState, (_:
|
|
1936
|
+
replyke: ReplykeState;
|
|
1937
|
+
}) => SpaceListsState, (_: {
|
|
1938
|
+
replyke: ReplykeState;
|
|
1939
|
+
}, listId: string) => string];
|
|
845
1940
|
recomputations: () => number;
|
|
846
1941
|
resetRecomputations: () => void;
|
|
847
1942
|
dependencyRecomputations: () => number;
|