@replyke/core 7.0.0-beta.107 → 7.0.0-beta.108

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.
Files changed (341) hide show
  1. package/dist/cjs/context/chat-context.js.map +1 -1
  2. package/dist/cjs/context/conversation-context.js +11 -5
  3. package/dist/cjs/context/conversation-context.js.map +1 -1
  4. package/dist/cjs/helpers/addNotificationsMessages.js +177 -73
  5. package/dist/cjs/helpers/addNotificationsMessages.js.map +1 -1
  6. package/dist/cjs/hooks/app-notifications/useAppNotifications.d.ts +3 -1
  7. package/dist/cjs/hooks/app-notifications/useAppNotifications.js +1 -1
  8. package/dist/cjs/hooks/app-notifications/useAppNotifications.js.map +1 -1
  9. package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.d.ts +6 -2
  10. package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js +2 -2
  11. package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
  12. package/dist/cjs/hooks/auth/index.d.ts +2 -0
  13. package/dist/cjs/hooks/auth/index.js +5 -1
  14. package/dist/cjs/hooks/auth/index.js.map +1 -1
  15. package/dist/cjs/hooks/auth/useAccountSync.d.ts +2 -2
  16. package/dist/cjs/hooks/auth/useAccountSync.js +3 -2
  17. package/dist/cjs/hooks/auth/useAccountSync.js.map +1 -1
  18. package/dist/cjs/hooks/auth/useOAuthIdentities.d.ts +3 -1
  19. package/dist/cjs/hooks/auth/useOAuthIdentities.js +1 -1
  20. package/dist/cjs/hooks/auth/useOAuthIdentities.js.map +1 -1
  21. package/dist/cjs/hooks/auth/useRemoveAccount.d.ts +3 -1
  22. package/dist/cjs/hooks/auth/useRemoveAccount.js +1 -1
  23. package/dist/cjs/hooks/auth/useRemoveAccount.js.map +1 -1
  24. package/dist/cjs/hooks/auth/useSendVerificationEmail.d.ts +10 -0
  25. package/dist/cjs/hooks/auth/useSendVerificationEmail.js +21 -0
  26. package/dist/cjs/hooks/auth/useSendVerificationEmail.js.map +1 -0
  27. package/dist/cjs/hooks/auth/useSwitchAccount.d.ts +3 -1
  28. package/dist/cjs/hooks/auth/useSwitchAccount.js +1 -1
  29. package/dist/cjs/hooks/auth/useSwitchAccount.js.map +1 -1
  30. package/dist/cjs/hooks/auth/useVerifyEmail.d.ts +7 -0
  31. package/dist/cjs/hooks/auth/useVerifyEmail.js +31 -0
  32. package/dist/cjs/hooks/auth/useVerifyEmail.js.map +1 -0
  33. package/dist/cjs/hooks/chat/conversations/index.d.ts +9 -3
  34. package/dist/cjs/hooks/chat/conversations/index.js +9 -3
  35. package/dist/cjs/hooks/chat/conversations/index.js.map +1 -1
  36. package/dist/cjs/hooks/chat/conversations/useConversation.d.ts +4 -9
  37. package/dist/cjs/hooks/chat/conversations/useConversation.js +16 -28
  38. package/dist/cjs/hooks/chat/conversations/useConversation.js.map +1 -1
  39. package/dist/cjs/hooks/chat/conversations/useConversationMembers.d.ts +16 -7
  40. package/dist/cjs/hooks/chat/conversations/useConversationMembers.js +4 -4
  41. package/dist/cjs/hooks/chat/conversations/useConversationMembers.js.map +1 -1
  42. package/dist/cjs/hooks/chat/conversations/useConversations.d.ts +3 -3
  43. package/dist/cjs/hooks/chat/conversations/useConversations.js.map +1 -1
  44. package/dist/cjs/hooks/chat/conversations/useCreateDirectConversation.d.ts +2 -2
  45. package/dist/cjs/hooks/chat/conversations/useCreateDirectConversation.js.map +1 -1
  46. package/dist/cjs/hooks/chat/conversations/useDeleteConversation.d.ts +5 -0
  47. package/dist/cjs/hooks/chat/conversations/useDeleteConversation.js +22 -0
  48. package/dist/cjs/hooks/chat/conversations/useDeleteConversation.js.map +1 -0
  49. package/dist/cjs/hooks/chat/conversations/useFetchConversation.d.ts +6 -0
  50. package/dist/cjs/hooks/chat/conversations/useFetchConversation.js +23 -0
  51. package/dist/cjs/hooks/chat/conversations/useFetchConversation.js.map +1 -0
  52. package/dist/cjs/hooks/chat/conversations/useFetchSpaceConversation.d.ts +10 -0
  53. package/dist/cjs/hooks/chat/conversations/{useSpaceConversation.js → useFetchSpaceConversation.js} +3 -3
  54. package/dist/cjs/hooks/chat/conversations/useFetchSpaceConversation.js.map +1 -0
  55. package/dist/cjs/hooks/chat/conversations/useUpdateConversation.d.ts +10 -0
  56. package/dist/cjs/hooks/chat/conversations/useUpdateConversation.js +23 -0
  57. package/dist/cjs/hooks/chat/conversations/useUpdateConversation.js.map +1 -0
  58. package/dist/cjs/hooks/chat/index.d.ts +2 -2
  59. package/dist/cjs/hooks/chat/index.js +5 -2
  60. package/dist/cjs/hooks/chat/index.js.map +1 -1
  61. package/dist/cjs/hooks/chat/messages/useChatMessages.d.ts +2 -2
  62. package/dist/cjs/hooks/chat/messages/useEditMessage.d.ts +2 -2
  63. package/dist/cjs/hooks/chat/messages/useEditMessage.js.map +1 -1
  64. package/dist/cjs/hooks/chat/messages/useMessageThread.d.ts +3 -3
  65. package/dist/cjs/hooks/chat/messages/useSendMessage.d.ts +2 -2
  66. package/dist/cjs/hooks/chat/messages/useSendMessage.js +6 -6
  67. package/dist/cjs/hooks/chat/messages/useSendMessage.js.map +1 -1
  68. package/dist/cjs/hooks/chat/useConversationData.d.ts +6 -4
  69. package/dist/cjs/hooks/chat/useMarkConversationAsRead.d.ts +3 -1
  70. package/dist/cjs/hooks/chat/useMarkConversationAsRead.js +1 -1
  71. package/dist/cjs/hooks/chat/useMarkConversationAsRead.js.map +1 -1
  72. package/dist/cjs/hooks/collections/index.d.ts +1 -1
  73. package/dist/cjs/hooks/collections/index.js +2 -2
  74. package/dist/cjs/hooks/collections/index.js.map +1 -1
  75. package/dist/cjs/hooks/collections/useCollections.js +26 -8
  76. package/dist/cjs/hooks/collections/useCollections.js.map +1 -1
  77. package/dist/cjs/hooks/collections/useCollectionsActions.d.ts +33 -9
  78. package/dist/cjs/hooks/collections/useCollectionsActions.js +7 -7
  79. package/dist/cjs/hooks/collections/useCollectionsActions.js.map +1 -1
  80. package/dist/{esm/hooks/collections/useIsEntitySaved.d.ts → cjs/hooks/collections/useIsEntityInCollection.d.ts} +3 -1
  81. package/dist/cjs/hooks/collections/{useIsEntitySaved.js → useIsEntityInCollection.js} +2 -2
  82. package/dist/cjs/hooks/collections/useIsEntityInCollection.js.map +1 -0
  83. package/dist/cjs/hooks/comments/useCommentSectionData.d.ts +6 -2
  84. package/dist/cjs/hooks/comments/useCommentSectionData.js +7 -4
  85. package/dist/cjs/hooks/comments/useCommentSectionData.js.map +1 -1
  86. package/dist/cjs/hooks/comments/useEntityComments.d.ts +6 -2
  87. package/dist/cjs/hooks/comments/useEntityComments.js +2 -2
  88. package/dist/cjs/hooks/comments/useEntityComments.js.map +1 -1
  89. package/dist/cjs/hooks/comments/useFetchManyComments.d.ts +1 -1
  90. package/dist/cjs/hooks/entities/index.d.ts +0 -1
  91. package/dist/cjs/hooks/entities/index.js +1 -3
  92. package/dist/cjs/hooks/entities/index.js.map +1 -1
  93. package/dist/cjs/hooks/entities/useEntityData.d.ts +0 -1
  94. package/dist/cjs/hooks/entities/useEntityData.js +0 -15
  95. package/dist/cjs/hooks/entities/useEntityData.js.map +1 -1
  96. package/dist/cjs/hooks/entities/useFetchDrafts.d.ts +1 -1
  97. package/dist/cjs/hooks/entities/useFetchManyEntities.d.ts +1 -1
  98. package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js +0 -3
  99. package/dist/cjs/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -1
  100. package/dist/cjs/hooks/entity-lists/index.d.ts +1 -1
  101. package/dist/cjs/hooks/entity-lists/useEntityListActions.js +3 -3
  102. package/dist/cjs/hooks/entity-lists/useEntityListActions.js.map +1 -1
  103. package/dist/cjs/hooks/reactions/useFetchCommentReactions.d.ts +1 -1
  104. package/dist/cjs/hooks/reactions/useFetchEntityReactions.d.ts +1 -1
  105. package/dist/cjs/hooks/relationships/connections/useFetchConnections.d.ts +1 -1
  106. package/dist/cjs/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +1 -1
  107. package/dist/cjs/hooks/relationships/connections/useFetchReceivedPendingConnections.d.ts +1 -1
  108. package/dist/cjs/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +1 -1
  109. package/dist/cjs/hooks/relationships/follows/useFetchFollowers.d.ts +1 -1
  110. package/dist/cjs/hooks/relationships/follows/useFetchFollowersByUserId.d.ts +1 -1
  111. package/dist/cjs/hooks/relationships/follows/useFetchFollowing.d.ts +1 -1
  112. package/dist/cjs/hooks/relationships/follows/useFetchFollowingByUserId.d.ts +1 -1
  113. package/dist/cjs/hooks/reports/useFetchModeratedReports.d.ts +1 -1
  114. package/dist/cjs/hooks/search/useSearchContent.d.ts +2 -2
  115. package/dist/cjs/hooks/spaces/useFetchManySpaces.d.ts +1 -1
  116. package/dist/cjs/hooks/spaces/useFetchSpaceChildren.d.ts +1 -1
  117. package/dist/cjs/hooks/user/useUser.js +7 -10
  118. package/dist/cjs/hooks/user/useUser.js.map +1 -1
  119. package/dist/cjs/hooks/user/useUserActions.d.ts +6 -1
  120. package/dist/cjs/hooks/user/useUserActions.js +1 -1
  121. package/dist/cjs/hooks/user/useUserActions.js.map +1 -1
  122. package/dist/cjs/index.d.ts +11 -11
  123. package/dist/cjs/index.js +11 -7
  124. package/dist/cjs/index.js.map +1 -1
  125. package/dist/{esm/interfaces/IAccountStorage.d.ts → cjs/interfaces/AccountStorage.d.ts} +1 -1
  126. package/dist/cjs/interfaces/{IAccountStorage.js → AccountStorage.js} +1 -1
  127. package/dist/cjs/interfaces/AccountStorage.js.map +1 -0
  128. package/dist/cjs/interfaces/{IPaginatedResponse.js → PaginatedResponse.js} +1 -1
  129. package/dist/cjs/interfaces/PaginatedResponse.js.map +1 -0
  130. package/dist/cjs/interfaces/models/AppNotification.d.ts +131 -21
  131. package/dist/{esm/interfaces/models/IChatMessage.d.ts → cjs/interfaces/models/ChatMessage.d.ts} +4 -4
  132. package/dist/cjs/interfaces/models/{IChatMessage.js → ChatMessage.js} +1 -1
  133. package/dist/cjs/interfaces/models/ChatMessage.js.map +1 -0
  134. package/dist/cjs/interfaces/models/Collection.d.ts +1 -1
  135. package/dist/cjs/interfaces/models/Connection.d.ts +0 -1
  136. package/dist/{esm/interfaces/models/IConversation.d.ts → cjs/interfaces/models/Conversation.d.ts} +6 -6
  137. package/dist/cjs/interfaces/models/{IConversation.js → Conversation.js} +1 -1
  138. package/dist/cjs/interfaces/models/Conversation.js.map +1 -0
  139. package/dist/cjs/interfaces/models/{IConversationMember.d.ts → ConversationMember.d.ts} +1 -1
  140. package/dist/cjs/interfaces/models/ConversationMember.js +3 -0
  141. package/dist/cjs/interfaces/models/ConversationMember.js.map +1 -0
  142. package/dist/cjs/interfaces/models/Entity.d.ts +1 -0
  143. package/dist/cjs/interfaces/models/Space.d.ts +1 -1
  144. package/dist/cjs/interfaces/models/SpaceMember.d.ts +2 -2
  145. package/dist/cjs/store/api/appNotificationsApi.d.ts +1 -1
  146. package/dist/cjs/store/api/entityListsApi.d.ts +193 -192
  147. package/dist/cjs/store/api/entityListsApi.js +1 -5
  148. package/dist/cjs/store/api/entityListsApi.js.map +1 -1
  149. package/dist/cjs/store/slices/appNotificationsSlice.d.ts +528 -330
  150. package/dist/cjs/store/slices/chatSlice.d.ts +16 -16
  151. package/dist/cjs/store/slices/chatSlice.js +7 -7
  152. package/dist/cjs/store/slices/chatSlice.js.map +1 -1
  153. package/dist/cjs/store/slices/collectionsSlice.d.ts +14 -14
  154. package/dist/cjs/store/slices/entityListsSlice.d.ts +12 -0
  155. package/dist/cjs/types/socket.d.ts +8 -8
  156. package/dist/esm/context/chat-context.js.map +1 -1
  157. package/dist/esm/context/conversation-context.js +11 -5
  158. package/dist/esm/context/conversation-context.js.map +1 -1
  159. package/dist/esm/helpers/addNotificationsMessages.js +177 -73
  160. package/dist/esm/helpers/addNotificationsMessages.js.map +1 -1
  161. package/dist/esm/hooks/app-notifications/useAppNotifications.d.ts +3 -1
  162. package/dist/esm/hooks/app-notifications/useAppNotifications.js +1 -1
  163. package/dist/esm/hooks/app-notifications/useAppNotifications.js.map +1 -1
  164. package/dist/esm/hooks/app-notifications/useAppNotificationsActions.d.ts +6 -2
  165. package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js +2 -2
  166. package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
  167. package/dist/esm/hooks/auth/index.d.ts +2 -0
  168. package/dist/esm/hooks/auth/index.js +2 -0
  169. package/dist/esm/hooks/auth/index.js.map +1 -1
  170. package/dist/esm/hooks/auth/useAccountSync.d.ts +2 -2
  171. package/dist/esm/hooks/auth/useAccountSync.js +3 -2
  172. package/dist/esm/hooks/auth/useAccountSync.js.map +1 -1
  173. package/dist/esm/hooks/auth/useOAuthIdentities.d.ts +3 -1
  174. package/dist/esm/hooks/auth/useOAuthIdentities.js +1 -1
  175. package/dist/esm/hooks/auth/useOAuthIdentities.js.map +1 -1
  176. package/dist/esm/hooks/auth/useRemoveAccount.d.ts +3 -1
  177. package/dist/esm/hooks/auth/useRemoveAccount.js +1 -1
  178. package/dist/esm/hooks/auth/useRemoveAccount.js.map +1 -1
  179. package/dist/esm/hooks/auth/useSendVerificationEmail.d.ts +10 -0
  180. package/dist/esm/hooks/auth/useSendVerificationEmail.js +16 -0
  181. package/dist/esm/hooks/auth/useSendVerificationEmail.js.map +1 -0
  182. package/dist/esm/hooks/auth/useSwitchAccount.d.ts +3 -1
  183. package/dist/esm/hooks/auth/useSwitchAccount.js +1 -1
  184. package/dist/esm/hooks/auth/useSwitchAccount.js.map +1 -1
  185. package/dist/esm/hooks/auth/useVerifyEmail.d.ts +7 -0
  186. package/dist/esm/hooks/auth/useVerifyEmail.js +26 -0
  187. package/dist/esm/hooks/auth/useVerifyEmail.js.map +1 -0
  188. package/dist/esm/hooks/chat/conversations/index.d.ts +9 -3
  189. package/dist/esm/hooks/chat/conversations/index.js +4 -1
  190. package/dist/esm/hooks/chat/conversations/index.js.map +1 -1
  191. package/dist/esm/hooks/chat/conversations/useConversation.d.ts +4 -9
  192. package/dist/esm/hooks/chat/conversations/useConversation.js +16 -28
  193. package/dist/esm/hooks/chat/conversations/useConversation.js.map +1 -1
  194. package/dist/esm/hooks/chat/conversations/useConversationMembers.d.ts +16 -7
  195. package/dist/esm/hooks/chat/conversations/useConversationMembers.js +4 -4
  196. package/dist/esm/hooks/chat/conversations/useConversationMembers.js.map +1 -1
  197. package/dist/esm/hooks/chat/conversations/useConversations.d.ts +3 -3
  198. package/dist/esm/hooks/chat/conversations/useConversations.js.map +1 -1
  199. package/dist/esm/hooks/chat/conversations/useCreateDirectConversation.d.ts +2 -2
  200. package/dist/esm/hooks/chat/conversations/useCreateDirectConversation.js.map +1 -1
  201. package/dist/esm/hooks/chat/conversations/useDeleteConversation.d.ts +5 -0
  202. package/dist/esm/hooks/chat/conversations/useDeleteConversation.js +17 -0
  203. package/dist/esm/hooks/chat/conversations/useDeleteConversation.js.map +1 -0
  204. package/dist/esm/hooks/chat/conversations/useFetchConversation.d.ts +6 -0
  205. package/dist/esm/hooks/chat/conversations/useFetchConversation.js +18 -0
  206. package/dist/esm/hooks/chat/conversations/useFetchConversation.js.map +1 -0
  207. package/dist/esm/hooks/chat/conversations/useFetchSpaceConversation.d.ts +10 -0
  208. package/dist/esm/hooks/chat/conversations/{useSpaceConversation.js → useFetchSpaceConversation.js} +3 -3
  209. package/dist/esm/hooks/chat/conversations/useFetchSpaceConversation.js.map +1 -0
  210. package/dist/esm/hooks/chat/conversations/useUpdateConversation.d.ts +10 -0
  211. package/dist/esm/hooks/chat/conversations/useUpdateConversation.js +18 -0
  212. package/dist/esm/hooks/chat/conversations/useUpdateConversation.js.map +1 -0
  213. package/dist/esm/hooks/chat/index.d.ts +2 -2
  214. package/dist/esm/hooks/chat/index.js +1 -1
  215. package/dist/esm/hooks/chat/index.js.map +1 -1
  216. package/dist/esm/hooks/chat/messages/useChatMessages.d.ts +2 -2
  217. package/dist/esm/hooks/chat/messages/useEditMessage.d.ts +2 -2
  218. package/dist/esm/hooks/chat/messages/useEditMessage.js.map +1 -1
  219. package/dist/esm/hooks/chat/messages/useMessageThread.d.ts +3 -3
  220. package/dist/esm/hooks/chat/messages/useSendMessage.d.ts +2 -2
  221. package/dist/esm/hooks/chat/messages/useSendMessage.js +6 -6
  222. package/dist/esm/hooks/chat/messages/useSendMessage.js.map +1 -1
  223. package/dist/esm/hooks/chat/useConversationData.d.ts +6 -4
  224. package/dist/esm/hooks/chat/useMarkConversationAsRead.d.ts +3 -1
  225. package/dist/esm/hooks/chat/useMarkConversationAsRead.js +1 -1
  226. package/dist/esm/hooks/chat/useMarkConversationAsRead.js.map +1 -1
  227. package/dist/esm/hooks/collections/index.d.ts +1 -1
  228. package/dist/esm/hooks/collections/index.js +1 -1
  229. package/dist/esm/hooks/collections/index.js.map +1 -1
  230. package/dist/esm/hooks/collections/useCollections.js +26 -8
  231. package/dist/esm/hooks/collections/useCollections.js.map +1 -1
  232. package/dist/esm/hooks/collections/useCollectionsActions.d.ts +33 -9
  233. package/dist/esm/hooks/collections/useCollectionsActions.js +7 -7
  234. package/dist/esm/hooks/collections/useCollectionsActions.js.map +1 -1
  235. package/dist/{cjs/hooks/collections/useIsEntitySaved.d.ts → esm/hooks/collections/useIsEntityInCollection.d.ts} +3 -1
  236. package/dist/esm/hooks/collections/{useIsEntitySaved.js → useIsEntityInCollection.js} +2 -2
  237. package/dist/esm/hooks/collections/useIsEntityInCollection.js.map +1 -0
  238. package/dist/esm/hooks/comments/useCommentSectionData.d.ts +6 -2
  239. package/dist/esm/hooks/comments/useCommentSectionData.js +7 -4
  240. package/dist/esm/hooks/comments/useCommentSectionData.js.map +1 -1
  241. package/dist/esm/hooks/comments/useEntityComments.d.ts +6 -2
  242. package/dist/esm/hooks/comments/useEntityComments.js +2 -2
  243. package/dist/esm/hooks/comments/useEntityComments.js.map +1 -1
  244. package/dist/esm/hooks/comments/useFetchManyComments.d.ts +1 -1
  245. package/dist/esm/hooks/entities/index.d.ts +0 -1
  246. package/dist/esm/hooks/entities/index.js +0 -1
  247. package/dist/esm/hooks/entities/index.js.map +1 -1
  248. package/dist/esm/hooks/entities/useEntityData.d.ts +0 -1
  249. package/dist/esm/hooks/entities/useEntityData.js +0 -15
  250. package/dist/esm/hooks/entities/useEntityData.js.map +1 -1
  251. package/dist/esm/hooks/entities/useFetchDrafts.d.ts +1 -1
  252. package/dist/esm/hooks/entities/useFetchManyEntities.d.ts +1 -1
  253. package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js +0 -3
  254. package/dist/esm/hooks/entities/useFetchManyEntitiesWrapper.js.map +1 -1
  255. package/dist/esm/hooks/entity-lists/index.d.ts +1 -1
  256. package/dist/esm/hooks/entity-lists/useEntityListActions.js +3 -3
  257. package/dist/esm/hooks/entity-lists/useEntityListActions.js.map +1 -1
  258. package/dist/esm/hooks/reactions/useFetchCommentReactions.d.ts +1 -1
  259. package/dist/esm/hooks/reactions/useFetchEntityReactions.d.ts +1 -1
  260. package/dist/esm/hooks/relationships/connections/useFetchConnections.d.ts +1 -1
  261. package/dist/esm/hooks/relationships/connections/useFetchConnectionsByUserId.d.ts +1 -1
  262. package/dist/esm/hooks/relationships/connections/useFetchReceivedPendingConnections.d.ts +1 -1
  263. package/dist/esm/hooks/relationships/connections/useFetchSentPendingConnections.d.ts +1 -1
  264. package/dist/esm/hooks/relationships/follows/useFetchFollowers.d.ts +1 -1
  265. package/dist/esm/hooks/relationships/follows/useFetchFollowersByUserId.d.ts +1 -1
  266. package/dist/esm/hooks/relationships/follows/useFetchFollowing.d.ts +1 -1
  267. package/dist/esm/hooks/relationships/follows/useFetchFollowingByUserId.d.ts +1 -1
  268. package/dist/esm/hooks/reports/useFetchModeratedReports.d.ts +1 -1
  269. package/dist/esm/hooks/search/useSearchContent.d.ts +2 -2
  270. package/dist/esm/hooks/spaces/useFetchManySpaces.d.ts +1 -1
  271. package/dist/esm/hooks/spaces/useFetchSpaceChildren.d.ts +1 -1
  272. package/dist/esm/hooks/user/useUser.js +7 -10
  273. package/dist/esm/hooks/user/useUser.js.map +1 -1
  274. package/dist/esm/hooks/user/useUserActions.d.ts +6 -1
  275. package/dist/esm/hooks/user/useUserActions.js +1 -1
  276. package/dist/esm/hooks/user/useUserActions.js.map +1 -1
  277. package/dist/esm/index.d.ts +11 -11
  278. package/dist/esm/index.js +4 -4
  279. package/dist/esm/index.js.map +1 -1
  280. package/dist/{cjs/interfaces/IAccountStorage.d.ts → esm/interfaces/AccountStorage.d.ts} +1 -1
  281. package/dist/esm/interfaces/AccountStorage.js +2 -0
  282. package/dist/esm/interfaces/AccountStorage.js.map +1 -0
  283. package/dist/esm/interfaces/PaginatedResponse.js +2 -0
  284. package/dist/esm/interfaces/PaginatedResponse.js.map +1 -0
  285. package/dist/esm/interfaces/models/AppNotification.d.ts +131 -21
  286. package/dist/{cjs/interfaces/models/IChatMessage.d.ts → esm/interfaces/models/ChatMessage.d.ts} +4 -4
  287. package/dist/esm/interfaces/models/ChatMessage.js +2 -0
  288. package/dist/esm/interfaces/models/ChatMessage.js.map +1 -0
  289. package/dist/esm/interfaces/models/Collection.d.ts +1 -1
  290. package/dist/esm/interfaces/models/Connection.d.ts +0 -1
  291. package/dist/{cjs/interfaces/models/IConversation.d.ts → esm/interfaces/models/Conversation.d.ts} +6 -6
  292. package/dist/esm/interfaces/models/Conversation.js +2 -0
  293. package/dist/esm/interfaces/models/Conversation.js.map +1 -0
  294. package/dist/esm/interfaces/models/{IConversationMember.d.ts → ConversationMember.d.ts} +1 -1
  295. package/dist/esm/interfaces/models/ConversationMember.js +2 -0
  296. package/dist/esm/interfaces/models/ConversationMember.js.map +1 -0
  297. package/dist/esm/interfaces/models/Entity.d.ts +1 -0
  298. package/dist/esm/interfaces/models/Space.d.ts +1 -1
  299. package/dist/esm/interfaces/models/SpaceMember.d.ts +2 -2
  300. package/dist/esm/store/api/appNotificationsApi.d.ts +1 -1
  301. package/dist/esm/store/api/entityListsApi.d.ts +193 -192
  302. package/dist/esm/store/api/entityListsApi.js +1 -5
  303. package/dist/esm/store/api/entityListsApi.js.map +1 -1
  304. package/dist/esm/store/slices/appNotificationsSlice.d.ts +528 -330
  305. package/dist/esm/store/slices/chatSlice.d.ts +16 -16
  306. package/dist/esm/store/slices/chatSlice.js +7 -7
  307. package/dist/esm/store/slices/chatSlice.js.map +1 -1
  308. package/dist/esm/store/slices/collectionsSlice.d.ts +14 -14
  309. package/dist/esm/store/slices/entityListsSlice.d.ts +12 -0
  310. package/dist/esm/types/socket.d.ts +8 -8
  311. package/package.json +1 -1
  312. package/dist/cjs/hooks/chat/conversations/useSpaceConversation.d.ts +0 -10
  313. package/dist/cjs/hooks/chat/conversations/useSpaceConversation.js.map +0 -1
  314. package/dist/cjs/hooks/collections/useIsEntitySaved.js.map +0 -1
  315. package/dist/cjs/hooks/entities/useIncrementEntityViews.d.ts +0 -5
  316. package/dist/cjs/hooks/entities/useIncrementEntityViews.js +0 -27
  317. package/dist/cjs/hooks/entities/useIncrementEntityViews.js.map +0 -1
  318. package/dist/cjs/interfaces/IAccountStorage.js.map +0 -1
  319. package/dist/cjs/interfaces/IPaginatedResponse.js.map +0 -1
  320. package/dist/cjs/interfaces/models/IChatMessage.js.map +0 -1
  321. package/dist/cjs/interfaces/models/IConversation.js.map +0 -1
  322. package/dist/cjs/interfaces/models/IConversationMember.js +0 -3
  323. package/dist/cjs/interfaces/models/IConversationMember.js.map +0 -1
  324. package/dist/esm/hooks/chat/conversations/useSpaceConversation.d.ts +0 -10
  325. package/dist/esm/hooks/chat/conversations/useSpaceConversation.js.map +0 -1
  326. package/dist/esm/hooks/collections/useIsEntitySaved.js.map +0 -1
  327. package/dist/esm/hooks/entities/useIncrementEntityViews.d.ts +0 -5
  328. package/dist/esm/hooks/entities/useIncrementEntityViews.js +0 -22
  329. package/dist/esm/hooks/entities/useIncrementEntityViews.js.map +0 -1
  330. package/dist/esm/interfaces/IAccountStorage.js +0 -2
  331. package/dist/esm/interfaces/IAccountStorage.js.map +0 -1
  332. package/dist/esm/interfaces/IPaginatedResponse.js +0 -2
  333. package/dist/esm/interfaces/IPaginatedResponse.js.map +0 -1
  334. package/dist/esm/interfaces/models/IChatMessage.js +0 -2
  335. package/dist/esm/interfaces/models/IChatMessage.js.map +0 -1
  336. package/dist/esm/interfaces/models/IConversation.js +0 -2
  337. package/dist/esm/interfaces/models/IConversation.js.map +0 -1
  338. package/dist/esm/interfaces/models/IConversationMember.js +0 -2
  339. package/dist/esm/interfaces/models/IConversationMember.js.map +0 -1
  340. /package/dist/cjs/interfaces/{IPaginatedResponse.d.ts → PaginatedResponse.d.ts} +0 -0
  341. /package/dist/esm/interfaces/{IPaginatedResponse.d.ts → PaginatedResponse.d.ts} +0 -0
@@ -311,6 +311,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
311
311
  userId: string;
312
312
  isRead: boolean;
313
313
  createdAt: string;
314
+ } | {
315
+ type: "space-membership-approved";
316
+ action: "open-space";
317
+ metadata: {
318
+ spaceId: string;
319
+ spaceName: string;
320
+ spaceShortId: string;
321
+ spaceSlug: string | null | undefined;
322
+ spaceAvatar: string | null | undefined;
323
+ };
324
+ id: string;
325
+ userId: string;
326
+ isRead: boolean;
327
+ createdAt: string;
314
328
  })[];
315
329
  unreadCount: number;
316
330
  loading: boolean;
@@ -319,64 +333,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
319
333
  limit: number;
320
334
  notificationTemplates?: {
321
335
  entityComment?: {
322
- title?: string | undefined;
323
- content?: string | undefined;
336
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
337
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
324
338
  } | undefined;
325
339
  commentReply?: {
326
- title?: string | undefined;
327
- content?: string | undefined;
340
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
341
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
328
342
  } | undefined;
329
343
  entityMention?: {
330
- title?: string | undefined;
331
- content?: string | undefined;
344
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
345
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
332
346
  } | undefined;
333
347
  commentMention?: {
334
- title?: string | undefined;
335
- content?: string | undefined;
348
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
349
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
336
350
  } | undefined;
337
351
  entityUpvote?: {
338
- title?: string | undefined;
339
- content?: string | undefined;
352
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
353
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
340
354
  } | undefined;
341
355
  commentUpvote?: {
342
- title?: string | undefined;
343
- content?: string | undefined;
356
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
357
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
344
358
  } | undefined;
345
359
  entityReaction?: {
346
- title?: string | undefined;
347
- content?: string | undefined;
360
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
361
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
348
362
  } | undefined;
349
363
  commentReaction?: {
350
- title?: string | undefined;
351
- content?: string | undefined;
364
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
365
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
352
366
  } | undefined;
353
367
  entityReactionMilestoneSpecific?: {
354
- title?: string | undefined;
355
- content?: string | undefined;
368
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
369
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
356
370
  } | undefined;
357
371
  entityReactionMilestoneTotal?: {
358
- title?: string | undefined;
359
- content?: string | undefined;
372
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
373
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
360
374
  } | undefined;
361
375
  commentReactionMilestoneSpecific?: {
362
- title?: string | undefined;
363
- content?: string | undefined;
376
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
377
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
364
378
  } | undefined;
365
379
  commentReactionMilestoneTotal?: {
366
- title?: string | undefined;
367
- content?: string | undefined;
380
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
381
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
368
382
  } | undefined;
369
383
  newFollow?: {
370
- title?: string | undefined;
371
- content?: string | undefined;
384
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
385
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
372
386
  } | undefined;
373
387
  connectionRequest?: {
374
- title?: string | undefined;
375
- content?: string | undefined;
388
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
389
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
376
390
  } | undefined;
377
391
  connectionAccepted?: {
378
- title?: string | undefined;
379
- content?: string | undefined;
392
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
393
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
394
+ } | undefined;
395
+ spaceMembershipApproved?: {
396
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
397
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
380
398
  } | undefined;
381
399
  } | undefined;
382
400
  currentProjectId?: string | undefined;
@@ -680,6 +698,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
680
698
  userId: string;
681
699
  isRead: boolean;
682
700
  createdAt: string;
701
+ } | {
702
+ type: "space-membership-approved";
703
+ action: "open-space";
704
+ metadata: {
705
+ spaceId: string;
706
+ spaceName: string;
707
+ spaceShortId: string;
708
+ spaceSlug: string | null | undefined;
709
+ spaceAvatar: string | null | undefined;
710
+ };
711
+ id: string;
712
+ userId: string;
713
+ isRead: boolean;
714
+ createdAt: string;
683
715
  })[];
684
716
  unreadCount: number;
685
717
  loading: boolean;
@@ -688,64 +720,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
688
720
  limit: number;
689
721
  notificationTemplates?: {
690
722
  entityComment?: {
691
- title?: string | undefined;
692
- content?: string | undefined;
723
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
724
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
693
725
  } | undefined;
694
726
  commentReply?: {
695
- title?: string | undefined;
696
- content?: string | undefined;
727
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
728
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
697
729
  } | undefined;
698
730
  entityMention?: {
699
- title?: string | undefined;
700
- content?: string | undefined;
731
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
732
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
701
733
  } | undefined;
702
734
  commentMention?: {
703
- title?: string | undefined;
704
- content?: string | undefined;
735
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
736
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
705
737
  } | undefined;
706
738
  entityUpvote?: {
707
- title?: string | undefined;
708
- content?: string | undefined;
739
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
740
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
709
741
  } | undefined;
710
742
  commentUpvote?: {
711
- title?: string | undefined;
712
- content?: string | undefined;
743
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
744
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
713
745
  } | undefined;
714
746
  entityReaction?: {
715
- title?: string | undefined;
716
- content?: string | undefined;
747
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
748
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
717
749
  } | undefined;
718
750
  commentReaction?: {
719
- title?: string | undefined;
720
- content?: string | undefined;
751
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
752
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
721
753
  } | undefined;
722
754
  entityReactionMilestoneSpecific?: {
723
- title?: string | undefined;
724
- content?: string | undefined;
755
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
756
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
725
757
  } | undefined;
726
758
  entityReactionMilestoneTotal?: {
727
- title?: string | undefined;
728
- content?: string | undefined;
759
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
760
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
729
761
  } | undefined;
730
762
  commentReactionMilestoneSpecific?: {
731
- title?: string | undefined;
732
- content?: string | undefined;
763
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
764
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
733
765
  } | undefined;
734
766
  commentReactionMilestoneTotal?: {
735
- title?: string | undefined;
736
- content?: string | undefined;
767
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
768
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
737
769
  } | undefined;
738
770
  newFollow?: {
739
- title?: string | undefined;
740
- content?: string | undefined;
771
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
772
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
741
773
  } | undefined;
742
774
  connectionRequest?: {
743
- title?: string | undefined;
744
- content?: string | undefined;
775
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
776
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
745
777
  } | undefined;
746
778
  connectionAccepted?: {
747
- title?: string | undefined;
748
- content?: string | undefined;
779
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
780
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
781
+ } | undefined;
782
+ spaceMembershipApproved?: {
783
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
784
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
749
785
  } | undefined;
750
786
  } | undefined;
751
787
  currentProjectId?: string | undefined;
@@ -1049,6 +1085,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
1049
1085
  userId: string;
1050
1086
  isRead: boolean;
1051
1087
  createdAt: string;
1088
+ } | {
1089
+ type: "space-membership-approved";
1090
+ action: "open-space";
1091
+ metadata: {
1092
+ spaceId: string;
1093
+ spaceName: string;
1094
+ spaceShortId: string;
1095
+ spaceSlug: string | null | undefined;
1096
+ spaceAvatar: string | null | undefined;
1097
+ };
1098
+ id: string;
1099
+ userId: string;
1100
+ isRead: boolean;
1101
+ createdAt: string;
1052
1102
  })[];
1053
1103
  unreadCount: number;
1054
1104
  loading: boolean;
@@ -1057,64 +1107,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
1057
1107
  limit: number;
1058
1108
  notificationTemplates?: {
1059
1109
  entityComment?: {
1060
- title?: string | undefined;
1061
- content?: string | undefined;
1110
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
1111
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
1062
1112
  } | undefined;
1063
1113
  commentReply?: {
1064
- title?: string | undefined;
1065
- content?: string | undefined;
1114
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
1115
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
1066
1116
  } | undefined;
1067
1117
  entityMention?: {
1068
- title?: string | undefined;
1069
- content?: string | undefined;
1118
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
1119
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
1070
1120
  } | undefined;
1071
1121
  commentMention?: {
1072
- title?: string | undefined;
1073
- content?: string | undefined;
1122
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
1123
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
1074
1124
  } | undefined;
1075
1125
  entityUpvote?: {
1076
- title?: string | undefined;
1077
- content?: string | undefined;
1126
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
1127
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
1078
1128
  } | undefined;
1079
1129
  commentUpvote?: {
1080
- title?: string | undefined;
1081
- content?: string | undefined;
1130
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
1131
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
1082
1132
  } | undefined;
1083
1133
  entityReaction?: {
1084
- title?: string | undefined;
1085
- content?: string | undefined;
1134
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
1135
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
1086
1136
  } | undefined;
1087
1137
  commentReaction?: {
1088
- title?: string | undefined;
1089
- content?: string | undefined;
1138
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
1139
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
1090
1140
  } | undefined;
1091
1141
  entityReactionMilestoneSpecific?: {
1092
- title?: string | undefined;
1093
- content?: string | undefined;
1142
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
1143
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
1094
1144
  } | undefined;
1095
1145
  entityReactionMilestoneTotal?: {
1096
- title?: string | undefined;
1097
- content?: string | undefined;
1146
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
1147
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
1098
1148
  } | undefined;
1099
1149
  commentReactionMilestoneSpecific?: {
1100
- title?: string | undefined;
1101
- content?: string | undefined;
1150
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
1151
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
1102
1152
  } | undefined;
1103
1153
  commentReactionMilestoneTotal?: {
1104
- title?: string | undefined;
1105
- content?: string | undefined;
1154
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
1155
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
1106
1156
  } | undefined;
1107
1157
  newFollow?: {
1108
- title?: string | undefined;
1109
- content?: string | undefined;
1158
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
1159
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
1110
1160
  } | undefined;
1111
1161
  connectionRequest?: {
1112
- title?: string | undefined;
1113
- content?: string | undefined;
1162
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
1163
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
1114
1164
  } | undefined;
1115
1165
  connectionAccepted?: {
1116
- title?: string | undefined;
1117
- content?: string | undefined;
1166
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
1167
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
1168
+ } | undefined;
1169
+ spaceMembershipApproved?: {
1170
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
1171
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
1118
1172
  } | undefined;
1119
1173
  } | undefined;
1120
1174
  currentProjectId?: string | undefined;
@@ -1418,6 +1472,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
1418
1472
  userId: string;
1419
1473
  isRead: boolean;
1420
1474
  createdAt: string;
1475
+ } | {
1476
+ type: "space-membership-approved";
1477
+ action: "open-space";
1478
+ metadata: {
1479
+ spaceId: string;
1480
+ spaceName: string;
1481
+ spaceShortId: string;
1482
+ spaceSlug: string | null | undefined;
1483
+ spaceAvatar: string | null | undefined;
1484
+ };
1485
+ id: string;
1486
+ userId: string;
1487
+ isRead: boolean;
1488
+ createdAt: string;
1421
1489
  })[];
1422
1490
  unreadCount: number;
1423
1491
  loading: boolean;
@@ -1426,64 +1494,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
1426
1494
  limit: number;
1427
1495
  notificationTemplates?: {
1428
1496
  entityComment?: {
1429
- title?: string | undefined;
1430
- content?: string | undefined;
1497
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
1498
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
1431
1499
  } | undefined;
1432
1500
  commentReply?: {
1433
- title?: string | undefined;
1434
- content?: string | undefined;
1501
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
1502
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
1435
1503
  } | undefined;
1436
1504
  entityMention?: {
1437
- title?: string | undefined;
1438
- content?: string | undefined;
1505
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
1506
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
1439
1507
  } | undefined;
1440
1508
  commentMention?: {
1441
- title?: string | undefined;
1442
- content?: string | undefined;
1509
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
1510
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
1443
1511
  } | undefined;
1444
1512
  entityUpvote?: {
1445
- title?: string | undefined;
1446
- content?: string | undefined;
1513
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
1514
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
1447
1515
  } | undefined;
1448
1516
  commentUpvote?: {
1449
- title?: string | undefined;
1450
- content?: string | undefined;
1517
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
1518
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
1451
1519
  } | undefined;
1452
1520
  entityReaction?: {
1453
- title?: string | undefined;
1454
- content?: string | undefined;
1521
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
1522
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
1455
1523
  } | undefined;
1456
1524
  commentReaction?: {
1457
- title?: string | undefined;
1458
- content?: string | undefined;
1525
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
1526
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
1459
1527
  } | undefined;
1460
1528
  entityReactionMilestoneSpecific?: {
1461
- title?: string | undefined;
1462
- content?: string | undefined;
1529
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
1530
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
1463
1531
  } | undefined;
1464
1532
  entityReactionMilestoneTotal?: {
1465
- title?: string | undefined;
1466
- content?: string | undefined;
1533
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
1534
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
1467
1535
  } | undefined;
1468
1536
  commentReactionMilestoneSpecific?: {
1469
- title?: string | undefined;
1470
- content?: string | undefined;
1537
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
1538
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
1471
1539
  } | undefined;
1472
1540
  commentReactionMilestoneTotal?: {
1473
- title?: string | undefined;
1474
- content?: string | undefined;
1541
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
1542
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
1475
1543
  } | undefined;
1476
1544
  newFollow?: {
1477
- title?: string | undefined;
1478
- content?: string | undefined;
1545
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
1546
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
1479
1547
  } | undefined;
1480
1548
  connectionRequest?: {
1481
- title?: string | undefined;
1482
- content?: string | undefined;
1549
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
1550
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
1483
1551
  } | undefined;
1484
1552
  connectionAccepted?: {
1485
- title?: string | undefined;
1486
- content?: string | undefined;
1553
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
1554
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
1555
+ } | undefined;
1556
+ spaceMembershipApproved?: {
1557
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
1558
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
1487
1559
  } | undefined;
1488
1560
  } | undefined;
1489
1561
  currentProjectId?: string | undefined;
@@ -1787,6 +1859,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
1787
1859
  userId: string;
1788
1860
  isRead: boolean;
1789
1861
  createdAt: string;
1862
+ } | {
1863
+ type: "space-membership-approved";
1864
+ action: "open-space";
1865
+ metadata: {
1866
+ spaceId: string;
1867
+ spaceName: string;
1868
+ spaceShortId: string;
1869
+ spaceSlug: string | null | undefined;
1870
+ spaceAvatar: string | null | undefined;
1871
+ };
1872
+ id: string;
1873
+ userId: string;
1874
+ isRead: boolean;
1875
+ createdAt: string;
1790
1876
  })[];
1791
1877
  unreadCount: number;
1792
1878
  loading: boolean;
@@ -1795,64 +1881,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
1795
1881
  limit: number;
1796
1882
  notificationTemplates?: {
1797
1883
  entityComment?: {
1798
- title?: string | undefined;
1799
- content?: string | undefined;
1884
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
1885
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
1800
1886
  } | undefined;
1801
1887
  commentReply?: {
1802
- title?: string | undefined;
1803
- content?: string | undefined;
1888
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
1889
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
1804
1890
  } | undefined;
1805
1891
  entityMention?: {
1806
- title?: string | undefined;
1807
- content?: string | undefined;
1892
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
1893
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
1808
1894
  } | undefined;
1809
1895
  commentMention?: {
1810
- title?: string | undefined;
1811
- content?: string | undefined;
1896
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
1897
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
1812
1898
  } | undefined;
1813
1899
  entityUpvote?: {
1814
- title?: string | undefined;
1815
- content?: string | undefined;
1900
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
1901
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
1816
1902
  } | undefined;
1817
1903
  commentUpvote?: {
1818
- title?: string | undefined;
1819
- content?: string | undefined;
1904
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
1905
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
1820
1906
  } | undefined;
1821
1907
  entityReaction?: {
1822
- title?: string | undefined;
1823
- content?: string | undefined;
1908
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
1909
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
1824
1910
  } | undefined;
1825
1911
  commentReaction?: {
1826
- title?: string | undefined;
1827
- content?: string | undefined;
1912
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
1913
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
1828
1914
  } | undefined;
1829
1915
  entityReactionMilestoneSpecific?: {
1830
- title?: string | undefined;
1831
- content?: string | undefined;
1916
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
1917
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
1832
1918
  } | undefined;
1833
1919
  entityReactionMilestoneTotal?: {
1834
- title?: string | undefined;
1835
- content?: string | undefined;
1920
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
1921
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
1836
1922
  } | undefined;
1837
1923
  commentReactionMilestoneSpecific?: {
1838
- title?: string | undefined;
1839
- content?: string | undefined;
1924
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
1925
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
1840
1926
  } | undefined;
1841
1927
  commentReactionMilestoneTotal?: {
1842
- title?: string | undefined;
1843
- content?: string | undefined;
1928
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
1929
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
1844
1930
  } | undefined;
1845
1931
  newFollow?: {
1846
- title?: string | undefined;
1847
- content?: string | undefined;
1932
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
1933
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
1848
1934
  } | undefined;
1849
1935
  connectionRequest?: {
1850
- title?: string | undefined;
1851
- content?: string | undefined;
1936
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
1937
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
1852
1938
  } | undefined;
1853
1939
  connectionAccepted?: {
1854
- title?: string | undefined;
1855
- content?: string | undefined;
1940
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
1941
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
1942
+ } | undefined;
1943
+ spaceMembershipApproved?: {
1944
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
1945
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
1856
1946
  } | undefined;
1857
1947
  } | undefined;
1858
1948
  currentProjectId?: string | undefined;
@@ -2156,6 +2246,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
2156
2246
  userId: string;
2157
2247
  isRead: boolean;
2158
2248
  createdAt: string;
2249
+ } | {
2250
+ type: "space-membership-approved";
2251
+ action: "open-space";
2252
+ metadata: {
2253
+ spaceId: string;
2254
+ spaceName: string;
2255
+ spaceShortId: string;
2256
+ spaceSlug: string | null | undefined;
2257
+ spaceAvatar: string | null | undefined;
2258
+ };
2259
+ id: string;
2260
+ userId: string;
2261
+ isRead: boolean;
2262
+ createdAt: string;
2159
2263
  })[];
2160
2264
  unreadCount: number;
2161
2265
  loading: boolean;
@@ -2164,64 +2268,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
2164
2268
  limit: number;
2165
2269
  notificationTemplates?: {
2166
2270
  entityComment?: {
2167
- title?: string | undefined;
2168
- content?: string | undefined;
2271
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
2272
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
2169
2273
  } | undefined;
2170
2274
  commentReply?: {
2171
- title?: string | undefined;
2172
- content?: string | undefined;
2275
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
2276
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
2173
2277
  } | undefined;
2174
2278
  entityMention?: {
2175
- title?: string | undefined;
2176
- content?: string | undefined;
2279
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
2280
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
2177
2281
  } | undefined;
2178
2282
  commentMention?: {
2179
- title?: string | undefined;
2180
- content?: string | undefined;
2283
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
2284
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
2181
2285
  } | undefined;
2182
2286
  entityUpvote?: {
2183
- title?: string | undefined;
2184
- content?: string | undefined;
2287
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
2288
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
2185
2289
  } | undefined;
2186
2290
  commentUpvote?: {
2187
- title?: string | undefined;
2188
- content?: string | undefined;
2291
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
2292
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
2189
2293
  } | undefined;
2190
2294
  entityReaction?: {
2191
- title?: string | undefined;
2192
- content?: string | undefined;
2295
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
2296
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
2193
2297
  } | undefined;
2194
2298
  commentReaction?: {
2195
- title?: string | undefined;
2196
- content?: string | undefined;
2299
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
2300
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
2197
2301
  } | undefined;
2198
2302
  entityReactionMilestoneSpecific?: {
2199
- title?: string | undefined;
2200
- content?: string | undefined;
2303
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
2304
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
2201
2305
  } | undefined;
2202
2306
  entityReactionMilestoneTotal?: {
2203
- title?: string | undefined;
2204
- content?: string | undefined;
2307
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
2308
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
2205
2309
  } | undefined;
2206
2310
  commentReactionMilestoneSpecific?: {
2207
- title?: string | undefined;
2208
- content?: string | undefined;
2311
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
2312
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
2209
2313
  } | undefined;
2210
2314
  commentReactionMilestoneTotal?: {
2211
- title?: string | undefined;
2212
- content?: string | undefined;
2315
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
2316
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
2213
2317
  } | undefined;
2214
2318
  newFollow?: {
2215
- title?: string | undefined;
2216
- content?: string | undefined;
2319
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
2320
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
2217
2321
  } | undefined;
2218
2322
  connectionRequest?: {
2219
- title?: string | undefined;
2220
- content?: string | undefined;
2323
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
2324
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
2221
2325
  } | undefined;
2222
2326
  connectionAccepted?: {
2223
- title?: string | undefined;
2224
- content?: string | undefined;
2327
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
2328
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
2329
+ } | undefined;
2330
+ spaceMembershipApproved?: {
2331
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
2332
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
2225
2333
  } | undefined;
2226
2334
  } | undefined;
2227
2335
  currentProjectId?: string | undefined;
@@ -2525,6 +2633,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
2525
2633
  userId: string;
2526
2634
  isRead: boolean;
2527
2635
  createdAt: string;
2636
+ } | {
2637
+ type: "space-membership-approved";
2638
+ action: "open-space";
2639
+ metadata: {
2640
+ spaceId: string;
2641
+ spaceName: string;
2642
+ spaceShortId: string;
2643
+ spaceSlug: string | null | undefined;
2644
+ spaceAvatar: string | null | undefined;
2645
+ };
2646
+ id: string;
2647
+ userId: string;
2648
+ isRead: boolean;
2649
+ createdAt: string;
2528
2650
  })[];
2529
2651
  unreadCount: number;
2530
2652
  loading: boolean;
@@ -2533,64 +2655,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
2533
2655
  limit: number;
2534
2656
  notificationTemplates?: {
2535
2657
  entityComment?: {
2536
- title?: string | undefined;
2537
- content?: string | undefined;
2658
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
2659
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
2538
2660
  } | undefined;
2539
2661
  commentReply?: {
2540
- title?: string | undefined;
2541
- content?: string | undefined;
2662
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
2663
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
2542
2664
  } | undefined;
2543
2665
  entityMention?: {
2544
- title?: string | undefined;
2545
- content?: string | undefined;
2666
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
2667
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
2546
2668
  } | undefined;
2547
2669
  commentMention?: {
2548
- title?: string | undefined;
2549
- content?: string | undefined;
2670
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
2671
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
2550
2672
  } | undefined;
2551
2673
  entityUpvote?: {
2552
- title?: string | undefined;
2553
- content?: string | undefined;
2674
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
2675
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
2554
2676
  } | undefined;
2555
2677
  commentUpvote?: {
2556
- title?: string | undefined;
2557
- content?: string | undefined;
2678
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
2679
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
2558
2680
  } | undefined;
2559
2681
  entityReaction?: {
2560
- title?: string | undefined;
2561
- content?: string | undefined;
2682
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
2683
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
2562
2684
  } | undefined;
2563
2685
  commentReaction?: {
2564
- title?: string | undefined;
2565
- content?: string | undefined;
2686
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
2687
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
2566
2688
  } | undefined;
2567
2689
  entityReactionMilestoneSpecific?: {
2568
- title?: string | undefined;
2569
- content?: string | undefined;
2690
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
2691
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
2570
2692
  } | undefined;
2571
2693
  entityReactionMilestoneTotal?: {
2572
- title?: string | undefined;
2573
- content?: string | undefined;
2694
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
2695
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
2574
2696
  } | undefined;
2575
2697
  commentReactionMilestoneSpecific?: {
2576
- title?: string | undefined;
2577
- content?: string | undefined;
2698
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
2699
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
2578
2700
  } | undefined;
2579
2701
  commentReactionMilestoneTotal?: {
2580
- title?: string | undefined;
2581
- content?: string | undefined;
2702
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
2703
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
2582
2704
  } | undefined;
2583
2705
  newFollow?: {
2584
- title?: string | undefined;
2585
- content?: string | undefined;
2706
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
2707
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
2586
2708
  } | undefined;
2587
2709
  connectionRequest?: {
2588
- title?: string | undefined;
2589
- content?: string | undefined;
2710
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
2711
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
2590
2712
  } | undefined;
2591
2713
  connectionAccepted?: {
2592
- title?: string | undefined;
2593
- content?: string | undefined;
2714
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
2715
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
2716
+ } | undefined;
2717
+ spaceMembershipApproved?: {
2718
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
2719
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
2594
2720
  } | undefined;
2595
2721
  } | undefined;
2596
2722
  currentProjectId?: string | undefined;
@@ -2898,6 +3024,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
2898
3024
  userId: string;
2899
3025
  isRead: boolean;
2900
3026
  createdAt: string;
3027
+ } | {
3028
+ type: "space-membership-approved";
3029
+ action: "open-space";
3030
+ metadata: {
3031
+ spaceId: string;
3032
+ spaceName: string;
3033
+ spaceShortId: string;
3034
+ spaceSlug: string | null | undefined;
3035
+ spaceAvatar: string | null | undefined;
3036
+ };
3037
+ id: string;
3038
+ userId: string;
3039
+ isRead: boolean;
3040
+ createdAt: string;
2901
3041
  })[];
2902
3042
  unreadCount: number;
2903
3043
  loading: boolean;
@@ -2906,64 +3046,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
2906
3046
  limit: number;
2907
3047
  notificationTemplates?: {
2908
3048
  entityComment?: {
2909
- title?: string | undefined;
2910
- content?: string | undefined;
3049
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
3050
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
2911
3051
  } | undefined;
2912
3052
  commentReply?: {
2913
- title?: string | undefined;
2914
- content?: string | undefined;
3053
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
3054
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
2915
3055
  } | undefined;
2916
3056
  entityMention?: {
2917
- title?: string | undefined;
2918
- content?: string | undefined;
3057
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
3058
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
2919
3059
  } | undefined;
2920
3060
  commentMention?: {
2921
- title?: string | undefined;
2922
- content?: string | undefined;
3061
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
3062
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
2923
3063
  } | undefined;
2924
3064
  entityUpvote?: {
2925
- title?: string | undefined;
2926
- content?: string | undefined;
3065
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
3066
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
2927
3067
  } | undefined;
2928
3068
  commentUpvote?: {
2929
- title?: string | undefined;
2930
- content?: string | undefined;
3069
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
3070
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
2931
3071
  } | undefined;
2932
3072
  entityReaction?: {
2933
- title?: string | undefined;
2934
- content?: string | undefined;
3073
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
3074
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
2935
3075
  } | undefined;
2936
3076
  commentReaction?: {
2937
- title?: string | undefined;
2938
- content?: string | undefined;
3077
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
3078
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
2939
3079
  } | undefined;
2940
3080
  entityReactionMilestoneSpecific?: {
2941
- title?: string | undefined;
2942
- content?: string | undefined;
3081
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
3082
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
2943
3083
  } | undefined;
2944
3084
  entityReactionMilestoneTotal?: {
2945
- title?: string | undefined;
2946
- content?: string | undefined;
3085
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
3086
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
2947
3087
  } | undefined;
2948
3088
  commentReactionMilestoneSpecific?: {
2949
- title?: string | undefined;
2950
- content?: string | undefined;
3089
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
3090
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
2951
3091
  } | undefined;
2952
3092
  commentReactionMilestoneTotal?: {
2953
- title?: string | undefined;
2954
- content?: string | undefined;
3093
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
3094
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
2955
3095
  } | undefined;
2956
3096
  newFollow?: {
2957
- title?: string | undefined;
2958
- content?: string | undefined;
3097
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
3098
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
2959
3099
  } | undefined;
2960
3100
  connectionRequest?: {
2961
- title?: string | undefined;
2962
- content?: string | undefined;
3101
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
3102
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
2963
3103
  } | undefined;
2964
3104
  connectionAccepted?: {
2965
- title?: string | undefined;
2966
- content?: string | undefined;
3105
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
3106
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
3107
+ } | undefined;
3108
+ spaceMembershipApproved?: {
3109
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
3110
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
2967
3111
  } | undefined;
2968
3112
  } | undefined;
2969
3113
  currentProjectId?: string | undefined;
@@ -3267,6 +3411,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
3267
3411
  userId: string;
3268
3412
  isRead: boolean;
3269
3413
  createdAt: string;
3414
+ } | {
3415
+ type: "space-membership-approved";
3416
+ action: "open-space";
3417
+ metadata: {
3418
+ spaceId: string;
3419
+ spaceName: string;
3420
+ spaceShortId: string;
3421
+ spaceSlug: string | null | undefined;
3422
+ spaceAvatar: string | null | undefined;
3423
+ };
3424
+ id: string;
3425
+ userId: string;
3426
+ isRead: boolean;
3427
+ createdAt: string;
3270
3428
  })[];
3271
3429
  unreadCount: number;
3272
3430
  loading: boolean;
@@ -3275,64 +3433,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
3275
3433
  limit: number;
3276
3434
  notificationTemplates?: {
3277
3435
  entityComment?: {
3278
- title?: string | undefined;
3279
- content?: string | undefined;
3436
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
3437
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
3280
3438
  } | undefined;
3281
3439
  commentReply?: {
3282
- title?: string | undefined;
3283
- content?: string | undefined;
3440
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
3441
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
3284
3442
  } | undefined;
3285
3443
  entityMention?: {
3286
- title?: string | undefined;
3287
- content?: string | undefined;
3444
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
3445
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
3288
3446
  } | undefined;
3289
3447
  commentMention?: {
3290
- title?: string | undefined;
3291
- content?: string | undefined;
3448
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
3449
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
3292
3450
  } | undefined;
3293
3451
  entityUpvote?: {
3294
- title?: string | undefined;
3295
- content?: string | undefined;
3452
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
3453
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
3296
3454
  } | undefined;
3297
3455
  commentUpvote?: {
3298
- title?: string | undefined;
3299
- content?: string | undefined;
3456
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
3457
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
3300
3458
  } | undefined;
3301
3459
  entityReaction?: {
3302
- title?: string | undefined;
3303
- content?: string | undefined;
3460
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
3461
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
3304
3462
  } | undefined;
3305
3463
  commentReaction?: {
3306
- title?: string | undefined;
3307
- content?: string | undefined;
3464
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
3465
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
3308
3466
  } | undefined;
3309
3467
  entityReactionMilestoneSpecific?: {
3310
- title?: string | undefined;
3311
- content?: string | undefined;
3468
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
3469
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
3312
3470
  } | undefined;
3313
3471
  entityReactionMilestoneTotal?: {
3314
- title?: string | undefined;
3315
- content?: string | undefined;
3472
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
3473
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
3316
3474
  } | undefined;
3317
3475
  commentReactionMilestoneSpecific?: {
3318
- title?: string | undefined;
3319
- content?: string | undefined;
3476
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
3477
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
3320
3478
  } | undefined;
3321
3479
  commentReactionMilestoneTotal?: {
3322
- title?: string | undefined;
3323
- content?: string | undefined;
3480
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
3481
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
3324
3482
  } | undefined;
3325
3483
  newFollow?: {
3326
- title?: string | undefined;
3327
- content?: string | undefined;
3484
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
3485
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
3328
3486
  } | undefined;
3329
3487
  connectionRequest?: {
3330
- title?: string | undefined;
3331
- content?: string | undefined;
3488
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
3489
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
3332
3490
  } | undefined;
3333
3491
  connectionAccepted?: {
3334
- title?: string | undefined;
3335
- content?: string | undefined;
3492
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
3493
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
3494
+ } | undefined;
3495
+ spaceMembershipApproved?: {
3496
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
3497
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
3336
3498
  } | undefined;
3337
3499
  } | undefined;
3338
3500
  currentProjectId?: string | undefined;
@@ -3636,6 +3798,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
3636
3798
  userId: string;
3637
3799
  isRead: boolean;
3638
3800
  createdAt: string;
3801
+ } | {
3802
+ type: "space-membership-approved";
3803
+ action: "open-space";
3804
+ metadata: {
3805
+ spaceId: string;
3806
+ spaceName: string;
3807
+ spaceShortId: string;
3808
+ spaceSlug: string | null | undefined;
3809
+ spaceAvatar: string | null | undefined;
3810
+ };
3811
+ id: string;
3812
+ userId: string;
3813
+ isRead: boolean;
3814
+ createdAt: string;
3639
3815
  })[];
3640
3816
  unreadCount: number;
3641
3817
  loading: boolean;
@@ -3644,64 +3820,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
3644
3820
  limit: number;
3645
3821
  notificationTemplates?: {
3646
3822
  entityComment?: {
3647
- title?: string | undefined;
3648
- content?: string | undefined;
3823
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
3824
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
3649
3825
  } | undefined;
3650
3826
  commentReply?: {
3651
- title?: string | undefined;
3652
- content?: string | undefined;
3827
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
3828
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
3653
3829
  } | undefined;
3654
3830
  entityMention?: {
3655
- title?: string | undefined;
3656
- content?: string | undefined;
3831
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
3832
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
3657
3833
  } | undefined;
3658
3834
  commentMention?: {
3659
- title?: string | undefined;
3660
- content?: string | undefined;
3835
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
3836
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
3661
3837
  } | undefined;
3662
3838
  entityUpvote?: {
3663
- title?: string | undefined;
3664
- content?: string | undefined;
3839
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
3840
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
3665
3841
  } | undefined;
3666
3842
  commentUpvote?: {
3667
- title?: string | undefined;
3668
- content?: string | undefined;
3843
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
3844
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
3669
3845
  } | undefined;
3670
3846
  entityReaction?: {
3671
- title?: string | undefined;
3672
- content?: string | undefined;
3847
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
3848
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
3673
3849
  } | undefined;
3674
3850
  commentReaction?: {
3675
- title?: string | undefined;
3676
- content?: string | undefined;
3851
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
3852
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
3677
3853
  } | undefined;
3678
3854
  entityReactionMilestoneSpecific?: {
3679
- title?: string | undefined;
3680
- content?: string | undefined;
3855
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
3856
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
3681
3857
  } | undefined;
3682
3858
  entityReactionMilestoneTotal?: {
3683
- title?: string | undefined;
3684
- content?: string | undefined;
3859
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
3860
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
3685
3861
  } | undefined;
3686
3862
  commentReactionMilestoneSpecific?: {
3687
- title?: string | undefined;
3688
- content?: string | undefined;
3863
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
3864
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
3689
3865
  } | undefined;
3690
3866
  commentReactionMilestoneTotal?: {
3691
- title?: string | undefined;
3692
- content?: string | undefined;
3867
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
3868
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
3693
3869
  } | undefined;
3694
3870
  newFollow?: {
3695
- title?: string | undefined;
3696
- content?: string | undefined;
3871
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
3872
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
3697
3873
  } | undefined;
3698
3874
  connectionRequest?: {
3699
- title?: string | undefined;
3700
- content?: string | undefined;
3875
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
3876
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
3701
3877
  } | undefined;
3702
3878
  connectionAccepted?: {
3703
- title?: string | undefined;
3704
- content?: string | undefined;
3879
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
3880
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
3881
+ } | undefined;
3882
+ spaceMembershipApproved?: {
3883
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
3884
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
3705
3885
  } | undefined;
3706
3886
  } | undefined;
3707
3887
  currentProjectId?: string | undefined;
@@ -4005,6 +4185,20 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
4005
4185
  userId: string;
4006
4186
  isRead: boolean;
4007
4187
  createdAt: string;
4188
+ } | {
4189
+ type: "space-membership-approved";
4190
+ action: "open-space";
4191
+ metadata: {
4192
+ spaceId: string;
4193
+ spaceName: string;
4194
+ spaceShortId: string;
4195
+ spaceSlug: string | null | undefined;
4196
+ spaceAvatar: string | null | undefined;
4197
+ };
4198
+ id: string;
4199
+ userId: string;
4200
+ isRead: boolean;
4201
+ createdAt: string;
4008
4202
  })[];
4009
4203
  unreadCount: number;
4010
4204
  loading: boolean;
@@ -4013,64 +4207,68 @@ export declare const appNotificationsSlice: import("@reduxjs/toolkit").Slice<App
4013
4207
  limit: number;
4014
4208
  notificationTemplates?: {
4015
4209
  entityComment?: {
4016
- title?: string | undefined;
4017
- content?: string | undefined;
4210
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
4211
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityCommentTemplateVars> | undefined;
4018
4212
  } | undefined;
4019
4213
  commentReply?: {
4020
- title?: string | undefined;
4021
- content?: string | undefined;
4214
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
4215
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReplyTemplateVars> | undefined;
4022
4216
  } | undefined;
4023
4217
  entityMention?: {
4024
- title?: string | undefined;
4025
- content?: string | undefined;
4218
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
4219
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityMentionTemplateVars> | undefined;
4026
4220
  } | undefined;
4027
4221
  commentMention?: {
4028
- title?: string | undefined;
4029
- content?: string | undefined;
4222
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
4223
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentMentionTemplateVars> | undefined;
4030
4224
  } | undefined;
4031
4225
  entityUpvote?: {
4032
- title?: string | undefined;
4033
- content?: string | undefined;
4226
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
4227
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityUpvoteTemplateVars> | undefined;
4034
4228
  } | undefined;
4035
4229
  commentUpvote?: {
4036
- title?: string | undefined;
4037
- content?: string | undefined;
4230
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
4231
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentUpvoteTemplateVars> | undefined;
4038
4232
  } | undefined;
4039
4233
  entityReaction?: {
4040
- title?: string | undefined;
4041
- content?: string | undefined;
4234
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
4235
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionTemplateVars> | undefined;
4042
4236
  } | undefined;
4043
4237
  commentReaction?: {
4044
- title?: string | undefined;
4045
- content?: string | undefined;
4238
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
4239
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionTemplateVars> | undefined;
4046
4240
  } | undefined;
4047
4241
  entityReactionMilestoneSpecific?: {
4048
- title?: string | undefined;
4049
- content?: string | undefined;
4242
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
4243
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneSpecificTemplateVars> | undefined;
4050
4244
  } | undefined;
4051
4245
  entityReactionMilestoneTotal?: {
4052
- title?: string | undefined;
4053
- content?: string | undefined;
4246
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
4247
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").EntityReactionMilestoneTotalTemplateVars> | undefined;
4054
4248
  } | undefined;
4055
4249
  commentReactionMilestoneSpecific?: {
4056
- title?: string | undefined;
4057
- content?: string | undefined;
4250
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
4251
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneSpecificTemplateVars> | undefined;
4058
4252
  } | undefined;
4059
4253
  commentReactionMilestoneTotal?: {
4060
- title?: string | undefined;
4061
- content?: string | undefined;
4254
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
4255
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").CommentReactionMilestoneTotalTemplateVars> | undefined;
4062
4256
  } | undefined;
4063
4257
  newFollow?: {
4064
- title?: string | undefined;
4065
- content?: string | undefined;
4258
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
4259
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").NewFollowTemplateVars> | undefined;
4066
4260
  } | undefined;
4067
4261
  connectionRequest?: {
4068
- title?: string | undefined;
4069
- content?: string | undefined;
4262
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
4263
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionRequestTemplateVars> | undefined;
4070
4264
  } | undefined;
4071
4265
  connectionAccepted?: {
4072
- title?: string | undefined;
4073
- content?: string | undefined;
4266
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
4267
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").ConnectionAcceptedTemplateVars> | undefined;
4268
+ } | undefined;
4269
+ spaceMembershipApproved?: {
4270
+ title?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
4271
+ content?: import("../../interfaces/models/AppNotification").TemplateField<import("../../interfaces/models/AppNotification").SpaceMembershipApprovedTemplateVars> | undefined;
4074
4272
  } | undefined;
4075
4273
  } | undefined;
4076
4274
  currentProjectId?: string | undefined;