@replyke/core 7.0.0-beta.9 → 7.0.0-beta.91
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.js +1 -2
- package/dist/cjs/config/axios.js.map +1 -1
- package/dist/cjs/config/useAxiosPrivate.js +16 -10
- package/dist/cjs/config/useAxiosPrivate.js.map +1 -1
- package/dist/cjs/context/entity-context.d.ts +2 -2
- package/dist/cjs/context/entity-context.js +4 -4
- package/dist/cjs/context/entity-context.js.map +1 -1
- package/dist/cjs/context/index.d.ts +1 -0
- package/dist/cjs/context/index.js +3 -1
- package/dist/cjs/context/index.js.map +1 -1
- package/dist/cjs/context/replyke-integration-context.d.ts +52 -0
- package/dist/cjs/context/replyke-integration-context.js +92 -0
- package/dist/cjs/context/replyke-integration-context.js.map +1 -0
- package/dist/cjs/context/replyke-store-context.js +19 -7
- package/dist/cjs/context/replyke-store-context.js.map +1 -1
- package/dist/cjs/helpers/addNotificationsMessages.js +14 -1
- package/dist/cjs/helpers/addNotificationsMessages.js.map +1 -1
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js +15 -39
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.d.ts +3 -0
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js +14 -23
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/cjs/hooks/auth/index.d.ts +9 -1
- package/dist/cjs/hooks/auth/index.js +17 -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 +170 -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 +23 -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 +5 -5
- package/dist/cjs/hooks/auth/useAuth.js.map +1 -1
- package/dist/cjs/hooks/auth/useOAuthIdentities.d.ts +19 -0
- package/dist/cjs/hooks/{reports/useFetchSpaceReports.js → auth/useOAuthIdentities.js} +58 -41
- package/dist/cjs/hooks/auth/useOAuthIdentities.js.map +1 -0
- package/dist/cjs/hooks/auth/useRemoveAccount.d.ts +6 -0
- package/dist/cjs/hooks/auth/useRemoveAccount.js +128 -0
- package/dist/cjs/hooks/auth/useRemoveAccount.js.map +1 -0
- package/dist/cjs/hooks/auth/useRequestPasswordReset.d.ts +5 -0
- package/dist/cjs/hooks/{entities/useRemoveEntityDownvote.js → auth/useRequestPasswordReset.js} +13 -14
- package/dist/cjs/hooks/auth/useRequestPasswordReset.js.map +1 -0
- package/dist/cjs/hooks/auth/useSignOutAll.d.ts +4 -0
- package/dist/cjs/hooks/auth/useSignOutAll.js +71 -0
- package/dist/cjs/hooks/auth/useSignOutAll.js.map +1 -0
- package/dist/cjs/hooks/auth/useSwitchAccount.d.ts +6 -0
- package/dist/cjs/hooks/auth/useSwitchAccount.js +103 -0
- package/dist/cjs/hooks/auth/useSwitchAccount.js.map +1 -0
- package/dist/cjs/hooks/collections/index.d.ts +4 -0
- package/dist/cjs/hooks/collections/index.js +16 -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 +211 -0
- package/dist/cjs/hooks/collections/useCollectionEntitiesWrapper.js.map +1 -0
- package/dist/cjs/hooks/collections/useCollections.d.ts +48 -0
- package/dist/cjs/hooks/collections/useCollections.js +264 -0
- package/dist/cjs/hooks/collections/useCollections.js.map +1 -0
- package/dist/cjs/hooks/collections/useCollectionsActions.d.ts +21 -0
- package/dist/cjs/hooks/{lists/useListsActions.js → collections/useCollectionsActions.js} +114 -120
- package/dist/cjs/hooks/collections/useCollectionsActions.js.map +1 -0
- package/dist/cjs/hooks/{lists → collections}/useIsEntitySaved.d.ts +2 -2
- package/dist/cjs/hooks/{lists → collections}/useIsEntitySaved.js +3 -4
- package/dist/cjs/hooks/collections/useIsEntitySaved.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/useCommentSectionData.d.ts +16 -13
- package/dist/cjs/hooks/comments/useCommentSectionData.js +40 -12
- 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.map +1 -1
- package/dist/cjs/hooks/comments/useDeleteComment.d.ts +3 -2
- package/dist/cjs/hooks/comments/useDeleteComment.js.map +1 -1
- package/dist/cjs/hooks/comments/useEntityComments.d.ts +2 -1
- package/dist/cjs/hooks/comments/useEntityComments.js +2 -1
- 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 +7 -5
- 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 +9 -6
- package/dist/cjs/hooks/comments/useFetchCommentByForeignId.js.map +1 -1
- package/dist/cjs/hooks/comments/useFetchManyComments.d.ts +5 -4
- package/dist/cjs/hooks/comments/useFetchManyComments.js +9 -10
- 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/{useProfileComments.js → useFetchManyCommentsWrapper.js} +40 -18
- package/dist/cjs/hooks/comments/useFetchManyCommentsWrapper.js.map +1 -0
- package/dist/cjs/hooks/comments/useReplies.d.ts +3 -2
- package/dist/cjs/hooks/comments/useReplies.js +1 -0
- 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.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 +11 -14
- package/dist/cjs/hooks/crypto/useSignTestingJwt.js.map +1 -1
- package/dist/cjs/hooks/entities/index.d.ts +10 -5
- package/dist/cjs/hooks/entities/index.js +7 -11
- 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 +93 -15
- 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 +1 -3
- package/dist/cjs/hooks/entities/useDeleteEntity.js.map +1 -1
- package/dist/cjs/hooks/entities/useEntityData.d.ts +24 -12
- package/dist/cjs/hooks/entities/useEntityData.js +0 -19
- 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 +81 -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 +7 -7
- 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 +9 -18
- 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 +8 -18
- package/dist/cjs/hooks/entities/useFetchEntityByShortId.js.map +1 -1
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.d.ts +41 -0
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js +241 -0
- package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -0
- package/dist/cjs/hooks/entities/usePublishDraft.d.ts +6 -0
- package/dist/cjs/hooks/entities/{useUpvoteEntity.js → usePublishDraft.js} +11 -11
- package/dist/cjs/hooks/entities/usePublishDraft.js.map +1 -0
- package/dist/cjs/hooks/entities/useUpdateEntity.js +7 -3
- package/dist/cjs/hooks/entities/useUpdateEntity.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/index.d.ts +1 -1
- package/dist/cjs/hooks/entity-lists/index.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityList.d.ts +18 -16
- package/dist/cjs/hooks/entity-lists/useEntityList.js +10 -10
- package/dist/cjs/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityListActions.js +2 -2
- 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 +0 -1
- package/dist/cjs/hooks/entity-lists/useInfusedData.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 +77 -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 +84 -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 +170 -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 +84 -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 +170 -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 +146 -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/{comments/useDownvoteComment.js → reactions/useRemoveReaction.js} +16 -13
- 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 +1 -1
- package/dist/cjs/hooks/relationships/connections/useAcceptConnection.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useConnectionManager.d.ts +2 -2
- package/dist/cjs/hooks/relationships/connections/useDeclineConnection.d.ts +3 -2
- package/dist/cjs/hooks/relationships/connections/useDeclineConnection.js +1 -1
- 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 +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionStatus.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.js +0 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchConnectionsCount.js +1 -1
- 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/useFetchReceivedPendingConnections.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.js +0 -1
- package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +1 -1
- package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.js +0 -1
- 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 +1 -1
- 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 +1 -1
- package/dist/cjs/hooks/relationships/connections/useRemoveConnectionByUserId.js.map +1 -1
- package/dist/cjs/hooks/relationships/connections/useRequestConnection.js +1 -1
- 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 +1 -3
- package/dist/cjs/hooks/relationships/follows/useFetchFollowStatus.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.js +0 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowers.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowersCount.js +1 -1
- 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.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowing.js +0 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowing.js.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFetchFollowingCount.js +1 -1
- 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.map +1 -1
- package/dist/cjs/hooks/relationships/follows/useFollowManager.d.ts +1 -1
- package/dist/cjs/hooks/relationships/follows/useFollowUser.d.ts +3 -2
- package/dist/cjs/hooks/relationships/follows/useFollowUser.js +1 -1
- 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 +1 -3
- 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 +1 -3
- 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 +3 -3
- 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 +91 -0
- package/dist/cjs/hooks/reports/useFetchModeratedReports.js.map +1 -0
- package/dist/cjs/hooks/reports/useHandleSpaceCommentReport.d.ts +5 -5
- package/dist/cjs/hooks/reports/useHandleSpaceCommentReport.js +2 -2
- package/dist/cjs/hooks/reports/useHandleSpaceEntityReport.d.ts +5 -5
- package/dist/cjs/hooks/reports/useHandleSpaceEntityReport.js +2 -2
- 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 +29 -14
- 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 +6 -3
- package/dist/cjs/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/cjs/hooks/spaces/index.d.ts +27 -1
- package/dist/cjs/hooks/spaces/index.js +18 -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/{users/useUpdateUser.js → spaces/rules/useCreateRule.js} +18 -19
- 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 +74 -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/{comments/useUpvoteComment.js → spaces/rules/useFetchManyRules.js} +15 -15
- 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 +74 -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/{entities/useRemoveEntityUpvote.js → spaces/rules/useReorderRules.js} +18 -15
- 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/{comments/useRemoveCommentDownvote.js → spaces/rules/useUpdateRule.js} +18 -15
- 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.map +1 -1
- package/dist/cjs/hooks/spaces/useCheckMyMembership.d.ts +3 -2
- 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.map +1 -1
- package/dist/cjs/hooks/spaces/useCreateSpace.d.ts +7 -2
- package/dist/cjs/hooks/spaces/useCreateSpace.js +54 -3
- 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.map +1 -1
- package/dist/cjs/hooks/spaces/useDeleteSpace.d.ts +3 -2
- package/dist/cjs/hooks/spaces/useDeleteSpace.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchManySpaces.d.ts +8 -4
- package/dist/cjs/hooks/spaces/useFetchManySpaces.js +13 -2
- 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 +6 -2
- 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.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceByShortId.d.ts +5 -3
- package/dist/cjs/hooks/spaces/useFetchSpaceByShortId.js +7 -2
- 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 +7 -2
- package/dist/cjs/hooks/spaces/useFetchSpaceBySlug.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.d.ts +4 -3
- package/dist/cjs/hooks/spaces/useFetchSpaceChildren.js +8 -2
- 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 +2 -13
- package/dist/cjs/hooks/spaces/useFetchSpaceMembers.js.map +1 -1
- package/dist/cjs/hooks/spaces/useFetchSpaceTeam.d.ts +6 -0
- package/dist/cjs/hooks/{entities/useDownvoteEntity.js → spaces/useFetchSpaceTeam.js} +17 -15
- 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/{useFetchMySpaces.js → useFetchUserSpaces.js} +31 -8
- 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.map +1 -1
- package/dist/cjs/hooks/spaces/useLeaveSpace.d.ts +3 -2
- 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 +85 -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 +85 -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.map +1 -1
- package/dist/cjs/hooks/spaces/useSpaceData.d.ts +3 -2
- package/dist/cjs/hooks/spaces/useSpaceData.js +9 -4
- package/dist/cjs/hooks/spaces/useSpaceData.js.map +1 -1
- package/dist/cjs/hooks/spaces/useSpacePermissions.d.ts +2 -2
- package/dist/cjs/hooks/spaces/useUpdateMemberRole.d.ts +2 -2
- package/dist/cjs/hooks/spaces/useUpdateMemberRole.js.map +1 -1
- package/dist/cjs/hooks/spaces/useUpdateSpace.d.ts +7 -2
- package/dist/cjs/hooks/spaces/useUpdateSpace.js +49 -4
- 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 +22 -9
- package/dist/cjs/hooks/storage/useUploadFile.js.map +1 -1
- package/dist/cjs/hooks/storage/useUploadImage.d.ts +14 -0
- package/dist/cjs/hooks/storage/useUploadImage.js +158 -0
- package/dist/cjs/hooks/storage/useUploadImage.js.map +1 -0
- package/dist/cjs/hooks/user/index.d.ts +1 -0
- package/dist/cjs/hooks/user/useUser.js +8 -8
- package/dist/cjs/hooks/user/useUser.js.map +1 -1
- package/dist/cjs/hooks/user/useUserActions.js +18 -5
- package/dist/cjs/hooks/user/useUserActions.js.map +1 -1
- package/dist/cjs/hooks/users/index.d.ts +6 -6
- package/dist/cjs/hooks/users/index.js +3 -3
- package/dist/cjs/hooks/users/index.js.map +1 -1
- package/dist/cjs/hooks/users/useCheckUsernameAvailability.d.ts +3 -2
- 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 +6 -2
- 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 +5 -2
- package/dist/cjs/hooks/users/useFetchUserByForeignId.js.map +1 -1
- package/dist/cjs/hooks/users/useFetchUserByUsername.d.ts +7 -0
- package/dist/cjs/hooks/{comments/useRemoveCommentUpvote.js → users/useFetchUserByUsername.js} +17 -13
- package/dist/cjs/hooks/users/useFetchUserByUsername.js.map +1 -0
- package/dist/cjs/hooks/users/useFetchUserSuggestions.d.ts +3 -2
- package/dist/cjs/hooks/users/useFetchUserSuggestions.js.map +1 -1
- package/dist/cjs/hooks/users/useMentions.d.ts +3 -2
- package/dist/cjs/hooks/users/useMentions.js.map +1 -1
- 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 +4 -3
- package/dist/cjs/hooks/utils/useGetMetadata.js.map +1 -1
- package/dist/cjs/index.d.ts +36 -25
- package/dist/cjs/index.js +70 -23
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/IAccountStorage.d.ts +6 -0
- package/dist/cjs/interfaces/IAccountStorage.js +3 -0
- package/dist/cjs/interfaces/IAccountStorage.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 +36 -2
- package/dist/cjs/interfaces/models/{List.d.ts → 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 +13 -1
- package/dist/cjs/interfaces/models/Entity.d.ts +14 -1
- package/dist/cjs/interfaces/models/File.d.ts +38 -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/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 +12 -5
- package/dist/cjs/interfaces/models/SpaceMember.d.ts +3 -0
- package/dist/cjs/interfaces/models/User.d.ts +10 -3
- package/dist/cjs/store/api/appNotificationsApi.d.ts +181 -181
- package/dist/cjs/store/api/baseApi.d.ts +3 -1
- package/dist/cjs/store/api/baseApi.js +10 -6
- 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 +244 -0
- package/dist/cjs/store/api/collectionsApi.js.map +1 -0
- package/dist/cjs/store/api/entityListsApi.d.ts +107 -107
- 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 +968 -960
- package/dist/cjs/store/api/spacesApi.js +30 -12
- 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 +62 -11
- package/dist/cjs/store/api/userApi.js.map +1 -1
- package/dist/cjs/store/hooks.d.ts +27 -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 +19 -11
- package/dist/cjs/store/index.js +4 -1
- package/dist/cjs/store/index.js.map +1 -1
- package/dist/cjs/store/integration.d.ts +35 -0
- package/dist/cjs/store/integration.js +61 -0
- package/dist/cjs/store/integration.js.map +1 -0
- package/dist/cjs/store/replykeReducers.d.ts +38 -0
- package/dist/cjs/store/replykeReducers.js +44 -0
- package/dist/cjs/store/replykeReducers.js.map +1 -0
- package/dist/cjs/store/rootReducer.d.ts +30 -14
- package/dist/cjs/store/rootReducer.js +6 -19
- 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 +71 -0
- package/dist/cjs/store/slices/accountsSlice.js.map +1 -0
- package/dist/cjs/store/slices/appNotificationsSlice.d.ts +515 -8
- package/dist/cjs/store/slices/appNotificationsSlice.js +9 -9
- 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 +19 -7
- 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 +168 -58
- package/dist/cjs/store/slices/authThunks.js.map +1 -1
- package/dist/cjs/store/slices/collectionsSlice.d.ts +428 -0
- package/dist/cjs/store/slices/collectionsSlice.js +211 -0
- package/dist/cjs/store/slices/collectionsSlice.js.map +1 -0
- package/dist/cjs/store/slices/entityListsSlice.d.ts +3838 -147
- package/dist/cjs/store/slices/entityListsSlice.js +2 -2
- package/dist/cjs/store/slices/entityListsSlice.js.map +1 -1
- package/dist/cjs/store/slices/spaceListsSlice.d.ts +1136 -65
- package/dist/cjs/store/slices/spaceListsSlice.js +14 -5
- package/dist/cjs/store/slices/spaceListsSlice.js.map +1 -1
- package/dist/cjs/store/slices/userSlice.d.ts +715 -7
- package/dist/cjs/store/slices/userSlice.js +22 -10
- package/dist/cjs/store/slices/userSlice.js.map +1 -1
- package/dist/cjs/store/types/index.d.ts +5 -1
- package/dist/cjs/utils/env.js +3 -3
- package/dist/cjs/utils/env.js.map +1 -1
- package/dist/esm/config/axios.js +1 -2
- package/dist/esm/config/axios.js.map +1 -1
- package/dist/esm/config/useAxiosPrivate.js +16 -10
- package/dist/esm/config/useAxiosPrivate.js.map +1 -1
- package/dist/esm/context/entity-context.d.ts +2 -2
- package/dist/esm/context/entity-context.js +4 -4
- package/dist/esm/context/entity-context.js.map +1 -1
- package/dist/esm/context/index.d.ts +1 -0
- package/dist/esm/context/index.js +1 -0
- package/dist/esm/context/index.js.map +1 -1
- package/dist/esm/context/replyke-integration-context.d.ts +52 -0
- package/dist/esm/context/replyke-integration-context.js +85 -0
- package/dist/esm/context/replyke-integration-context.js.map +1 -0
- package/dist/esm/context/replyke-store-context.js +21 -9
- package/dist/esm/context/replyke-store-context.js.map +1 -1
- package/dist/esm/helpers/addNotificationsMessages.js +14 -1
- package/dist/esm/helpers/addNotificationsMessages.js.map +1 -1
- package/dist/esm/hooks/app-notifications/useAppNotifications.js +16 -40
- package/dist/esm/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.d.ts +3 -0
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js +15 -24
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/esm/hooks/auth/index.d.ts +9 -1
- package/dist/esm/hooks/auth/index.js +8 -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 +167 -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 +20 -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 +5 -5
- package/dist/esm/hooks/auth/useAuth.js.map +1 -1
- package/dist/esm/hooks/auth/useOAuthIdentities.d.ts +19 -0
- package/dist/esm/hooks/{reports/useFetchSpaceReports.js → auth/useOAuthIdentities.js} +59 -42
- package/dist/esm/hooks/auth/useOAuthIdentities.js.map +1 -0
- package/dist/esm/hooks/auth/useRemoveAccount.d.ts +6 -0
- package/dist/esm/hooks/auth/useRemoveAccount.js +122 -0
- package/dist/esm/hooks/auth/useRemoveAccount.js.map +1 -0
- package/dist/esm/hooks/auth/useRequestPasswordReset.d.ts +5 -0
- package/dist/esm/hooks/{entities/useRemoveEntityDownvote.js → auth/useRequestPasswordReset.js} +13 -14
- package/dist/esm/hooks/auth/useRequestPasswordReset.js.map +1 -0
- package/dist/esm/hooks/auth/useSignOutAll.d.ts +4 -0
- package/dist/esm/hooks/auth/useSignOutAll.js +65 -0
- package/dist/esm/hooks/auth/useSignOutAll.js.map +1 -0
- package/dist/esm/hooks/auth/useSwitchAccount.d.ts +6 -0
- package/dist/esm/hooks/auth/useSwitchAccount.js +97 -0
- package/dist/esm/hooks/auth/useSwitchAccount.js.map +1 -0
- package/dist/esm/hooks/collections/index.d.ts +4 -0
- package/dist/esm/hooks/collections/index.js +6 -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 +206 -0
- package/dist/esm/hooks/collections/useCollectionEntitiesWrapper.js.map +1 -0
- package/dist/esm/hooks/collections/useCollections.d.ts +48 -0
- package/dist/esm/hooks/collections/useCollections.js +259 -0
- package/dist/esm/hooks/collections/useCollections.js.map +1 -0
- package/dist/esm/hooks/collections/useCollectionsActions.d.ts +21 -0
- package/dist/esm/hooks/{lists/useListsActions.js → collections/useCollectionsActions.js} +105 -111
- package/dist/esm/hooks/collections/useCollectionsActions.js.map +1 -0
- package/dist/esm/hooks/{lists → collections}/useIsEntitySaved.d.ts +2 -2
- package/dist/esm/hooks/{lists → collections}/useIsEntitySaved.js +3 -4
- package/dist/esm/hooks/collections/useIsEntitySaved.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 +16 -13
- package/dist/esm/hooks/comments/useCommentSectionData.js +40 -12
- 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.map +1 -1
- package/dist/esm/hooks/comments/useDeleteComment.d.ts +3 -2
- package/dist/esm/hooks/comments/useDeleteComment.js.map +1 -1
- package/dist/esm/hooks/comments/useEntityComments.d.ts +2 -1
- package/dist/esm/hooks/comments/useEntityComments.js +2 -1
- 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 +7 -5
- 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 +9 -6
- package/dist/esm/hooks/comments/useFetchCommentByForeignId.js.map +1 -1
- package/dist/esm/hooks/comments/useFetchManyComments.d.ts +5 -4
- package/dist/esm/hooks/comments/useFetchManyComments.js +8 -9
- 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/{useProfileComments.js → useFetchManyCommentsWrapper.js} +40 -18
- package/dist/esm/hooks/comments/useFetchManyCommentsWrapper.js.map +1 -0
- package/dist/esm/hooks/comments/useReplies.d.ts +3 -2
- package/dist/esm/hooks/comments/useReplies.js +1 -0
- 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.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 +11 -14
- package/dist/esm/hooks/crypto/useSignTestingJwt.js.map +1 -1
- package/dist/esm/hooks/entities/index.d.ts +10 -5
- package/dist/esm/hooks/entities/index.js +3 -5
- 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 +93 -15
- 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 +1 -3
- package/dist/esm/hooks/entities/useDeleteEntity.js.map +1 -1
- package/dist/esm/hooks/entities/useEntityData.d.ts +24 -12
- package/dist/esm/hooks/entities/useEntityData.js +0 -19
- 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 +76 -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 +6 -6
- 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 +8 -17
- 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 +7 -17
- package/dist/esm/hooks/entities/useFetchEntityByShortId.js.map +1 -1
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.d.ts +41 -0
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js +236 -0
- package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -0
- package/dist/esm/hooks/entities/usePublishDraft.d.ts +6 -0
- package/dist/esm/hooks/entities/{useUpvoteEntity.js → usePublishDraft.js} +11 -11
- package/dist/esm/hooks/entities/usePublishDraft.js.map +1 -0
- package/dist/esm/hooks/entities/useUpdateEntity.js +7 -3
- package/dist/esm/hooks/entities/useUpdateEntity.js.map +1 -1
- package/dist/esm/hooks/entity-lists/index.d.ts +1 -1
- package/dist/esm/hooks/entity-lists/index.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useEntityList.d.ts +18 -16
- package/dist/esm/hooks/entity-lists/useEntityList.js +10 -10
- package/dist/esm/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useEntityListActions.js +2 -2
- 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 +0 -1
- package/dist/esm/hooks/entity-lists/useInfusedData.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 +72 -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 +79 -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 +165 -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 +79 -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 +165 -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 +141 -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/{comments/useDownvoteComment.js → reactions/useRemoveReaction.js} +16 -13
- 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 +1 -1
- package/dist/esm/hooks/relationships/connections/useAcceptConnection.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useConnectionManager.d.ts +2 -2
- package/dist/esm/hooks/relationships/connections/useDeclineConnection.d.ts +3 -2
- package/dist/esm/hooks/relationships/connections/useDeclineConnection.js +1 -1
- 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 +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionStatus.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnections.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnections.js +0 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchConnectionsCount.js +1 -1
- 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/useFetchReceivedPendingConnections.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.js +0 -1
- package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +1 -1
- package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.js +0 -1
- 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 +1 -1
- 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 +1 -1
- package/dist/esm/hooks/relationships/connections/useRemoveConnectionByUserId.js.map +1 -1
- package/dist/esm/hooks/relationships/connections/useRequestConnection.js +1 -1
- 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 +1 -3
- package/dist/esm/hooks/relationships/follows/useFetchFollowStatus.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.js +0 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowers.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowersCount.js +1 -1
- 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.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowing.js +0 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowing.js.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFetchFollowingCount.js +1 -1
- 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.map +1 -1
- package/dist/esm/hooks/relationships/follows/useFollowManager.d.ts +1 -1
- package/dist/esm/hooks/relationships/follows/useFollowUser.d.ts +3 -2
- package/dist/esm/hooks/relationships/follows/useFollowUser.js +1 -1
- 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 +1 -3
- 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 +1 -3
- 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 +3 -3
- 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 +86 -0
- package/dist/esm/hooks/reports/useFetchModeratedReports.js.map +1 -0
- package/dist/esm/hooks/reports/useHandleSpaceCommentReport.d.ts +5 -5
- package/dist/esm/hooks/reports/useHandleSpaceCommentReport.js +2 -2
- package/dist/esm/hooks/reports/useHandleSpaceEntityReport.d.ts +5 -5
- package/dist/esm/hooks/reports/useHandleSpaceEntityReport.js +2 -2
- 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 +29 -14
- 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 +6 -3
- package/dist/esm/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/esm/hooks/spaces/index.d.ts +27 -1
- package/dist/esm/hooks/spaces/index.js +7 -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 +72 -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 +69 -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/{comments/useUpvoteComment.js → spaces/rules/useFetchManyRules.js} +15 -15
- 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/{entities/useRemoveEntityUpvote.js → spaces/rules/useFetchRule.js} +18 -15
- 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/{comments/useRemoveCommentDownvote.js → spaces/rules/useReorderRules.js} +18 -15
- 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/{users/useUpdateUser.js → spaces/rules/useUpdateRule.js} +15 -19
- 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.map +1 -1
- package/dist/esm/hooks/spaces/useCheckMyMembership.d.ts +3 -2
- 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.map +1 -1
- package/dist/esm/hooks/spaces/useCreateSpace.d.ts +7 -2
- package/dist/esm/hooks/spaces/useCreateSpace.js +54 -3
- 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.map +1 -1
- package/dist/esm/hooks/spaces/useDeleteSpace.d.ts +3 -2
- package/dist/esm/hooks/spaces/useDeleteSpace.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchManySpaces.d.ts +8 -4
- package/dist/esm/hooks/spaces/useFetchManySpaces.js +13 -2
- 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 +6 -2
- 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.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceByShortId.d.ts +5 -3
- package/dist/esm/hooks/spaces/useFetchSpaceByShortId.js +7 -2
- 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 +7 -2
- package/dist/esm/hooks/spaces/useFetchSpaceBySlug.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.d.ts +4 -3
- package/dist/esm/hooks/spaces/useFetchSpaceChildren.js +8 -2
- 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 +2 -13
- package/dist/esm/hooks/spaces/useFetchSpaceMembers.js.map +1 -1
- package/dist/esm/hooks/spaces/useFetchSpaceTeam.d.ts +6 -0
- package/dist/esm/hooks/{entities/useDownvoteEntity.js → spaces/useFetchSpaceTeam.js} +17 -15
- 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/{useFetchMySpaces.js → useFetchUserSpaces.js} +31 -8
- 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.map +1 -1
- package/dist/esm/hooks/spaces/useLeaveSpace.d.ts +3 -2
- 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 +80 -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 +80 -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.map +1 -1
- package/dist/esm/hooks/spaces/useSpaceData.d.ts +3 -2
- package/dist/esm/hooks/spaces/useSpaceData.js +10 -5
- package/dist/esm/hooks/spaces/useSpaceData.js.map +1 -1
- package/dist/esm/hooks/spaces/useSpacePermissions.d.ts +2 -2
- package/dist/esm/hooks/spaces/useUpdateMemberRole.d.ts +2 -2
- package/dist/esm/hooks/spaces/useUpdateMemberRole.js.map +1 -1
- package/dist/esm/hooks/spaces/useUpdateSpace.d.ts +7 -2
- package/dist/esm/hooks/spaces/useUpdateSpace.js +49 -4
- 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 +22 -9
- package/dist/esm/hooks/storage/useUploadFile.js.map +1 -1
- package/dist/esm/hooks/storage/useUploadImage.d.ts +14 -0
- package/dist/esm/hooks/storage/useUploadImage.js +153 -0
- package/dist/esm/hooks/storage/useUploadImage.js.map +1 -0
- package/dist/esm/hooks/user/index.d.ts +1 -0
- package/dist/esm/hooks/user/useUser.js +8 -8
- package/dist/esm/hooks/user/useUser.js.map +1 -1
- package/dist/esm/hooks/user/useUserActions.js +19 -6
- package/dist/esm/hooks/user/useUserActions.js.map +1 -1
- package/dist/esm/hooks/users/index.d.ts +6 -6
- package/dist/esm/hooks/users/index.js +6 -6
- 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.map +1 -1
- package/dist/esm/hooks/users/useFetchUser.d.ts +5 -3
- package/dist/esm/hooks/users/useFetchUser.js +6 -2
- 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 +5 -2
- package/dist/esm/hooks/users/useFetchUserByForeignId.js.map +1 -1
- package/dist/esm/hooks/users/useFetchUserByUsername.d.ts +7 -0
- package/dist/esm/hooks/{comments/useRemoveCommentUpvote.js → users/useFetchUserByUsername.js} +17 -13
- package/dist/esm/hooks/users/useFetchUserByUsername.js.map +1 -0
- package/dist/esm/hooks/users/useFetchUserSuggestions.d.ts +3 -2
- package/dist/esm/hooks/users/useFetchUserSuggestions.js.map +1 -1
- package/dist/esm/hooks/users/useMentions.d.ts +3 -2
- package/dist/esm/hooks/users/useMentions.js.map +1 -1
- 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 +3 -2
- package/dist/esm/hooks/utils/useGetMetadata.js.map +1 -1
- package/dist/esm/index.d.ts +36 -25
- package/dist/esm/index.js +25 -13
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/IAccountStorage.d.ts +6 -0
- package/dist/esm/interfaces/IAccountStorage.js +2 -0
- package/dist/esm/interfaces/IAccountStorage.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 +36 -2
- package/dist/esm/interfaces/models/{List.d.ts → 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 +13 -1
- package/dist/esm/interfaces/models/Entity.d.ts +14 -1
- package/dist/esm/interfaces/models/File.d.ts +38 -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/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 +12 -5
- package/dist/esm/interfaces/models/SpaceMember.d.ts +3 -0
- package/dist/esm/interfaces/models/User.d.ts +10 -3
- package/dist/esm/store/api/appNotificationsApi.d.ts +181 -181
- package/dist/esm/store/api/baseApi.d.ts +3 -1
- package/dist/esm/store/api/baseApi.js +9 -5
- 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 +241 -0
- package/dist/esm/store/api/collectionsApi.js.map +1 -0
- package/dist/esm/store/api/entityListsApi.d.ts +107 -107
- 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 +968 -960
- package/dist/esm/store/api/spacesApi.js +29 -11
- 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 +62 -11
- package/dist/esm/store/api/userApi.js.map +1 -1
- package/dist/esm/store/hooks.d.ts +27 -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 +19 -11
- package/dist/esm/store/index.js +4 -1
- package/dist/esm/store/index.js.map +1 -1
- package/dist/esm/store/integration.d.ts +35 -0
- package/dist/esm/store/integration.js +53 -0
- package/dist/esm/store/integration.js.map +1 -0
- package/dist/esm/store/replykeReducers.d.ts +38 -0
- package/dist/esm/store/replykeReducers.js +38 -0
- package/dist/esm/store/replykeReducers.js.map +1 -0
- package/dist/esm/store/rootReducer.d.ts +30 -14
- package/dist/esm/store/rootReducer.js +6 -16
- 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 +64 -0
- package/dist/esm/store/slices/accountsSlice.js.map +1 -0
- package/dist/esm/store/slices/appNotificationsSlice.d.ts +515 -8
- package/dist/esm/store/slices/appNotificationsSlice.js +9 -9
- 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 -7
- 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 +167 -57
- package/dist/esm/store/slices/authThunks.js.map +1 -1
- package/dist/esm/store/slices/collectionsSlice.d.ts +428 -0
- package/dist/esm/store/slices/collectionsSlice.js +202 -0
- package/dist/esm/store/slices/collectionsSlice.js.map +1 -0
- package/dist/esm/store/slices/entityListsSlice.d.ts +3838 -147
- package/dist/esm/store/slices/entityListsSlice.js +2 -2
- package/dist/esm/store/slices/entityListsSlice.js.map +1 -1
- package/dist/esm/store/slices/spaceListsSlice.d.ts +1136 -65
- package/dist/esm/store/slices/spaceListsSlice.js +14 -5
- package/dist/esm/store/slices/spaceListsSlice.js.map +1 -1
- package/dist/esm/store/slices/userSlice.d.ts +715 -7
- package/dist/esm/store/slices/userSlice.js +22 -10
- package/dist/esm/store/slices/userSlice.js.map +1 -1
- package/dist/esm/store/types/index.d.ts +5 -1
- package/dist/esm/utils/env.js +3 -3
- package/dist/esm/utils/env.js.map +1 -1
- package/package.json +7 -5
- 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.map +0 -1
- package/dist/cjs/hooks/comments/useProfileComments.d.ts +0 -18
- 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.map +0 -1
- package/dist/cjs/hooks/comments/useRemoveCommentUpvote.d.ts +0 -5
- 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.map +0 -1
- package/dist/cjs/hooks/entities/useDownvoteEntity.d.ts +0 -5
- 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/useRemoveEntityDownvote.d.ts +0 -5
- 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.map +0 -1
- package/dist/cjs/hooks/entities/useUpvoteEntity.d.ts +0 -5
- 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.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.map +0 -1
- package/dist/cjs/hooks/reports/useFetchSpaceReports.d.ts +0 -39
- 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.map +0 -1
- package/dist/cjs/hooks/users/useUpdateUser.d.ts +0 -18
- package/dist/cjs/hooks/users/useUpdateUser.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.map +0 -1
- package/dist/esm/hooks/comments/useProfileComments.d.ts +0 -18
- 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.map +0 -1
- package/dist/esm/hooks/comments/useRemoveCommentUpvote.d.ts +0 -5
- 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.map +0 -1
- package/dist/esm/hooks/entities/useDownvoteEntity.d.ts +0 -5
- 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/useRemoveEntityDownvote.d.ts +0 -5
- 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.map +0 -1
- package/dist/esm/hooks/entities/useUpvoteEntity.d.ts +0 -5
- 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.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.map +0 -1
- package/dist/esm/hooks/reports/useFetchSpaceReports.d.ts +0 -39
- 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.map +0 -1
- package/dist/esm/hooks/users/useUpdateUser.d.ts +0 -18
- package/dist/esm/hooks/users/useUpdateUser.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
|
@@ -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,8 +81,8 @@ 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
87
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
81
88
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -91,6 +98,86 @@ 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
|
+
spaceId: string | null;
|
|
108
|
+
type: "image" | "video" | "document" | "other";
|
|
109
|
+
originalPath: string;
|
|
110
|
+
originalSize: number;
|
|
111
|
+
originalMimeType: string;
|
|
112
|
+
position: number;
|
|
113
|
+
metadata: {
|
|
114
|
+
[x: string]: any;
|
|
115
|
+
};
|
|
116
|
+
image?: {
|
|
117
|
+
fileId: string;
|
|
118
|
+
originalWidth: number;
|
|
119
|
+
originalHeight: number;
|
|
120
|
+
variants: {
|
|
121
|
+
[x: string]: {
|
|
122
|
+
path: string;
|
|
123
|
+
publicPath: string;
|
|
124
|
+
width: number;
|
|
125
|
+
height: number;
|
|
126
|
+
size: number;
|
|
127
|
+
format: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
processingStatus: "completed" | "failed";
|
|
131
|
+
processingError: string | null;
|
|
132
|
+
format: string;
|
|
133
|
+
quality: number;
|
|
134
|
+
exifStripped: boolean;
|
|
135
|
+
createdAt: Date;
|
|
136
|
+
updatedAt: Date;
|
|
137
|
+
} | undefined;
|
|
138
|
+
createdAt: Date;
|
|
139
|
+
updatedAt: Date;
|
|
140
|
+
} | undefined;
|
|
141
|
+
bannerFile?: {
|
|
142
|
+
id: string;
|
|
143
|
+
projectId: string;
|
|
144
|
+
userId: string | null;
|
|
145
|
+
entityId: string | null;
|
|
146
|
+
commentId: string | null;
|
|
147
|
+
spaceId: string | null;
|
|
148
|
+
type: "image" | "video" | "document" | "other";
|
|
149
|
+
originalPath: string;
|
|
150
|
+
originalSize: number;
|
|
151
|
+
originalMimeType: string;
|
|
152
|
+
position: number;
|
|
153
|
+
metadata: {
|
|
154
|
+
[x: string]: any;
|
|
155
|
+
};
|
|
156
|
+
image?: {
|
|
157
|
+
fileId: string;
|
|
158
|
+
originalWidth: number;
|
|
159
|
+
originalHeight: number;
|
|
160
|
+
variants: {
|
|
161
|
+
[x: string]: {
|
|
162
|
+
path: string;
|
|
163
|
+
publicPath: string;
|
|
164
|
+
width: number;
|
|
165
|
+
height: number;
|
|
166
|
+
size: number;
|
|
167
|
+
format: string;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
processingStatus: "completed" | "failed";
|
|
171
|
+
processingError: string | null;
|
|
172
|
+
format: string;
|
|
173
|
+
quality: number;
|
|
174
|
+
exifStripped: boolean;
|
|
175
|
+
createdAt: Date;
|
|
176
|
+
updatedAt: Date;
|
|
177
|
+
} | undefined;
|
|
178
|
+
createdAt: Date;
|
|
179
|
+
updatedAt: Date;
|
|
180
|
+
} | undefined;
|
|
94
181
|
}[];
|
|
95
182
|
page: number;
|
|
96
183
|
loading: boolean;
|
|
@@ -99,7 +186,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
99
186
|
lastFetched: number | null;
|
|
100
187
|
limit: number;
|
|
101
188
|
sortBy: SpaceListSortByOptions;
|
|
102
|
-
|
|
189
|
+
searchSlug: string | null;
|
|
190
|
+
searchName: string | null;
|
|
191
|
+
searchDescription: string | null;
|
|
192
|
+
searchAny: string | null;
|
|
103
193
|
readingPermission: "anyone" | "members" | null;
|
|
104
194
|
memberOf: boolean;
|
|
105
195
|
parentSpaceId: string | null;
|
|
@@ -116,8 +206,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
116
206
|
slug: string | null;
|
|
117
207
|
name: string;
|
|
118
208
|
description: string | null;
|
|
119
|
-
|
|
120
|
-
|
|
209
|
+
avatarFileId: string | null;
|
|
210
|
+
bannerFileId: string | null;
|
|
121
211
|
userId: string;
|
|
122
212
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
123
213
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -133,6 +223,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
133
223
|
membersCount: number;
|
|
134
224
|
childSpacesCount: number;
|
|
135
225
|
isMember?: boolean | undefined;
|
|
226
|
+
avatarFile?: {
|
|
227
|
+
id: string;
|
|
228
|
+
projectId: string;
|
|
229
|
+
userId: string | null;
|
|
230
|
+
entityId: string | null;
|
|
231
|
+
commentId: string | null;
|
|
232
|
+
spaceId: string | null;
|
|
233
|
+
type: "image" | "video" | "document" | "other";
|
|
234
|
+
originalPath: string;
|
|
235
|
+
originalSize: number;
|
|
236
|
+
originalMimeType: string;
|
|
237
|
+
position: number;
|
|
238
|
+
metadata: {
|
|
239
|
+
[x: string]: any;
|
|
240
|
+
};
|
|
241
|
+
image?: {
|
|
242
|
+
fileId: string;
|
|
243
|
+
originalWidth: number;
|
|
244
|
+
originalHeight: number;
|
|
245
|
+
variants: {
|
|
246
|
+
[x: string]: {
|
|
247
|
+
path: string;
|
|
248
|
+
publicPath: string;
|
|
249
|
+
width: number;
|
|
250
|
+
height: number;
|
|
251
|
+
size: number;
|
|
252
|
+
format: string;
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
processingStatus: "completed" | "failed";
|
|
256
|
+
processingError: string | null;
|
|
257
|
+
format: string;
|
|
258
|
+
quality: number;
|
|
259
|
+
exifStripped: boolean;
|
|
260
|
+
createdAt: Date;
|
|
261
|
+
updatedAt: Date;
|
|
262
|
+
} | undefined;
|
|
263
|
+
createdAt: Date;
|
|
264
|
+
updatedAt: Date;
|
|
265
|
+
} | undefined;
|
|
266
|
+
bannerFile?: {
|
|
267
|
+
id: string;
|
|
268
|
+
projectId: string;
|
|
269
|
+
userId: string | null;
|
|
270
|
+
entityId: string | null;
|
|
271
|
+
commentId: string | null;
|
|
272
|
+
spaceId: string | null;
|
|
273
|
+
type: "image" | "video" | "document" | "other";
|
|
274
|
+
originalPath: string;
|
|
275
|
+
originalSize: number;
|
|
276
|
+
originalMimeType: string;
|
|
277
|
+
position: number;
|
|
278
|
+
metadata: {
|
|
279
|
+
[x: string]: any;
|
|
280
|
+
};
|
|
281
|
+
image?: {
|
|
282
|
+
fileId: string;
|
|
283
|
+
originalWidth: number;
|
|
284
|
+
originalHeight: number;
|
|
285
|
+
variants: {
|
|
286
|
+
[x: string]: {
|
|
287
|
+
path: string;
|
|
288
|
+
publicPath: string;
|
|
289
|
+
width: number;
|
|
290
|
+
height: number;
|
|
291
|
+
size: number;
|
|
292
|
+
format: string;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
processingStatus: "completed" | "failed";
|
|
296
|
+
processingError: string | null;
|
|
297
|
+
format: string;
|
|
298
|
+
quality: number;
|
|
299
|
+
exifStripped: boolean;
|
|
300
|
+
createdAt: Date;
|
|
301
|
+
updatedAt: Date;
|
|
302
|
+
} | undefined;
|
|
303
|
+
createdAt: Date;
|
|
304
|
+
updatedAt: Date;
|
|
305
|
+
} | undefined;
|
|
136
306
|
}[];
|
|
137
307
|
page: number;
|
|
138
308
|
loading: boolean;
|
|
@@ -141,7 +311,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
141
311
|
lastFetched: number | null;
|
|
142
312
|
limit: number;
|
|
143
313
|
sortBy: SpaceListSortByOptions;
|
|
144
|
-
|
|
314
|
+
searchSlug: string | null;
|
|
315
|
+
searchName: string | null;
|
|
316
|
+
searchDescription: string | null;
|
|
317
|
+
searchAny: string | null;
|
|
145
318
|
readingPermission: "anyone" | "members" | null;
|
|
146
319
|
memberOf: boolean;
|
|
147
320
|
parentSpaceId: string | null;
|
|
@@ -158,8 +331,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
158
331
|
slug: string | null;
|
|
159
332
|
name: string;
|
|
160
333
|
description: string | null;
|
|
161
|
-
|
|
162
|
-
|
|
334
|
+
avatarFileId: string | null;
|
|
335
|
+
bannerFileId: string | null;
|
|
163
336
|
userId: string;
|
|
164
337
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
165
338
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -175,6 +348,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
175
348
|
membersCount: number;
|
|
176
349
|
childSpacesCount: number;
|
|
177
350
|
isMember?: boolean | undefined;
|
|
351
|
+
avatarFile?: {
|
|
352
|
+
id: string;
|
|
353
|
+
projectId: string;
|
|
354
|
+
userId: string | null;
|
|
355
|
+
entityId: string | null;
|
|
356
|
+
commentId: string | null;
|
|
357
|
+
spaceId: string | null;
|
|
358
|
+
type: "image" | "video" | "document" | "other";
|
|
359
|
+
originalPath: string;
|
|
360
|
+
originalSize: number;
|
|
361
|
+
originalMimeType: string;
|
|
362
|
+
position: number;
|
|
363
|
+
metadata: {
|
|
364
|
+
[x: string]: any;
|
|
365
|
+
};
|
|
366
|
+
image?: {
|
|
367
|
+
fileId: string;
|
|
368
|
+
originalWidth: number;
|
|
369
|
+
originalHeight: number;
|
|
370
|
+
variants: {
|
|
371
|
+
[x: string]: {
|
|
372
|
+
path: string;
|
|
373
|
+
publicPath: string;
|
|
374
|
+
width: number;
|
|
375
|
+
height: number;
|
|
376
|
+
size: number;
|
|
377
|
+
format: string;
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
processingStatus: "completed" | "failed";
|
|
381
|
+
processingError: string | null;
|
|
382
|
+
format: string;
|
|
383
|
+
quality: number;
|
|
384
|
+
exifStripped: boolean;
|
|
385
|
+
createdAt: Date;
|
|
386
|
+
updatedAt: Date;
|
|
387
|
+
} | undefined;
|
|
388
|
+
createdAt: Date;
|
|
389
|
+
updatedAt: Date;
|
|
390
|
+
} | undefined;
|
|
391
|
+
bannerFile?: {
|
|
392
|
+
id: string;
|
|
393
|
+
projectId: string;
|
|
394
|
+
userId: string | null;
|
|
395
|
+
entityId: string | null;
|
|
396
|
+
commentId: string | null;
|
|
397
|
+
spaceId: string | null;
|
|
398
|
+
type: "image" | "video" | "document" | "other";
|
|
399
|
+
originalPath: string;
|
|
400
|
+
originalSize: number;
|
|
401
|
+
originalMimeType: string;
|
|
402
|
+
position: number;
|
|
403
|
+
metadata: {
|
|
404
|
+
[x: string]: any;
|
|
405
|
+
};
|
|
406
|
+
image?: {
|
|
407
|
+
fileId: string;
|
|
408
|
+
originalWidth: number;
|
|
409
|
+
originalHeight: number;
|
|
410
|
+
variants: {
|
|
411
|
+
[x: string]: {
|
|
412
|
+
path: string;
|
|
413
|
+
publicPath: string;
|
|
414
|
+
width: number;
|
|
415
|
+
height: number;
|
|
416
|
+
size: number;
|
|
417
|
+
format: string;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
processingStatus: "completed" | "failed";
|
|
421
|
+
processingError: string | null;
|
|
422
|
+
format: string;
|
|
423
|
+
quality: number;
|
|
424
|
+
exifStripped: boolean;
|
|
425
|
+
createdAt: Date;
|
|
426
|
+
updatedAt: Date;
|
|
427
|
+
} | undefined;
|
|
428
|
+
createdAt: Date;
|
|
429
|
+
updatedAt: Date;
|
|
430
|
+
} | undefined;
|
|
178
431
|
}[];
|
|
179
432
|
page: number;
|
|
180
433
|
loading: boolean;
|
|
@@ -183,7 +436,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
183
436
|
lastFetched: number | null;
|
|
184
437
|
limit: number;
|
|
185
438
|
sortBy: SpaceListSortByOptions;
|
|
186
|
-
|
|
439
|
+
searchSlug: string | null;
|
|
440
|
+
searchName: string | null;
|
|
441
|
+
searchDescription: string | null;
|
|
442
|
+
searchAny: string | null;
|
|
187
443
|
readingPermission: "anyone" | "members" | null;
|
|
188
444
|
memberOf: boolean;
|
|
189
445
|
parentSpaceId: string | null;
|
|
@@ -203,8 +459,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
203
459
|
slug: string | null;
|
|
204
460
|
name: string;
|
|
205
461
|
description: string | null;
|
|
206
|
-
|
|
207
|
-
|
|
462
|
+
avatarFileId: string | null;
|
|
463
|
+
bannerFileId: string | null;
|
|
208
464
|
userId: string;
|
|
209
465
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
210
466
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -220,6 +476,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
220
476
|
membersCount: number;
|
|
221
477
|
childSpacesCount: number;
|
|
222
478
|
isMember?: boolean | undefined;
|
|
479
|
+
avatarFile?: {
|
|
480
|
+
id: string;
|
|
481
|
+
projectId: string;
|
|
482
|
+
userId: string | null;
|
|
483
|
+
entityId: string | null;
|
|
484
|
+
commentId: string | null;
|
|
485
|
+
spaceId: string | null;
|
|
486
|
+
type: "image" | "video" | "document" | "other";
|
|
487
|
+
originalPath: string;
|
|
488
|
+
originalSize: number;
|
|
489
|
+
originalMimeType: string;
|
|
490
|
+
position: number;
|
|
491
|
+
metadata: {
|
|
492
|
+
[x: string]: any;
|
|
493
|
+
};
|
|
494
|
+
image?: {
|
|
495
|
+
fileId: string;
|
|
496
|
+
originalWidth: number;
|
|
497
|
+
originalHeight: number;
|
|
498
|
+
variants: {
|
|
499
|
+
[x: string]: {
|
|
500
|
+
path: string;
|
|
501
|
+
publicPath: string;
|
|
502
|
+
width: number;
|
|
503
|
+
height: number;
|
|
504
|
+
size: number;
|
|
505
|
+
format: string;
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
processingStatus: "completed" | "failed";
|
|
509
|
+
processingError: string | null;
|
|
510
|
+
format: string;
|
|
511
|
+
quality: number;
|
|
512
|
+
exifStripped: boolean;
|
|
513
|
+
createdAt: Date;
|
|
514
|
+
updatedAt: Date;
|
|
515
|
+
} | undefined;
|
|
516
|
+
createdAt: Date;
|
|
517
|
+
updatedAt: Date;
|
|
518
|
+
} | undefined;
|
|
519
|
+
bannerFile?: {
|
|
520
|
+
id: string;
|
|
521
|
+
projectId: string;
|
|
522
|
+
userId: string | null;
|
|
523
|
+
entityId: string | null;
|
|
524
|
+
commentId: string | null;
|
|
525
|
+
spaceId: string | null;
|
|
526
|
+
type: "image" | "video" | "document" | "other";
|
|
527
|
+
originalPath: string;
|
|
528
|
+
originalSize: number;
|
|
529
|
+
originalMimeType: string;
|
|
530
|
+
position: number;
|
|
531
|
+
metadata: {
|
|
532
|
+
[x: string]: any;
|
|
533
|
+
};
|
|
534
|
+
image?: {
|
|
535
|
+
fileId: string;
|
|
536
|
+
originalWidth: number;
|
|
537
|
+
originalHeight: number;
|
|
538
|
+
variants: {
|
|
539
|
+
[x: string]: {
|
|
540
|
+
path: string;
|
|
541
|
+
publicPath: string;
|
|
542
|
+
width: number;
|
|
543
|
+
height: number;
|
|
544
|
+
size: number;
|
|
545
|
+
format: string;
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
processingStatus: "completed" | "failed";
|
|
549
|
+
processingError: string | null;
|
|
550
|
+
format: string;
|
|
551
|
+
quality: number;
|
|
552
|
+
exifStripped: boolean;
|
|
553
|
+
createdAt: Date;
|
|
554
|
+
updatedAt: Date;
|
|
555
|
+
} | undefined;
|
|
556
|
+
createdAt: Date;
|
|
557
|
+
updatedAt: Date;
|
|
558
|
+
} | undefined;
|
|
223
559
|
}[];
|
|
224
560
|
page: number;
|
|
225
561
|
loading: boolean;
|
|
@@ -228,7 +564,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
228
564
|
lastFetched: number | null;
|
|
229
565
|
limit: number;
|
|
230
566
|
sortBy: SpaceListSortByOptions;
|
|
231
|
-
|
|
567
|
+
searchSlug: string | null;
|
|
568
|
+
searchName: string | null;
|
|
569
|
+
searchDescription: string | null;
|
|
570
|
+
searchAny: string | null;
|
|
232
571
|
readingPermission: "anyone" | "members" | null;
|
|
233
572
|
memberOf: boolean;
|
|
234
573
|
parentSpaceId: string | null;
|
|
@@ -245,8 +584,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
245
584
|
slug: string | null;
|
|
246
585
|
name: string;
|
|
247
586
|
description: string | null;
|
|
248
|
-
|
|
249
|
-
|
|
587
|
+
avatarFileId: string | null;
|
|
588
|
+
bannerFileId: string | null;
|
|
250
589
|
userId: string;
|
|
251
590
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
252
591
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -262,6 +601,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
262
601
|
membersCount: number;
|
|
263
602
|
childSpacesCount: number;
|
|
264
603
|
isMember?: boolean | undefined;
|
|
604
|
+
avatarFile?: {
|
|
605
|
+
id: string;
|
|
606
|
+
projectId: string;
|
|
607
|
+
userId: string | null;
|
|
608
|
+
entityId: string | null;
|
|
609
|
+
commentId: string | null;
|
|
610
|
+
spaceId: string | null;
|
|
611
|
+
type: "image" | "video" | "document" | "other";
|
|
612
|
+
originalPath: string;
|
|
613
|
+
originalSize: number;
|
|
614
|
+
originalMimeType: string;
|
|
615
|
+
position: number;
|
|
616
|
+
metadata: {
|
|
617
|
+
[x: string]: any;
|
|
618
|
+
};
|
|
619
|
+
image?: {
|
|
620
|
+
fileId: string;
|
|
621
|
+
originalWidth: number;
|
|
622
|
+
originalHeight: number;
|
|
623
|
+
variants: {
|
|
624
|
+
[x: string]: {
|
|
625
|
+
path: string;
|
|
626
|
+
publicPath: string;
|
|
627
|
+
width: number;
|
|
628
|
+
height: number;
|
|
629
|
+
size: number;
|
|
630
|
+
format: string;
|
|
631
|
+
};
|
|
632
|
+
};
|
|
633
|
+
processingStatus: "completed" | "failed";
|
|
634
|
+
processingError: string | null;
|
|
635
|
+
format: string;
|
|
636
|
+
quality: number;
|
|
637
|
+
exifStripped: boolean;
|
|
638
|
+
createdAt: Date;
|
|
639
|
+
updatedAt: Date;
|
|
640
|
+
} | undefined;
|
|
641
|
+
createdAt: Date;
|
|
642
|
+
updatedAt: Date;
|
|
643
|
+
} | undefined;
|
|
644
|
+
bannerFile?: {
|
|
645
|
+
id: string;
|
|
646
|
+
projectId: string;
|
|
647
|
+
userId: string | null;
|
|
648
|
+
entityId: string | null;
|
|
649
|
+
commentId: string | null;
|
|
650
|
+
spaceId: string | null;
|
|
651
|
+
type: "image" | "video" | "document" | "other";
|
|
652
|
+
originalPath: string;
|
|
653
|
+
originalSize: number;
|
|
654
|
+
originalMimeType: string;
|
|
655
|
+
position: number;
|
|
656
|
+
metadata: {
|
|
657
|
+
[x: string]: any;
|
|
658
|
+
};
|
|
659
|
+
image?: {
|
|
660
|
+
fileId: string;
|
|
661
|
+
originalWidth: number;
|
|
662
|
+
originalHeight: number;
|
|
663
|
+
variants: {
|
|
664
|
+
[x: string]: {
|
|
665
|
+
path: string;
|
|
666
|
+
publicPath: string;
|
|
667
|
+
width: number;
|
|
668
|
+
height: number;
|
|
669
|
+
size: number;
|
|
670
|
+
format: string;
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
processingStatus: "completed" | "failed";
|
|
674
|
+
processingError: string | null;
|
|
675
|
+
format: string;
|
|
676
|
+
quality: number;
|
|
677
|
+
exifStripped: boolean;
|
|
678
|
+
createdAt: Date;
|
|
679
|
+
updatedAt: Date;
|
|
680
|
+
} | undefined;
|
|
681
|
+
createdAt: Date;
|
|
682
|
+
updatedAt: Date;
|
|
683
|
+
} | undefined;
|
|
265
684
|
}[];
|
|
266
685
|
page: number;
|
|
267
686
|
loading: boolean;
|
|
@@ -270,7 +689,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
270
689
|
lastFetched: number | null;
|
|
271
690
|
limit: number;
|
|
272
691
|
sortBy: SpaceListSortByOptions;
|
|
273
|
-
|
|
692
|
+
searchSlug: string | null;
|
|
693
|
+
searchName: string | null;
|
|
694
|
+
searchDescription: string | null;
|
|
695
|
+
searchAny: string | null;
|
|
274
696
|
readingPermission: "anyone" | "members" | null;
|
|
275
697
|
memberOf: boolean;
|
|
276
698
|
parentSpaceId: string | null;
|
|
@@ -287,8 +709,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
287
709
|
slug: string | null;
|
|
288
710
|
name: string;
|
|
289
711
|
description: string | null;
|
|
290
|
-
|
|
291
|
-
|
|
712
|
+
avatarFileId: string | null;
|
|
713
|
+
bannerFileId: string | null;
|
|
292
714
|
userId: string;
|
|
293
715
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
294
716
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -304,6 +726,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
304
726
|
membersCount: number;
|
|
305
727
|
childSpacesCount: number;
|
|
306
728
|
isMember?: boolean | undefined;
|
|
729
|
+
avatarFile?: {
|
|
730
|
+
id: string;
|
|
731
|
+
projectId: string;
|
|
732
|
+
userId: string | null;
|
|
733
|
+
entityId: string | null;
|
|
734
|
+
commentId: string | null;
|
|
735
|
+
spaceId: string | null;
|
|
736
|
+
type: "image" | "video" | "document" | "other";
|
|
737
|
+
originalPath: string;
|
|
738
|
+
originalSize: number;
|
|
739
|
+
originalMimeType: string;
|
|
740
|
+
position: number;
|
|
741
|
+
metadata: {
|
|
742
|
+
[x: string]: any;
|
|
743
|
+
};
|
|
744
|
+
image?: {
|
|
745
|
+
fileId: string;
|
|
746
|
+
originalWidth: number;
|
|
747
|
+
originalHeight: number;
|
|
748
|
+
variants: {
|
|
749
|
+
[x: string]: {
|
|
750
|
+
path: string;
|
|
751
|
+
publicPath: string;
|
|
752
|
+
width: number;
|
|
753
|
+
height: number;
|
|
754
|
+
size: number;
|
|
755
|
+
format: string;
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
processingStatus: "completed" | "failed";
|
|
759
|
+
processingError: string | null;
|
|
760
|
+
format: string;
|
|
761
|
+
quality: number;
|
|
762
|
+
exifStripped: boolean;
|
|
763
|
+
createdAt: Date;
|
|
764
|
+
updatedAt: Date;
|
|
765
|
+
} | undefined;
|
|
766
|
+
createdAt: Date;
|
|
767
|
+
updatedAt: Date;
|
|
768
|
+
} | undefined;
|
|
769
|
+
bannerFile?: {
|
|
770
|
+
id: string;
|
|
771
|
+
projectId: string;
|
|
772
|
+
userId: string | null;
|
|
773
|
+
entityId: string | null;
|
|
774
|
+
commentId: string | null;
|
|
775
|
+
spaceId: string | null;
|
|
776
|
+
type: "image" | "video" | "document" | "other";
|
|
777
|
+
originalPath: string;
|
|
778
|
+
originalSize: number;
|
|
779
|
+
originalMimeType: string;
|
|
780
|
+
position: number;
|
|
781
|
+
metadata: {
|
|
782
|
+
[x: string]: any;
|
|
783
|
+
};
|
|
784
|
+
image?: {
|
|
785
|
+
fileId: string;
|
|
786
|
+
originalWidth: number;
|
|
787
|
+
originalHeight: number;
|
|
788
|
+
variants: {
|
|
789
|
+
[x: string]: {
|
|
790
|
+
path: string;
|
|
791
|
+
publicPath: string;
|
|
792
|
+
width: number;
|
|
793
|
+
height: number;
|
|
794
|
+
size: number;
|
|
795
|
+
format: string;
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
processingStatus: "completed" | "failed";
|
|
799
|
+
processingError: string | null;
|
|
800
|
+
format: string;
|
|
801
|
+
quality: number;
|
|
802
|
+
exifStripped: boolean;
|
|
803
|
+
createdAt: Date;
|
|
804
|
+
updatedAt: Date;
|
|
805
|
+
} | undefined;
|
|
806
|
+
createdAt: Date;
|
|
807
|
+
updatedAt: Date;
|
|
808
|
+
} | undefined;
|
|
307
809
|
}[];
|
|
308
810
|
page: number;
|
|
309
811
|
loading: boolean;
|
|
@@ -312,7 +814,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
312
814
|
lastFetched: number | null;
|
|
313
815
|
limit: number;
|
|
314
816
|
sortBy: SpaceListSortByOptions;
|
|
315
|
-
|
|
817
|
+
searchSlug: string | null;
|
|
818
|
+
searchName: string | null;
|
|
819
|
+
searchDescription: string | null;
|
|
820
|
+
searchAny: string | null;
|
|
316
821
|
readingPermission: "anyone" | "members" | null;
|
|
317
822
|
memberOf: boolean;
|
|
318
823
|
parentSpaceId: string | null;
|
|
@@ -332,8 +837,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
332
837
|
slug: string | null;
|
|
333
838
|
name: string;
|
|
334
839
|
description: string | null;
|
|
335
|
-
|
|
336
|
-
|
|
840
|
+
avatarFileId: string | null;
|
|
841
|
+
bannerFileId: string | null;
|
|
337
842
|
userId: string;
|
|
338
843
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
339
844
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -349,6 +854,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
349
854
|
membersCount: number;
|
|
350
855
|
childSpacesCount: number;
|
|
351
856
|
isMember?: boolean | undefined;
|
|
857
|
+
avatarFile?: {
|
|
858
|
+
id: string;
|
|
859
|
+
projectId: string;
|
|
860
|
+
userId: string | null;
|
|
861
|
+
entityId: string | null;
|
|
862
|
+
commentId: string | null;
|
|
863
|
+
spaceId: string | null;
|
|
864
|
+
type: "image" | "video" | "document" | "other";
|
|
865
|
+
originalPath: string;
|
|
866
|
+
originalSize: number;
|
|
867
|
+
originalMimeType: string;
|
|
868
|
+
position: number;
|
|
869
|
+
metadata: {
|
|
870
|
+
[x: string]: any;
|
|
871
|
+
};
|
|
872
|
+
image?: {
|
|
873
|
+
fileId: string;
|
|
874
|
+
originalWidth: number;
|
|
875
|
+
originalHeight: number;
|
|
876
|
+
variants: {
|
|
877
|
+
[x: string]: {
|
|
878
|
+
path: string;
|
|
879
|
+
publicPath: string;
|
|
880
|
+
width: number;
|
|
881
|
+
height: number;
|
|
882
|
+
size: number;
|
|
883
|
+
format: string;
|
|
884
|
+
};
|
|
885
|
+
};
|
|
886
|
+
processingStatus: "completed" | "failed";
|
|
887
|
+
processingError: string | null;
|
|
888
|
+
format: string;
|
|
889
|
+
quality: number;
|
|
890
|
+
exifStripped: boolean;
|
|
891
|
+
createdAt: Date;
|
|
892
|
+
updatedAt: Date;
|
|
893
|
+
} | undefined;
|
|
894
|
+
createdAt: Date;
|
|
895
|
+
updatedAt: Date;
|
|
896
|
+
} | undefined;
|
|
897
|
+
bannerFile?: {
|
|
898
|
+
id: string;
|
|
899
|
+
projectId: string;
|
|
900
|
+
userId: string | null;
|
|
901
|
+
entityId: string | null;
|
|
902
|
+
commentId: string | null;
|
|
903
|
+
spaceId: string | null;
|
|
904
|
+
type: "image" | "video" | "document" | "other";
|
|
905
|
+
originalPath: string;
|
|
906
|
+
originalSize: number;
|
|
907
|
+
originalMimeType: string;
|
|
908
|
+
position: number;
|
|
909
|
+
metadata: {
|
|
910
|
+
[x: string]: any;
|
|
911
|
+
};
|
|
912
|
+
image?: {
|
|
913
|
+
fileId: string;
|
|
914
|
+
originalWidth: number;
|
|
915
|
+
originalHeight: number;
|
|
916
|
+
variants: {
|
|
917
|
+
[x: string]: {
|
|
918
|
+
path: string;
|
|
919
|
+
publicPath: string;
|
|
920
|
+
width: number;
|
|
921
|
+
height: number;
|
|
922
|
+
size: number;
|
|
923
|
+
format: string;
|
|
924
|
+
};
|
|
925
|
+
};
|
|
926
|
+
processingStatus: "completed" | "failed";
|
|
927
|
+
processingError: string | null;
|
|
928
|
+
format: string;
|
|
929
|
+
quality: number;
|
|
930
|
+
exifStripped: boolean;
|
|
931
|
+
createdAt: Date;
|
|
932
|
+
updatedAt: Date;
|
|
933
|
+
} | undefined;
|
|
934
|
+
createdAt: Date;
|
|
935
|
+
updatedAt: Date;
|
|
936
|
+
} | undefined;
|
|
352
937
|
}[];
|
|
353
938
|
page: number;
|
|
354
939
|
loading: boolean;
|
|
@@ -357,7 +942,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
357
942
|
lastFetched: number | null;
|
|
358
943
|
limit: number;
|
|
359
944
|
sortBy: SpaceListSortByOptions;
|
|
360
|
-
|
|
945
|
+
searchSlug: string | null;
|
|
946
|
+
searchName: string | null;
|
|
947
|
+
searchDescription: string | null;
|
|
948
|
+
searchAny: string | null;
|
|
361
949
|
readingPermission: "anyone" | "members" | null;
|
|
362
950
|
memberOf: boolean;
|
|
363
951
|
parentSpaceId: string | null;
|
|
@@ -377,8 +965,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
377
965
|
slug: string | null;
|
|
378
966
|
name: string;
|
|
379
967
|
description: string | null;
|
|
380
|
-
|
|
381
|
-
|
|
968
|
+
avatarFileId: string | null;
|
|
969
|
+
bannerFileId: string | null;
|
|
382
970
|
userId: string;
|
|
383
971
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
384
972
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -394,6 +982,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
394
982
|
membersCount: number;
|
|
395
983
|
childSpacesCount: number;
|
|
396
984
|
isMember?: boolean | undefined;
|
|
985
|
+
avatarFile?: {
|
|
986
|
+
id: string;
|
|
987
|
+
projectId: string;
|
|
988
|
+
userId: string | null;
|
|
989
|
+
entityId: string | null;
|
|
990
|
+
commentId: string | null;
|
|
991
|
+
spaceId: string | null;
|
|
992
|
+
type: "image" | "video" | "document" | "other";
|
|
993
|
+
originalPath: string;
|
|
994
|
+
originalSize: number;
|
|
995
|
+
originalMimeType: string;
|
|
996
|
+
position: number;
|
|
997
|
+
metadata: {
|
|
998
|
+
[x: string]: any;
|
|
999
|
+
};
|
|
1000
|
+
image?: {
|
|
1001
|
+
fileId: string;
|
|
1002
|
+
originalWidth: number;
|
|
1003
|
+
originalHeight: number;
|
|
1004
|
+
variants: {
|
|
1005
|
+
[x: string]: {
|
|
1006
|
+
path: string;
|
|
1007
|
+
publicPath: string;
|
|
1008
|
+
width: number;
|
|
1009
|
+
height: number;
|
|
1010
|
+
size: number;
|
|
1011
|
+
format: string;
|
|
1012
|
+
};
|
|
1013
|
+
};
|
|
1014
|
+
processingStatus: "completed" | "failed";
|
|
1015
|
+
processingError: string | null;
|
|
1016
|
+
format: string;
|
|
1017
|
+
quality: number;
|
|
1018
|
+
exifStripped: boolean;
|
|
1019
|
+
createdAt: Date;
|
|
1020
|
+
updatedAt: Date;
|
|
1021
|
+
} | undefined;
|
|
1022
|
+
createdAt: Date;
|
|
1023
|
+
updatedAt: Date;
|
|
1024
|
+
} | undefined;
|
|
1025
|
+
bannerFile?: {
|
|
1026
|
+
id: string;
|
|
1027
|
+
projectId: string;
|
|
1028
|
+
userId: string | null;
|
|
1029
|
+
entityId: string | null;
|
|
1030
|
+
commentId: string | null;
|
|
1031
|
+
spaceId: string | null;
|
|
1032
|
+
type: "image" | "video" | "document" | "other";
|
|
1033
|
+
originalPath: string;
|
|
1034
|
+
originalSize: number;
|
|
1035
|
+
originalMimeType: string;
|
|
1036
|
+
position: number;
|
|
1037
|
+
metadata: {
|
|
1038
|
+
[x: string]: any;
|
|
1039
|
+
};
|
|
1040
|
+
image?: {
|
|
1041
|
+
fileId: string;
|
|
1042
|
+
originalWidth: number;
|
|
1043
|
+
originalHeight: number;
|
|
1044
|
+
variants: {
|
|
1045
|
+
[x: string]: {
|
|
1046
|
+
path: string;
|
|
1047
|
+
publicPath: string;
|
|
1048
|
+
width: number;
|
|
1049
|
+
height: number;
|
|
1050
|
+
size: number;
|
|
1051
|
+
format: string;
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
1054
|
+
processingStatus: "completed" | "failed";
|
|
1055
|
+
processingError: string | null;
|
|
1056
|
+
format: string;
|
|
1057
|
+
quality: number;
|
|
1058
|
+
exifStripped: boolean;
|
|
1059
|
+
createdAt: Date;
|
|
1060
|
+
updatedAt: Date;
|
|
1061
|
+
} | undefined;
|
|
1062
|
+
createdAt: Date;
|
|
1063
|
+
updatedAt: Date;
|
|
1064
|
+
} | undefined;
|
|
397
1065
|
}[];
|
|
398
1066
|
page: number;
|
|
399
1067
|
loading: boolean;
|
|
@@ -402,7 +1070,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
402
1070
|
lastFetched: number | null;
|
|
403
1071
|
limit: number;
|
|
404
1072
|
sortBy: SpaceListSortByOptions;
|
|
405
|
-
|
|
1073
|
+
searchSlug: string | null;
|
|
1074
|
+
searchName: string | null;
|
|
1075
|
+
searchDescription: string | null;
|
|
1076
|
+
searchAny: string | null;
|
|
406
1077
|
readingPermission: "anyone" | "members" | null;
|
|
407
1078
|
memberOf: boolean;
|
|
408
1079
|
parentSpaceId: string | null;
|
|
@@ -419,8 +1090,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
419
1090
|
slug: string | null;
|
|
420
1091
|
name: string;
|
|
421
1092
|
description: string | null;
|
|
422
|
-
|
|
423
|
-
|
|
1093
|
+
avatarFileId: string | null;
|
|
1094
|
+
bannerFileId: string | null;
|
|
424
1095
|
userId: string;
|
|
425
1096
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
426
1097
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -436,6 +1107,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
436
1107
|
membersCount: number;
|
|
437
1108
|
childSpacesCount: number;
|
|
438
1109
|
isMember?: boolean | undefined;
|
|
1110
|
+
avatarFile?: {
|
|
1111
|
+
id: string;
|
|
1112
|
+
projectId: string;
|
|
1113
|
+
userId: string | null;
|
|
1114
|
+
entityId: string | null;
|
|
1115
|
+
commentId: string | null;
|
|
1116
|
+
spaceId: string | null;
|
|
1117
|
+
type: "image" | "video" | "document" | "other";
|
|
1118
|
+
originalPath: string;
|
|
1119
|
+
originalSize: number;
|
|
1120
|
+
originalMimeType: string;
|
|
1121
|
+
position: number;
|
|
1122
|
+
metadata: {
|
|
1123
|
+
[x: string]: any;
|
|
1124
|
+
};
|
|
1125
|
+
image?: {
|
|
1126
|
+
fileId: string;
|
|
1127
|
+
originalWidth: number;
|
|
1128
|
+
originalHeight: number;
|
|
1129
|
+
variants: {
|
|
1130
|
+
[x: string]: {
|
|
1131
|
+
path: string;
|
|
1132
|
+
publicPath: string;
|
|
1133
|
+
width: number;
|
|
1134
|
+
height: number;
|
|
1135
|
+
size: number;
|
|
1136
|
+
format: string;
|
|
1137
|
+
};
|
|
1138
|
+
};
|
|
1139
|
+
processingStatus: "completed" | "failed";
|
|
1140
|
+
processingError: string | null;
|
|
1141
|
+
format: string;
|
|
1142
|
+
quality: number;
|
|
1143
|
+
exifStripped: boolean;
|
|
1144
|
+
createdAt: Date;
|
|
1145
|
+
updatedAt: Date;
|
|
1146
|
+
} | undefined;
|
|
1147
|
+
createdAt: Date;
|
|
1148
|
+
updatedAt: Date;
|
|
1149
|
+
} | undefined;
|
|
1150
|
+
bannerFile?: {
|
|
1151
|
+
id: string;
|
|
1152
|
+
projectId: string;
|
|
1153
|
+
userId: string | null;
|
|
1154
|
+
entityId: string | null;
|
|
1155
|
+
commentId: string | null;
|
|
1156
|
+
spaceId: string | null;
|
|
1157
|
+
type: "image" | "video" | "document" | "other";
|
|
1158
|
+
originalPath: string;
|
|
1159
|
+
originalSize: number;
|
|
1160
|
+
originalMimeType: string;
|
|
1161
|
+
position: number;
|
|
1162
|
+
metadata: {
|
|
1163
|
+
[x: string]: any;
|
|
1164
|
+
};
|
|
1165
|
+
image?: {
|
|
1166
|
+
fileId: string;
|
|
1167
|
+
originalWidth: number;
|
|
1168
|
+
originalHeight: number;
|
|
1169
|
+
variants: {
|
|
1170
|
+
[x: string]: {
|
|
1171
|
+
path: string;
|
|
1172
|
+
publicPath: string;
|
|
1173
|
+
width: number;
|
|
1174
|
+
height: number;
|
|
1175
|
+
size: number;
|
|
1176
|
+
format: string;
|
|
1177
|
+
};
|
|
1178
|
+
};
|
|
1179
|
+
processingStatus: "completed" | "failed";
|
|
1180
|
+
processingError: string | null;
|
|
1181
|
+
format: string;
|
|
1182
|
+
quality: number;
|
|
1183
|
+
exifStripped: boolean;
|
|
1184
|
+
createdAt: Date;
|
|
1185
|
+
updatedAt: Date;
|
|
1186
|
+
} | undefined;
|
|
1187
|
+
createdAt: Date;
|
|
1188
|
+
updatedAt: Date;
|
|
1189
|
+
} | undefined;
|
|
439
1190
|
}[];
|
|
440
1191
|
page: number;
|
|
441
1192
|
loading: boolean;
|
|
@@ -444,7 +1195,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
444
1195
|
lastFetched: number | null;
|
|
445
1196
|
limit: number;
|
|
446
1197
|
sortBy: SpaceListSortByOptions;
|
|
447
|
-
|
|
1198
|
+
searchSlug: string | null;
|
|
1199
|
+
searchName: string | null;
|
|
1200
|
+
searchDescription: string | null;
|
|
1201
|
+
searchAny: string | null;
|
|
448
1202
|
readingPermission: "anyone" | "members" | null;
|
|
449
1203
|
memberOf: boolean;
|
|
450
1204
|
parentSpaceId: string | null;
|
|
@@ -461,8 +1215,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
461
1215
|
slug: string | null;
|
|
462
1216
|
name: string;
|
|
463
1217
|
description: string | null;
|
|
464
|
-
|
|
465
|
-
|
|
1218
|
+
avatarFileId: string | null;
|
|
1219
|
+
bannerFileId: string | null;
|
|
466
1220
|
userId: string;
|
|
467
1221
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
468
1222
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -478,6 +1232,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
478
1232
|
membersCount: number;
|
|
479
1233
|
childSpacesCount: number;
|
|
480
1234
|
isMember?: boolean | undefined;
|
|
1235
|
+
avatarFile?: {
|
|
1236
|
+
id: string;
|
|
1237
|
+
projectId: string;
|
|
1238
|
+
userId: string | null;
|
|
1239
|
+
entityId: string | null;
|
|
1240
|
+
commentId: string | null;
|
|
1241
|
+
spaceId: string | null;
|
|
1242
|
+
type: "image" | "video" | "document" | "other";
|
|
1243
|
+
originalPath: string;
|
|
1244
|
+
originalSize: number;
|
|
1245
|
+
originalMimeType: string;
|
|
1246
|
+
position: number;
|
|
1247
|
+
metadata: {
|
|
1248
|
+
[x: string]: any;
|
|
1249
|
+
};
|
|
1250
|
+
image?: {
|
|
1251
|
+
fileId: string;
|
|
1252
|
+
originalWidth: number;
|
|
1253
|
+
originalHeight: number;
|
|
1254
|
+
variants: {
|
|
1255
|
+
[x: string]: {
|
|
1256
|
+
path: string;
|
|
1257
|
+
publicPath: string;
|
|
1258
|
+
width: number;
|
|
1259
|
+
height: number;
|
|
1260
|
+
size: number;
|
|
1261
|
+
format: string;
|
|
1262
|
+
};
|
|
1263
|
+
};
|
|
1264
|
+
processingStatus: "completed" | "failed";
|
|
1265
|
+
processingError: string | null;
|
|
1266
|
+
format: string;
|
|
1267
|
+
quality: number;
|
|
1268
|
+
exifStripped: boolean;
|
|
1269
|
+
createdAt: Date;
|
|
1270
|
+
updatedAt: Date;
|
|
1271
|
+
} | undefined;
|
|
1272
|
+
createdAt: Date;
|
|
1273
|
+
updatedAt: Date;
|
|
1274
|
+
} | undefined;
|
|
1275
|
+
bannerFile?: {
|
|
1276
|
+
id: string;
|
|
1277
|
+
projectId: string;
|
|
1278
|
+
userId: string | null;
|
|
1279
|
+
entityId: string | null;
|
|
1280
|
+
commentId: string | null;
|
|
1281
|
+
spaceId: string | null;
|
|
1282
|
+
type: "image" | "video" | "document" | "other";
|
|
1283
|
+
originalPath: string;
|
|
1284
|
+
originalSize: number;
|
|
1285
|
+
originalMimeType: string;
|
|
1286
|
+
position: number;
|
|
1287
|
+
metadata: {
|
|
1288
|
+
[x: string]: any;
|
|
1289
|
+
};
|
|
1290
|
+
image?: {
|
|
1291
|
+
fileId: string;
|
|
1292
|
+
originalWidth: number;
|
|
1293
|
+
originalHeight: number;
|
|
1294
|
+
variants: {
|
|
1295
|
+
[x: string]: {
|
|
1296
|
+
path: string;
|
|
1297
|
+
publicPath: string;
|
|
1298
|
+
width: number;
|
|
1299
|
+
height: number;
|
|
1300
|
+
size: number;
|
|
1301
|
+
format: string;
|
|
1302
|
+
};
|
|
1303
|
+
};
|
|
1304
|
+
processingStatus: "completed" | "failed";
|
|
1305
|
+
processingError: string | null;
|
|
1306
|
+
format: string;
|
|
1307
|
+
quality: number;
|
|
1308
|
+
exifStripped: boolean;
|
|
1309
|
+
createdAt: Date;
|
|
1310
|
+
updatedAt: Date;
|
|
1311
|
+
} | undefined;
|
|
1312
|
+
createdAt: Date;
|
|
1313
|
+
updatedAt: Date;
|
|
1314
|
+
} | undefined;
|
|
481
1315
|
}[];
|
|
482
1316
|
page: number;
|
|
483
1317
|
loading: boolean;
|
|
@@ -486,7 +1320,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
486
1320
|
lastFetched: number | null;
|
|
487
1321
|
limit: number;
|
|
488
1322
|
sortBy: SpaceListSortByOptions;
|
|
489
|
-
|
|
1323
|
+
searchSlug: string | null;
|
|
1324
|
+
searchName: string | null;
|
|
1325
|
+
searchDescription: string | null;
|
|
1326
|
+
searchAny: string | null;
|
|
490
1327
|
readingPermission: "anyone" | "members" | null;
|
|
491
1328
|
memberOf: boolean;
|
|
492
1329
|
parentSpaceId: string | null;
|
|
@@ -503,8 +1340,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
503
1340
|
slug: string | null;
|
|
504
1341
|
name: string;
|
|
505
1342
|
description: string | null;
|
|
506
|
-
|
|
507
|
-
|
|
1343
|
+
avatarFileId: string | null;
|
|
1344
|
+
bannerFileId: string | null;
|
|
508
1345
|
userId: string;
|
|
509
1346
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
510
1347
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -520,6 +1357,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
520
1357
|
membersCount: number;
|
|
521
1358
|
childSpacesCount: number;
|
|
522
1359
|
isMember?: boolean | undefined;
|
|
1360
|
+
avatarFile?: {
|
|
1361
|
+
id: string;
|
|
1362
|
+
projectId: string;
|
|
1363
|
+
userId: string | null;
|
|
1364
|
+
entityId: string | null;
|
|
1365
|
+
commentId: string | null;
|
|
1366
|
+
spaceId: string | null;
|
|
1367
|
+
type: "image" | "video" | "document" | "other";
|
|
1368
|
+
originalPath: string;
|
|
1369
|
+
originalSize: number;
|
|
1370
|
+
originalMimeType: string;
|
|
1371
|
+
position: number;
|
|
1372
|
+
metadata: {
|
|
1373
|
+
[x: string]: any;
|
|
1374
|
+
};
|
|
1375
|
+
image?: {
|
|
1376
|
+
fileId: string;
|
|
1377
|
+
originalWidth: number;
|
|
1378
|
+
originalHeight: number;
|
|
1379
|
+
variants: {
|
|
1380
|
+
[x: string]: {
|
|
1381
|
+
path: string;
|
|
1382
|
+
publicPath: string;
|
|
1383
|
+
width: number;
|
|
1384
|
+
height: number;
|
|
1385
|
+
size: number;
|
|
1386
|
+
format: string;
|
|
1387
|
+
};
|
|
1388
|
+
};
|
|
1389
|
+
processingStatus: "completed" | "failed";
|
|
1390
|
+
processingError: string | null;
|
|
1391
|
+
format: string;
|
|
1392
|
+
quality: number;
|
|
1393
|
+
exifStripped: boolean;
|
|
1394
|
+
createdAt: Date;
|
|
1395
|
+
updatedAt: Date;
|
|
1396
|
+
} | undefined;
|
|
1397
|
+
createdAt: Date;
|
|
1398
|
+
updatedAt: Date;
|
|
1399
|
+
} | undefined;
|
|
1400
|
+
bannerFile?: {
|
|
1401
|
+
id: string;
|
|
1402
|
+
projectId: string;
|
|
1403
|
+
userId: string | null;
|
|
1404
|
+
entityId: string | null;
|
|
1405
|
+
commentId: string | null;
|
|
1406
|
+
spaceId: string | null;
|
|
1407
|
+
type: "image" | "video" | "document" | "other";
|
|
1408
|
+
originalPath: string;
|
|
1409
|
+
originalSize: number;
|
|
1410
|
+
originalMimeType: string;
|
|
1411
|
+
position: number;
|
|
1412
|
+
metadata: {
|
|
1413
|
+
[x: string]: any;
|
|
1414
|
+
};
|
|
1415
|
+
image?: {
|
|
1416
|
+
fileId: string;
|
|
1417
|
+
originalWidth: number;
|
|
1418
|
+
originalHeight: number;
|
|
1419
|
+
variants: {
|
|
1420
|
+
[x: string]: {
|
|
1421
|
+
path: string;
|
|
1422
|
+
publicPath: string;
|
|
1423
|
+
width: number;
|
|
1424
|
+
height: number;
|
|
1425
|
+
size: number;
|
|
1426
|
+
format: string;
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
processingStatus: "completed" | "failed";
|
|
1430
|
+
processingError: string | null;
|
|
1431
|
+
format: string;
|
|
1432
|
+
quality: number;
|
|
1433
|
+
exifStripped: boolean;
|
|
1434
|
+
createdAt: Date;
|
|
1435
|
+
updatedAt: Date;
|
|
1436
|
+
} | undefined;
|
|
1437
|
+
createdAt: Date;
|
|
1438
|
+
updatedAt: Date;
|
|
1439
|
+
} | undefined;
|
|
523
1440
|
}[];
|
|
524
1441
|
page: number;
|
|
525
1442
|
loading: boolean;
|
|
@@ -528,7 +1445,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
528
1445
|
lastFetched: number | null;
|
|
529
1446
|
limit: number;
|
|
530
1447
|
sortBy: SpaceListSortByOptions;
|
|
531
|
-
|
|
1448
|
+
searchSlug: string | null;
|
|
1449
|
+
searchName: string | null;
|
|
1450
|
+
searchDescription: string | null;
|
|
1451
|
+
searchAny: string | null;
|
|
532
1452
|
readingPermission: "anyone" | "members" | null;
|
|
533
1453
|
memberOf: boolean;
|
|
534
1454
|
parentSpaceId: string | null;
|
|
@@ -545,8 +1465,8 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
545
1465
|
slug: string | null;
|
|
546
1466
|
name: string;
|
|
547
1467
|
description: string | null;
|
|
548
|
-
|
|
549
|
-
|
|
1468
|
+
avatarFileId: string | null;
|
|
1469
|
+
bannerFileId: string | null;
|
|
550
1470
|
userId: string;
|
|
551
1471
|
readingPermission: import("../../interfaces/models/Space").ReadingPermission;
|
|
552
1472
|
postingPermission: import("../../interfaces/models/Space").PostingPermission;
|
|
@@ -562,6 +1482,86 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
562
1482
|
membersCount: number;
|
|
563
1483
|
childSpacesCount: number;
|
|
564
1484
|
isMember?: boolean | undefined;
|
|
1485
|
+
avatarFile?: {
|
|
1486
|
+
id: string;
|
|
1487
|
+
projectId: string;
|
|
1488
|
+
userId: string | null;
|
|
1489
|
+
entityId: string | null;
|
|
1490
|
+
commentId: string | null;
|
|
1491
|
+
spaceId: string | null;
|
|
1492
|
+
type: "image" | "video" | "document" | "other";
|
|
1493
|
+
originalPath: string;
|
|
1494
|
+
originalSize: number;
|
|
1495
|
+
originalMimeType: string;
|
|
1496
|
+
position: number;
|
|
1497
|
+
metadata: {
|
|
1498
|
+
[x: string]: any;
|
|
1499
|
+
};
|
|
1500
|
+
image?: {
|
|
1501
|
+
fileId: string;
|
|
1502
|
+
originalWidth: number;
|
|
1503
|
+
originalHeight: number;
|
|
1504
|
+
variants: {
|
|
1505
|
+
[x: string]: {
|
|
1506
|
+
path: string;
|
|
1507
|
+
publicPath: string;
|
|
1508
|
+
width: number;
|
|
1509
|
+
height: number;
|
|
1510
|
+
size: number;
|
|
1511
|
+
format: string;
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1514
|
+
processingStatus: "completed" | "failed";
|
|
1515
|
+
processingError: string | null;
|
|
1516
|
+
format: string;
|
|
1517
|
+
quality: number;
|
|
1518
|
+
exifStripped: boolean;
|
|
1519
|
+
createdAt: Date;
|
|
1520
|
+
updatedAt: Date;
|
|
1521
|
+
} | undefined;
|
|
1522
|
+
createdAt: Date;
|
|
1523
|
+
updatedAt: Date;
|
|
1524
|
+
} | undefined;
|
|
1525
|
+
bannerFile?: {
|
|
1526
|
+
id: string;
|
|
1527
|
+
projectId: string;
|
|
1528
|
+
userId: string | null;
|
|
1529
|
+
entityId: string | null;
|
|
1530
|
+
commentId: string | null;
|
|
1531
|
+
spaceId: string | null;
|
|
1532
|
+
type: "image" | "video" | "document" | "other";
|
|
1533
|
+
originalPath: string;
|
|
1534
|
+
originalSize: number;
|
|
1535
|
+
originalMimeType: string;
|
|
1536
|
+
position: number;
|
|
1537
|
+
metadata: {
|
|
1538
|
+
[x: string]: any;
|
|
1539
|
+
};
|
|
1540
|
+
image?: {
|
|
1541
|
+
fileId: string;
|
|
1542
|
+
originalWidth: number;
|
|
1543
|
+
originalHeight: number;
|
|
1544
|
+
variants: {
|
|
1545
|
+
[x: string]: {
|
|
1546
|
+
path: string;
|
|
1547
|
+
publicPath: string;
|
|
1548
|
+
width: number;
|
|
1549
|
+
height: number;
|
|
1550
|
+
size: number;
|
|
1551
|
+
format: string;
|
|
1552
|
+
};
|
|
1553
|
+
};
|
|
1554
|
+
processingStatus: "completed" | "failed";
|
|
1555
|
+
processingError: string | null;
|
|
1556
|
+
format: string;
|
|
1557
|
+
quality: number;
|
|
1558
|
+
exifStripped: boolean;
|
|
1559
|
+
createdAt: Date;
|
|
1560
|
+
updatedAt: Date;
|
|
1561
|
+
} | undefined;
|
|
1562
|
+
createdAt: Date;
|
|
1563
|
+
updatedAt: Date;
|
|
1564
|
+
} | undefined;
|
|
565
1565
|
}[];
|
|
566
1566
|
page: number;
|
|
567
1567
|
loading: boolean;
|
|
@@ -570,7 +1570,10 @@ export declare const spaceListsSlice: import("@reduxjs/toolkit").Slice<SpaceList
|
|
|
570
1570
|
lastFetched: number | null;
|
|
571
1571
|
limit: number;
|
|
572
1572
|
sortBy: SpaceListSortByOptions;
|
|
573
|
-
|
|
1573
|
+
searchSlug: string | null;
|
|
1574
|
+
searchName: string | null;
|
|
1575
|
+
searchDescription: string | null;
|
|
1576
|
+
searchAny: string | null;
|
|
574
1577
|
readingPermission: "anyone" | "members" | null;
|
|
575
1578
|
memberOf: boolean;
|
|
576
1579
|
parentSpaceId: string | null;
|
|
@@ -588,7 +1591,11 @@ export declare const initializeList: import("@reduxjs/toolkit").ActionCreatorWit
|
|
|
588
1591
|
listId: string;
|
|
589
1592
|
error: string | null;
|
|
590
1593
|
}, "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:
|
|
1594
|
+
export declare const selectSpaceList: ((state: {
|
|
1595
|
+
replyke: ReplykeState;
|
|
1596
|
+
} & {
|
|
1597
|
+
replyke: ReplykeState;
|
|
1598
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
592
1599
|
clearCache: () => void;
|
|
593
1600
|
resultsCount: () => number;
|
|
594
1601
|
resetResultsCount: () => void;
|
|
@@ -601,8 +1608,10 @@ export declare const selectSpaceList: ((state: any, listId: string) => SpaceList
|
|
|
601
1608
|
};
|
|
602
1609
|
lastResult: () => SpaceListState | undefined;
|
|
603
1610
|
dependencies: [(state: {
|
|
604
|
-
|
|
605
|
-
}) => SpaceListsState, (_:
|
|
1611
|
+
replyke: ReplykeState;
|
|
1612
|
+
}) => SpaceListsState, (_: {
|
|
1613
|
+
replyke: ReplykeState;
|
|
1614
|
+
}, listId: string) => string];
|
|
606
1615
|
recomputations: () => number;
|
|
607
1616
|
resetRecomputations: () => void;
|
|
608
1617
|
dependencyRecomputations: () => number;
|
|
@@ -611,7 +1620,11 @@ export declare const selectSpaceList: ((state: any, listId: string) => SpaceList
|
|
|
611
1620
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
612
1621
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
613
1622
|
};
|
|
614
|
-
export declare const selectSpaceListSpaces: ((state:
|
|
1623
|
+
export declare const selectSpaceListSpaces: ((state: {
|
|
1624
|
+
replyke: ReplykeState;
|
|
1625
|
+
} & {
|
|
1626
|
+
replyke: ReplykeState;
|
|
1627
|
+
}, listId: string) => Space[]) & {
|
|
615
1628
|
clearCache: () => void;
|
|
616
1629
|
resultsCount: () => number;
|
|
617
1630
|
resetResultsCount: () => void;
|
|
@@ -623,7 +1636,11 @@ export declare const selectSpaceListSpaces: ((state: any, listId: string) => Spa
|
|
|
623
1636
|
resetResultsCount: () => void;
|
|
624
1637
|
};
|
|
625
1638
|
lastResult: () => Space[];
|
|
626
|
-
dependencies: [((state:
|
|
1639
|
+
dependencies: [((state: {
|
|
1640
|
+
replyke: ReplykeState;
|
|
1641
|
+
} & {
|
|
1642
|
+
replyke: ReplykeState;
|
|
1643
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
627
1644
|
clearCache: () => void;
|
|
628
1645
|
resultsCount: () => number;
|
|
629
1646
|
resetResultsCount: () => void;
|
|
@@ -636,8 +1653,10 @@ export declare const selectSpaceListSpaces: ((state: any, listId: string) => Spa
|
|
|
636
1653
|
};
|
|
637
1654
|
lastResult: () => SpaceListState | undefined;
|
|
638
1655
|
dependencies: [(state: {
|
|
639
|
-
|
|
640
|
-
}) => SpaceListsState, (_:
|
|
1656
|
+
replyke: ReplykeState;
|
|
1657
|
+
}) => SpaceListsState, (_: {
|
|
1658
|
+
replyke: ReplykeState;
|
|
1659
|
+
}, listId: string) => string];
|
|
641
1660
|
recomputations: () => number;
|
|
642
1661
|
resetRecomputations: () => void;
|
|
643
1662
|
dependencyRecomputations: () => number;
|
|
@@ -654,7 +1673,11 @@ export declare const selectSpaceListSpaces: ((state: any, listId: string) => Spa
|
|
|
654
1673
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
655
1674
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
656
1675
|
};
|
|
657
|
-
export declare const selectSpaceListLoading: ((state:
|
|
1676
|
+
export declare const selectSpaceListLoading: ((state: {
|
|
1677
|
+
replyke: ReplykeState;
|
|
1678
|
+
} & {
|
|
1679
|
+
replyke: ReplykeState;
|
|
1680
|
+
}, listId: string) => boolean) & {
|
|
658
1681
|
clearCache: () => void;
|
|
659
1682
|
resultsCount: () => number;
|
|
660
1683
|
resetResultsCount: () => void;
|
|
@@ -666,7 +1689,11 @@ export declare const selectSpaceListLoading: ((state: any, listId: string) => bo
|
|
|
666
1689
|
resetResultsCount: () => void;
|
|
667
1690
|
};
|
|
668
1691
|
lastResult: () => boolean;
|
|
669
|
-
dependencies: [((state:
|
|
1692
|
+
dependencies: [((state: {
|
|
1693
|
+
replyke: ReplykeState;
|
|
1694
|
+
} & {
|
|
1695
|
+
replyke: ReplykeState;
|
|
1696
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
670
1697
|
clearCache: () => void;
|
|
671
1698
|
resultsCount: () => number;
|
|
672
1699
|
resetResultsCount: () => void;
|
|
@@ -679,8 +1706,10 @@ export declare const selectSpaceListLoading: ((state: any, listId: string) => bo
|
|
|
679
1706
|
};
|
|
680
1707
|
lastResult: () => SpaceListState | undefined;
|
|
681
1708
|
dependencies: [(state: {
|
|
682
|
-
|
|
683
|
-
}) => SpaceListsState, (_:
|
|
1709
|
+
replyke: ReplykeState;
|
|
1710
|
+
}) => SpaceListsState, (_: {
|
|
1711
|
+
replyke: ReplykeState;
|
|
1712
|
+
}, listId: string) => string];
|
|
684
1713
|
recomputations: () => number;
|
|
685
1714
|
resetRecomputations: () => void;
|
|
686
1715
|
dependencyRecomputations: () => number;
|
|
@@ -697,7 +1726,11 @@ export declare const selectSpaceListLoading: ((state: any, listId: string) => bo
|
|
|
697
1726
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
698
1727
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
699
1728
|
};
|
|
700
|
-
export declare const selectSpaceListHasMore: ((state:
|
|
1729
|
+
export declare const selectSpaceListHasMore: ((state: {
|
|
1730
|
+
replyke: ReplykeState;
|
|
1731
|
+
} & {
|
|
1732
|
+
replyke: ReplykeState;
|
|
1733
|
+
}, listId: string) => boolean) & {
|
|
701
1734
|
clearCache: () => void;
|
|
702
1735
|
resultsCount: () => number;
|
|
703
1736
|
resetResultsCount: () => void;
|
|
@@ -709,7 +1742,11 @@ export declare const selectSpaceListHasMore: ((state: any, listId: string) => bo
|
|
|
709
1742
|
resetResultsCount: () => void;
|
|
710
1743
|
};
|
|
711
1744
|
lastResult: () => boolean;
|
|
712
|
-
dependencies: [((state:
|
|
1745
|
+
dependencies: [((state: {
|
|
1746
|
+
replyke: ReplykeState;
|
|
1747
|
+
} & {
|
|
1748
|
+
replyke: ReplykeState;
|
|
1749
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
713
1750
|
clearCache: () => void;
|
|
714
1751
|
resultsCount: () => number;
|
|
715
1752
|
resetResultsCount: () => void;
|
|
@@ -722,8 +1759,10 @@ export declare const selectSpaceListHasMore: ((state: any, listId: string) => bo
|
|
|
722
1759
|
};
|
|
723
1760
|
lastResult: () => SpaceListState | undefined;
|
|
724
1761
|
dependencies: [(state: {
|
|
725
|
-
|
|
726
|
-
}) => SpaceListsState, (_:
|
|
1762
|
+
replyke: ReplykeState;
|
|
1763
|
+
}) => SpaceListsState, (_: {
|
|
1764
|
+
replyke: ReplykeState;
|
|
1765
|
+
}, listId: string) => string];
|
|
727
1766
|
recomputations: () => number;
|
|
728
1767
|
resetRecomputations: () => void;
|
|
729
1768
|
dependencyRecomputations: () => number;
|
|
@@ -740,9 +1779,16 @@ export declare const selectSpaceListHasMore: ((state: any, listId: string) => bo
|
|
|
740
1779
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
741
1780
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
742
1781
|
};
|
|
743
|
-
export declare const selectSpaceListFilters: ((state:
|
|
1782
|
+
export declare const selectSpaceListFilters: ((state: {
|
|
1783
|
+
replyke: ReplykeState;
|
|
1784
|
+
} & {
|
|
1785
|
+
replyke: ReplykeState;
|
|
1786
|
+
}, listId: string) => {
|
|
744
1787
|
sortBy: SpaceListSortByOptions;
|
|
745
|
-
|
|
1788
|
+
searchSlug: string | null;
|
|
1789
|
+
searchName: string | null;
|
|
1790
|
+
searchDescription: string | null;
|
|
1791
|
+
searchAny: string | null;
|
|
746
1792
|
readingPermission: "anyone" | "members" | null;
|
|
747
1793
|
memberOf: boolean;
|
|
748
1794
|
parentSpaceId: string | null;
|
|
@@ -753,14 +1799,20 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
753
1799
|
} & {
|
|
754
1800
|
resultFunc: (resultFuncArgs_0: SpaceListState | undefined) => {
|
|
755
1801
|
sortBy: SpaceListSortByOptions;
|
|
756
|
-
|
|
1802
|
+
searchSlug: string | null;
|
|
1803
|
+
searchName: string | null;
|
|
1804
|
+
searchDescription: string | null;
|
|
1805
|
+
searchAny: string | null;
|
|
757
1806
|
readingPermission: "anyone" | "members" | null;
|
|
758
1807
|
memberOf: boolean;
|
|
759
1808
|
parentSpaceId: string | null;
|
|
760
1809
|
} | null;
|
|
761
1810
|
memoizedResultFunc: ((resultFuncArgs_0: SpaceListState | undefined) => {
|
|
762
1811
|
sortBy: SpaceListSortByOptions;
|
|
763
|
-
|
|
1812
|
+
searchSlug: string | null;
|
|
1813
|
+
searchName: string | null;
|
|
1814
|
+
searchDescription: string | null;
|
|
1815
|
+
searchAny: string | null;
|
|
764
1816
|
readingPermission: "anyone" | "members" | null;
|
|
765
1817
|
memberOf: boolean;
|
|
766
1818
|
parentSpaceId: string | null;
|
|
@@ -771,12 +1823,19 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
771
1823
|
};
|
|
772
1824
|
lastResult: () => {
|
|
773
1825
|
sortBy: SpaceListSortByOptions;
|
|
774
|
-
|
|
1826
|
+
searchSlug: string | null;
|
|
1827
|
+
searchName: string | null;
|
|
1828
|
+
searchDescription: string | null;
|
|
1829
|
+
searchAny: string | null;
|
|
775
1830
|
readingPermission: "anyone" | "members" | null;
|
|
776
1831
|
memberOf: boolean;
|
|
777
1832
|
parentSpaceId: string | null;
|
|
778
1833
|
} | null;
|
|
779
|
-
dependencies: [((state:
|
|
1834
|
+
dependencies: [((state: {
|
|
1835
|
+
replyke: ReplykeState;
|
|
1836
|
+
} & {
|
|
1837
|
+
replyke: ReplykeState;
|
|
1838
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
780
1839
|
clearCache: () => void;
|
|
781
1840
|
resultsCount: () => number;
|
|
782
1841
|
resetResultsCount: () => void;
|
|
@@ -789,8 +1848,10 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
789
1848
|
};
|
|
790
1849
|
lastResult: () => SpaceListState | undefined;
|
|
791
1850
|
dependencies: [(state: {
|
|
792
|
-
|
|
793
|
-
}) => SpaceListsState, (_:
|
|
1851
|
+
replyke: ReplykeState;
|
|
1852
|
+
}) => SpaceListsState, (_: {
|
|
1853
|
+
replyke: ReplykeState;
|
|
1854
|
+
}, listId: string) => string];
|
|
794
1855
|
recomputations: () => number;
|
|
795
1856
|
resetRecomputations: () => void;
|
|
796
1857
|
dependencyRecomputations: () => number;
|
|
@@ -807,7 +1868,11 @@ export declare const selectSpaceListFilters: ((state: any, listId: string) => {
|
|
|
807
1868
|
memoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
808
1869
|
argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize;
|
|
809
1870
|
};
|
|
810
|
-
export declare const selectSpaceListConfig: ((state:
|
|
1871
|
+
export declare const selectSpaceListConfig: ((state: {
|
|
1872
|
+
replyke: ReplykeState;
|
|
1873
|
+
} & {
|
|
1874
|
+
replyke: ReplykeState;
|
|
1875
|
+
}, listId: string) => {
|
|
811
1876
|
limit: number;
|
|
812
1877
|
} | null) & {
|
|
813
1878
|
clearCache: () => void;
|
|
@@ -827,7 +1892,11 @@ export declare const selectSpaceListConfig: ((state: any, listId: string) => {
|
|
|
827
1892
|
lastResult: () => {
|
|
828
1893
|
limit: number;
|
|
829
1894
|
} | null;
|
|
830
|
-
dependencies: [((state:
|
|
1895
|
+
dependencies: [((state: {
|
|
1896
|
+
replyke: ReplykeState;
|
|
1897
|
+
} & {
|
|
1898
|
+
replyke: ReplykeState;
|
|
1899
|
+
}, listId: string) => SpaceListState | undefined) & {
|
|
831
1900
|
clearCache: () => void;
|
|
832
1901
|
resultsCount: () => number;
|
|
833
1902
|
resetResultsCount: () => void;
|
|
@@ -840,8 +1909,10 @@ export declare const selectSpaceListConfig: ((state: any, listId: string) => {
|
|
|
840
1909
|
};
|
|
841
1910
|
lastResult: () => SpaceListState | undefined;
|
|
842
1911
|
dependencies: [(state: {
|
|
843
|
-
|
|
844
|
-
}) => SpaceListsState, (_:
|
|
1912
|
+
replyke: ReplykeState;
|
|
1913
|
+
}) => SpaceListsState, (_: {
|
|
1914
|
+
replyke: ReplykeState;
|
|
1915
|
+
}, listId: string) => string];
|
|
845
1916
|
recomputations: () => number;
|
|
846
1917
|
resetRecomputations: () => void;
|
|
847
1918
|
dependencyRecomputations: () => number;
|