@webinex/chatify 1.0.3-rc3 → 2.0.0-build10

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 (408) hide show
  1. package/dist/css/chatify.css +137 -105
  2. package/dist/esm/index.js +10 -1
  3. package/dist/esm/index.js.map +1 -1
  4. package/dist/esm/types/core/api/accountApi.d.ts +5 -0
  5. package/dist/esm/types/core/api/api.d.ts +2380 -0
  6. package/dist/esm/types/core/api/baseApi.d.ts +15 -0
  7. package/dist/esm/types/core/api/chatApi.d.ts +16 -0
  8. package/dist/esm/types/core/api/chatListApi.d.ts +5 -0
  9. package/dist/esm/types/core/api/chatMemberApi.d.ts +6 -0
  10. package/dist/esm/types/core/api/chatMessageApi.d.ts +3 -0
  11. package/dist/esm/types/core/api/index.d.ts +1 -0
  12. package/dist/esm/types/core/api/threadApi.d.ts +1 -0
  13. package/dist/esm/types/core/api/threadMessageApi.d.ts +6 -0
  14. package/dist/esm/types/core/client.d.ts +56 -9
  15. package/dist/esm/types/core/constants.d.ts +1 -0
  16. package/dist/esm/types/core/debounce.d.ts +27 -0
  17. package/dist/esm/types/core/index.d.ts +3 -16
  18. package/dist/esm/types/core/types.d.ts +105 -0
  19. package/dist/esm/types/index.d.ts +0 -1
  20. package/dist/esm/types/ui/Chat/ChatContext.d.ts +10 -0
  21. package/dist/esm/types/ui/Chat/ChatEditableHeaderName.d.ts +2 -0
  22. package/dist/esm/types/ui/Chat/ChatHeaderActions.d.ts +2 -0
  23. package/dist/esm/types/ui/Chat/ChatPanel.d.ts +13 -0
  24. package/dist/esm/types/ui/Chat/ChatView.d.ts +17 -0
  25. package/dist/esm/types/ui/Chat/Members/ChatMembersButton.d.ts +2 -0
  26. package/dist/esm/types/ui/Chat/Members/ChatMembersPanel.d.ts +2 -0
  27. package/dist/esm/types/ui/Chat/Members/ChatMembersPreview.d.ts +2 -0
  28. package/dist/esm/types/ui/Chat/Members/index.d.ts +11 -0
  29. package/dist/esm/types/ui/Chat/index.d.ts +6 -0
  30. package/dist/esm/types/ui/ChatGroup/ChatGroupContext.d.ts +12 -0
  31. package/dist/esm/types/ui/ChatGroup/ChatGroupPanel.d.ts +15 -0
  32. package/dist/esm/types/ui/ChatGroup/Create/CreateChatButton.d.ts +2 -0
  33. package/dist/esm/types/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatForm.d.ts +1 -1
  34. package/dist/esm/types/ui/ChatGroup/Create/CreateChatMemberInput.d.ts +5 -0
  35. package/dist/esm/types/ui/ChatGroup/Create/CreateChatNameInput.d.ts +5 -0
  36. package/dist/esm/types/ui/ChatGroup/Create/CreateChatPanel.d.ts +2 -0
  37. package/dist/esm/types/ui/ChatGroup/Create/index.d.ts +17 -0
  38. package/dist/esm/types/ui/ChatGroup/Layout/ChatGroupAside.d.ts +2 -0
  39. package/dist/esm/types/ui/ChatGroup/Layout/ChatGroupBody.d.ts +2 -0
  40. package/dist/esm/types/ui/ChatGroup/Layout/ChatGroupFooter.d.ts +2 -0
  41. package/dist/esm/types/ui/ChatGroup/Layout/ChatGroupHeader.d.ts +2 -0
  42. package/dist/esm/types/ui/ChatGroup/Layout/ChatGroupMain.d.ts +2 -0
  43. package/dist/esm/types/ui/ChatGroup/Layout/index.d.ts +17 -0
  44. package/dist/esm/types/ui/ChatGroup/List/ChatList.d.ts +2 -0
  45. package/dist/esm/types/ui/ChatGroup/List/ChatListItemAvatar.d.ts +3 -0
  46. package/dist/esm/types/ui/ChatGroup/List/ChatListItemBox.d.ts +6 -0
  47. package/dist/esm/types/ui/ChatGroup/List/ChatListItemLastMessage.d.ts +3 -0
  48. package/dist/esm/types/ui/ChatGroup/List/ChatListItemLastMessageAuthor.d.ts +3 -0
  49. package/dist/esm/types/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessageContent.d.ts +1 -1
  50. package/dist/esm/types/ui/ChatGroup/List/ChatListItemLastMessageSentAt.d.ts +3 -0
  51. package/dist/esm/types/ui/ChatGroup/List/ChatListItemName.d.ts +3 -0
  52. package/dist/esm/types/ui/ChatGroup/List/ChatListItemUnreadCount.d.ts +3 -0
  53. package/dist/esm/types/ui/ChatGroup/List/index.d.ts +29 -0
  54. package/dist/esm/types/ui/ChatGroup/index.d.ts +5 -0
  55. package/dist/esm/types/ui/Chatify.d.ts +8 -72
  56. package/dist/esm/types/ui/Conversation/Conversation.d.ts +21 -0
  57. package/dist/esm/types/ui/Conversation/ConversationActions.d.ts +2 -0
  58. package/dist/esm/types/ui/Conversation/ConversationBody.d.ts +2 -0
  59. package/dist/esm/types/ui/Conversation/ConversationContext.d.ts +20 -0
  60. package/dist/esm/types/ui/Conversation/ConversationHeader.d.ts +2 -0
  61. package/dist/esm/types/ui/Conversation/ConversationName.d.ts +2 -0
  62. package/dist/esm/types/ui/Conversation/InputBox/InputBox.d.ts +2 -0
  63. package/dist/esm/types/ui/Conversation/InputBox/InputFilesBox.d.ts +2 -0
  64. package/dist/esm/types/ui/Conversation/InputBox/InputSubmitButtonBox.d.ts +5 -0
  65. package/dist/esm/types/ui/Conversation/InputBox/InputTextBox.d.ts +8 -0
  66. package/dist/esm/types/ui/Conversation/InputBox/index.d.ts +14 -0
  67. package/dist/esm/types/ui/Conversation/Message/MessageAuthor.d.ts +3 -0
  68. package/dist/esm/types/ui/Conversation/Message/MessageBox.d.ts +6 -0
  69. package/dist/esm/types/ui/Conversation/Message/MessageContent.d.ts +3 -0
  70. package/dist/esm/types/ui/Conversation/Message/MessageInfoBox.d.ts +3 -0
  71. package/dist/esm/types/ui/{Message → Conversation/Message}/MessageRow.d.ts +1 -1
  72. package/dist/esm/types/ui/Conversation/Message/MessageText.d.ts +3 -0
  73. package/dist/esm/types/ui/Conversation/Message/index.d.ts +20 -0
  74. package/dist/esm/types/ui/Conversation/NextObserver/NextMessagesObserver.d.ts +5 -0
  75. package/dist/esm/types/ui/Conversation/NextObserver/index.d.ts +1 -0
  76. package/dist/esm/types/ui/Conversation/ReadObserver/MessageReadObserver.d.ts +6 -0
  77. package/dist/esm/types/ui/Conversation/ReadObserver/index.d.ts +1 -0
  78. package/dist/esm/types/ui/Conversation/SendingMessage/SendingMessageBox.d.ts +7 -0
  79. package/dist/esm/types/ui/Conversation/SendingMessage/SendingMessageContent.d.ts +3 -0
  80. package/dist/esm/types/ui/Conversation/SendingMessage/SendingMessageInfoBox.d.ts +3 -0
  81. package/dist/esm/types/ui/{SendingMessage/SendingMessageInfoBox.d.ts → Conversation/SendingMessage/SendingMessageText.d.ts} +1 -1
  82. package/dist/esm/types/ui/Conversation/SendingMessage/index.d.ts +14 -0
  83. package/dist/esm/types/ui/Conversation/SystemMessage/SystemMessageBox.d.ts +6 -0
  84. package/dist/esm/types/ui/Conversation/SystemMessage/SystemMessageRow.d.ts +9 -0
  85. package/dist/esm/types/ui/Conversation/SystemMessage/index.d.ts +8 -0
  86. package/dist/esm/types/ui/Conversation/index.d.ts +12 -0
  87. package/dist/esm/types/ui/{InputBox/InputFilesBox.d.ts → Thread/ThreadActions.d.ts} +1 -1
  88. package/dist/esm/types/ui/Thread/ThreadContext.d.ts +8 -0
  89. package/dist/esm/types/ui/Thread/ThreadPanel.d.ts +14 -0
  90. package/dist/esm/types/ui/Thread/index.d.ts +3 -0
  91. package/dist/esm/types/ui/color.d.ts +6 -0
  92. package/dist/esm/types/ui/common/Avatar.d.ts +6 -0
  93. package/dist/esm/types/ui/common/Icon.d.ts +20 -0
  94. package/dist/esm/types/ui/common/MessageSkeleton.d.ts +5 -0
  95. package/dist/esm/types/ui/common/index.d.ts +11 -0
  96. package/dist/esm/types/ui/customize.d.ts +5 -7
  97. package/dist/esm/types/ui/index.d.ts +9 -9
  98. package/dist/esm/types/ui/localizer.d.ts +2 -6
  99. package/dist/index.d.ts +2800 -433
  100. package/package.json +16 -15
  101. package/src/core/api/accountApi.ts +11 -0
  102. package/src/core/api/api.ts +642 -0
  103. package/src/core/api/baseApi.ts +38 -0
  104. package/src/core/api/chatApi.ts +87 -0
  105. package/src/core/api/chatListApi.ts +134 -0
  106. package/src/core/api/chatMemberApi.ts +20 -0
  107. package/src/core/api/chatMessageApi.ts +12 -0
  108. package/src/core/api/index.ts +1 -0
  109. package/src/core/api/threadApi.ts +8 -0
  110. package/src/core/api/threadMessageApi.ts +20 -0
  111. package/src/core/client.ts +157 -31
  112. package/src/core/constants.ts +1 -0
  113. package/src/core/debounce.ts +90 -0
  114. package/src/core/index.ts +3 -16
  115. package/src/core/types.tsx +152 -0
  116. package/src/index.ts +0 -1
  117. package/src/styles/aside.scss +31 -2
  118. package/src/styles/chat.scss +34 -37
  119. package/src/styles/index.scss +7 -5
  120. package/src/styles/input.scss +3 -1
  121. package/src/styles/members.scss +13 -0
  122. package/src/types/core/api/accountApi.d.ts +5 -0
  123. package/src/types/core/api/api.d.ts +2380 -0
  124. package/src/types/core/api/baseApi.d.ts +15 -0
  125. package/src/types/core/api/chatApi.d.ts +16 -0
  126. package/src/types/core/api/chatListApi.d.ts +5 -0
  127. package/src/types/core/api/chatMemberApi.d.ts +6 -0
  128. package/src/types/core/api/chatMessageApi.d.ts +3 -0
  129. package/src/types/core/api/index.d.ts +1 -0
  130. package/src/types/core/api/threadApi.d.ts +1 -0
  131. package/src/types/core/api/threadMessageApi.d.ts +6 -0
  132. package/src/types/core/client.d.ts +83 -0
  133. package/src/types/core/constants.d.ts +1 -0
  134. package/src/types/core/debounce.d.ts +27 -0
  135. package/src/types/core/index.d.ts +4 -0
  136. package/src/types/core/types.d.ts +105 -0
  137. package/src/types/index.d.ts +2 -0
  138. package/src/types/ui/Chat/ChatContext.d.ts +10 -0
  139. package/src/types/ui/Chat/ChatEditableHeaderName.d.ts +2 -0
  140. package/src/types/ui/Chat/ChatHeaderActions.d.ts +2 -0
  141. package/src/types/ui/Chat/ChatPanel.d.ts +13 -0
  142. package/src/types/ui/Chat/ChatView.d.ts +17 -0
  143. package/src/types/ui/Chat/Members/ChatMembersButton.d.ts +2 -0
  144. package/src/types/ui/Chat/Members/ChatMembersPanel.d.ts +2 -0
  145. package/src/types/ui/Chat/Members/ChatMembersPreview.d.ts +2 -0
  146. package/src/types/ui/Chat/Members/index.d.ts +11 -0
  147. package/src/types/ui/Chat/index.d.ts +6 -0
  148. package/src/types/ui/ChatGroup/ChatGroupContext.d.ts +12 -0
  149. package/src/types/ui/ChatGroup/ChatGroupPanel.d.ts +15 -0
  150. package/src/types/ui/ChatGroup/Create/CreateChatButton.d.ts +2 -0
  151. package/src/types/ui/ChatGroup/Create/CreateChatForm.d.ts +11 -0
  152. package/src/types/ui/ChatGroup/Create/CreateChatMemberInput.d.ts +5 -0
  153. package/src/types/ui/ChatGroup/Create/CreateChatNameInput.d.ts +5 -0
  154. package/src/types/ui/ChatGroup/Create/CreateChatPanel.d.ts +2 -0
  155. package/src/types/ui/ChatGroup/Create/index.d.ts +17 -0
  156. package/src/types/ui/ChatGroup/Layout/ChatGroupAside.d.ts +2 -0
  157. package/src/types/ui/ChatGroup/Layout/ChatGroupBody.d.ts +2 -0
  158. package/src/types/ui/ChatGroup/Layout/ChatGroupFooter.d.ts +2 -0
  159. package/src/types/ui/ChatGroup/Layout/ChatGroupHeader.d.ts +2 -0
  160. package/src/types/ui/ChatGroup/Layout/ChatGroupMain.d.ts +2 -0
  161. package/src/types/ui/ChatGroup/Layout/index.d.ts +17 -0
  162. package/src/types/ui/ChatGroup/List/ChatList.d.ts +2 -0
  163. package/src/types/ui/ChatGroup/List/ChatListItemAvatar.d.ts +3 -0
  164. package/src/types/ui/ChatGroup/List/ChatListItemBox.d.ts +6 -0
  165. package/src/types/ui/ChatGroup/List/ChatListItemLastMessage.d.ts +3 -0
  166. package/src/types/ui/ChatGroup/List/ChatListItemLastMessageAuthor.d.ts +3 -0
  167. package/src/types/ui/ChatGroup/List/ChatListItemLastMessageContent.d.ts +3 -0
  168. package/src/types/ui/ChatGroup/List/ChatListItemLastMessageSentAt.d.ts +3 -0
  169. package/src/types/ui/ChatGroup/List/ChatListItemName.d.ts +3 -0
  170. package/src/types/ui/ChatGroup/List/ChatListItemUnreadCount.d.ts +3 -0
  171. package/src/types/ui/ChatGroup/List/index.d.ts +29 -0
  172. package/src/types/ui/ChatGroup/index.d.ts +5 -0
  173. package/src/types/ui/Chatify.d.ts +8 -0
  174. package/src/types/ui/Conversation/Conversation.d.ts +21 -0
  175. package/src/types/ui/Conversation/ConversationActions.d.ts +2 -0
  176. package/src/types/ui/Conversation/ConversationBody.d.ts +2 -0
  177. package/src/types/ui/Conversation/ConversationContext.d.ts +20 -0
  178. package/src/types/ui/Conversation/ConversationHeader.d.ts +2 -0
  179. package/src/types/ui/Conversation/ConversationName.d.ts +2 -0
  180. package/src/types/ui/Conversation/InputBox/InputBox.d.ts +2 -0
  181. package/src/types/ui/Conversation/InputBox/InputFilesBox.d.ts +2 -0
  182. package/src/types/ui/Conversation/InputBox/InputSubmitButtonBox.d.ts +5 -0
  183. package/src/types/ui/Conversation/InputBox/InputTextBox.d.ts +8 -0
  184. package/src/types/ui/Conversation/InputBox/index.d.ts +14 -0
  185. package/src/types/ui/Conversation/Message/MessageAuthor.d.ts +3 -0
  186. package/src/types/ui/Conversation/Message/MessageBox.d.ts +6 -0
  187. package/src/types/ui/Conversation/Message/MessageContent.d.ts +3 -0
  188. package/src/types/ui/Conversation/Message/MessageInfoBox.d.ts +3 -0
  189. package/src/types/ui/Conversation/Message/MessageRow.d.ts +6 -0
  190. package/src/types/ui/Conversation/Message/MessageText.d.ts +3 -0
  191. package/src/types/ui/Conversation/Message/index.d.ts +20 -0
  192. package/src/types/ui/Conversation/NextObserver/NextMessagesObserver.d.ts +5 -0
  193. package/src/types/ui/Conversation/NextObserver/index.d.ts +1 -0
  194. package/src/types/ui/Conversation/ReadObserver/MessageReadObserver.d.ts +6 -0
  195. package/src/types/ui/Conversation/ReadObserver/index.d.ts +1 -0
  196. package/src/types/ui/Conversation/SendingMessage/SendingMessageBox.d.ts +7 -0
  197. package/src/types/ui/Conversation/SendingMessage/SendingMessageContent.d.ts +3 -0
  198. package/src/types/ui/Conversation/SendingMessage/SendingMessageInfoBox.d.ts +3 -0
  199. package/{dist/esm/types/ui/SendingMessage/SendingMessageContent.d.ts → src/types/ui/Conversation/SendingMessage/SendingMessageText.d.ts} +1 -1
  200. package/src/types/ui/Conversation/SendingMessage/index.d.ts +14 -0
  201. package/src/types/ui/Conversation/SystemMessage/SystemMessageBox.d.ts +6 -0
  202. package/src/types/ui/Conversation/SystemMessage/SystemMessageRow.d.ts +9 -0
  203. package/src/types/ui/Conversation/SystemMessage/index.d.ts +8 -0
  204. package/src/types/ui/Conversation/index.d.ts +12 -0
  205. package/src/types/ui/Thread/ThreadActions.d.ts +2 -0
  206. package/src/types/ui/Thread/ThreadContext.d.ts +8 -0
  207. package/src/types/ui/Thread/ThreadPanel.d.ts +14 -0
  208. package/src/types/ui/Thread/index.d.ts +3 -0
  209. package/src/types/ui/color.d.ts +6 -0
  210. package/src/types/ui/common/Avatar.d.ts +6 -0
  211. package/src/types/ui/common/Icon.d.ts +20 -0
  212. package/src/types/ui/common/MessageSkeleton.d.ts +5 -0
  213. package/src/types/ui/common/index.d.ts +11 -0
  214. package/src/types/ui/customize.d.ts +9 -0
  215. package/src/types/ui/index.d.ts +11 -0
  216. package/src/types/ui/localizer.d.ts +35 -0
  217. package/src/ui/Chat/ChatContext.tsx +30 -0
  218. package/src/ui/{ChatPanel/ChatHeaderName.tsx → Chat/ChatEditableHeaderName.tsx} +10 -16
  219. package/src/ui/Chat/ChatHeaderActions.tsx +19 -0
  220. package/src/ui/Chat/ChatPanel.tsx +30 -0
  221. package/src/ui/Chat/ChatView.tsx +115 -0
  222. package/src/ui/Chat/Members/ChatMembersButton.tsx +9 -0
  223. package/src/ui/{ChatPanel → Chat/Members}/ChatMembersPanel.tsx +13 -22
  224. package/src/ui/Chat/Members/ChatMembersPreview.tsx +25 -0
  225. package/src/ui/Chat/Members/index.ts +13 -0
  226. package/src/ui/Chat/index.ts +6 -0
  227. package/src/ui/ChatGroup/ChatGroupContext.tsx +50 -0
  228. package/src/ui/ChatGroup/ChatGroupPanel.tsx +73 -0
  229. package/src/ui/ChatGroup/Create/CreateChatButton.tsx +15 -0
  230. package/src/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatForm.tsx +2 -2
  231. package/src/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatMemberInput.tsx +6 -7
  232. package/src/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatNameInput.tsx +2 -2
  233. package/src/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatPanel.tsx +14 -18
  234. package/src/ui/ChatGroup/Create/index.ts +19 -0
  235. package/src/ui/ChatGroup/Layout/ChatGroupAside.tsx +12 -0
  236. package/src/ui/ChatGroup/Layout/ChatGroupBody.tsx +10 -0
  237. package/src/ui/ChatGroup/Layout/ChatGroupFooter.tsx +3 -0
  238. package/src/ui/ChatGroup/Layout/ChatGroupHeader.tsx +5 -0
  239. package/src/ui/ChatGroup/Layout/ChatGroupMain.tsx +17 -0
  240. package/src/ui/ChatGroup/Layout/index.ts +19 -0
  241. package/src/ui/{ChatList → ChatGroup/List}/ChatList.tsx +9 -9
  242. package/src/ui/ChatGroup/List/ChatListItemAvatar.tsx +22 -0
  243. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemBox.tsx +9 -5
  244. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessage.tsx +1 -1
  245. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessageAuthor.tsx +2 -7
  246. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessageContent.tsx +3 -3
  247. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessageSentAt.tsx +2 -2
  248. package/src/ui/ChatGroup/List/ChatListItemName.tsx +8 -0
  249. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemUnreadCount.tsx +1 -1
  250. package/src/ui/ChatGroup/List/index.ts +31 -0
  251. package/src/ui/ChatGroup/index.ts +5 -0
  252. package/src/ui/Chatify.tsx +8 -153
  253. package/src/ui/Conversation/Conversation.tsx +76 -0
  254. package/src/ui/Conversation/ConversationActions.tsx +5 -0
  255. package/src/ui/Conversation/ConversationBody.tsx +28 -0
  256. package/src/ui/Conversation/ConversationContext.ts +27 -0
  257. package/src/ui/Conversation/ConversationHeader.tsx +23 -0
  258. package/src/ui/Conversation/ConversationName.tsx +7 -0
  259. package/src/ui/Conversation/InputBox/InputBox.tsx +40 -0
  260. package/src/ui/{InputBox → Conversation/InputBox}/InputFilesBox.tsx +2 -2
  261. package/src/ui/{InputBox → Conversation/InputBox}/InputSubmitButtonBox.tsx +2 -2
  262. package/src/ui/{InputBox → Conversation/InputBox}/InputTextBox.tsx +6 -4
  263. package/src/ui/Conversation/InputBox/index.ts +16 -0
  264. package/src/ui/{Message → Conversation/Message}/MessageAuthor.tsx +2 -2
  265. package/src/ui/{Message → Conversation/Message}/MessageBox.tsx +4 -4
  266. package/src/ui/{Message → Conversation/Message}/MessageContent.tsx +1 -1
  267. package/src/ui/{Message → Conversation/Message}/MessageInfoBox.tsx +9 -7
  268. package/src/ui/{Message → Conversation/Message}/MessageRow.tsx +3 -3
  269. package/src/ui/{Message → Conversation/Message}/MessageText.tsx +1 -1
  270. package/src/ui/Conversation/Message/index.ts +22 -0
  271. package/src/ui/{Next.tsx → Conversation/NextObserver/NextMessagesObserver.tsx} +11 -12
  272. package/src/ui/Conversation/NextObserver/index.ts +1 -0
  273. package/src/ui/{MessageReadObserver.tsx → Conversation/ReadObserver/MessageReadObserver.tsx} +17 -13
  274. package/src/ui/Conversation/ReadObserver/index.ts +1 -0
  275. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageBox.tsx +2 -2
  276. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageContent.tsx +1 -1
  277. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageInfoBox.tsx +2 -2
  278. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageText.tsx +1 -1
  279. package/src/ui/Conversation/SendingMessage/index.ts +16 -0
  280. package/src/ui/{SystemMessage → Conversation/SystemMessage}/SystemMessageBox.tsx +4 -4
  281. package/src/ui/Conversation/SystemMessage/SystemMessageRow.tsx +28 -0
  282. package/src/ui/Conversation/SystemMessage/index.ts +10 -0
  283. package/src/ui/Conversation/index.ts +13 -0
  284. package/src/ui/Thread/ThreadActions.tsx +22 -0
  285. package/src/ui/Thread/ThreadContext.ts +13 -0
  286. package/src/ui/Thread/ThreadPanel.tsx +127 -0
  287. package/src/ui/Thread/index.tsx +3 -0
  288. package/src/ui/color.ts +20 -0
  289. package/src/ui/common/Avatar.tsx +20 -0
  290. package/src/ui/{Icon.tsx → common/Icon.tsx} +6 -1
  291. package/src/ui/{MessageSkeleton.tsx → common/MessageSkeleton.tsx} +3 -2
  292. package/src/ui/common/index.ts +13 -0
  293. package/src/ui/customize.tsx +18 -10
  294. package/src/ui/index.ts +9 -9
  295. package/src/ui/localizer.tsx +7 -10
  296. package/dist/esm/types/ChatifyContext.d.ts +0 -11
  297. package/dist/esm/types/core/action.d.ts +0 -151
  298. package/dist/esm/types/core/models.d.ts +0 -70
  299. package/dist/esm/types/core/reducer.d.ts +0 -11
  300. package/dist/esm/types/core/state.d.ts +0 -55
  301. package/dist/esm/types/core/useAddChatMutation.d.ts +0 -2
  302. package/dist/esm/types/core/useAddMemberMutation.d.ts +0 -2
  303. package/dist/esm/types/core/useFetchNextMutation.d.ts +0 -3
  304. package/dist/esm/types/core/useGetAccountsQuery.d.ts +0 -3
  305. package/dist/esm/types/core/useGetChatListQuery.d.ts +0 -3
  306. package/dist/esm/types/core/useGetChatQuery.d.ts +0 -5
  307. package/dist/esm/types/core/useGetMessagesQuery.d.ts +0 -4
  308. package/dist/esm/types/core/useReadMonitor.d.ts +0 -1
  309. package/dist/esm/types/core/useRemoveMemberMutation.d.ts +0 -2
  310. package/dist/esm/types/core/useSendMutation.d.ts +0 -2
  311. package/dist/esm/types/core/useSignalRMonitor.d.ts +0 -2
  312. package/dist/esm/types/core/useUpdateChatNameMutation.d.ts +0 -2
  313. package/dist/esm/types/ui/AddChatButton.d.ts +0 -2
  314. package/dist/esm/types/ui/Avatar.d.ts +0 -6
  315. package/dist/esm/types/ui/ChatList/ChatList.d.ts +0 -2
  316. package/dist/esm/types/ui/ChatList/ChatListItemBox.d.ts +0 -6
  317. package/dist/esm/types/ui/ChatList/ChatListItemLastMessage.d.ts +0 -3
  318. package/dist/esm/types/ui/ChatList/ChatListItemLastMessageAuthor.d.ts +0 -3
  319. package/dist/esm/types/ui/ChatList/ChatListItemLastMessageSentAt.d.ts +0 -3
  320. package/dist/esm/types/ui/ChatList/ChatListItemName.d.ts +0 -3
  321. package/dist/esm/types/ui/ChatList/ChatListItemUnreadCount.d.ts +0 -3
  322. package/dist/esm/types/ui/ChatList/index.d.ts +0 -8
  323. package/dist/esm/types/ui/ChatName.d.ts +0 -5
  324. package/dist/esm/types/ui/ChatPanel/ChatBody.d.ts +0 -5
  325. package/dist/esm/types/ui/ChatPanel/ChatHeader.d.ts +0 -5
  326. package/dist/esm/types/ui/ChatPanel/ChatHeaderMembers.d.ts +0 -5
  327. package/dist/esm/types/ui/ChatPanel/ChatHeaderName.d.ts +0 -5
  328. package/dist/esm/types/ui/ChatPanel/ChatMembersButton.d.ts +0 -5
  329. package/dist/esm/types/ui/ChatPanel/ChatMembersPanel.d.ts +0 -5
  330. package/dist/esm/types/ui/ChatPanel/ChatPanel.d.ts +0 -5
  331. package/dist/esm/types/ui/ChatPanel/index.d.ts +0 -6
  332. package/dist/esm/types/ui/CreateChatPanel/CreateChatMemberInput.d.ts +0 -5
  333. package/dist/esm/types/ui/CreateChatPanel/CreateChatNameInput.d.ts +0 -5
  334. package/dist/esm/types/ui/CreateChatPanel/CreateChatPanel.d.ts +0 -2
  335. package/dist/esm/types/ui/CreateChatPanel/index.d.ts +0 -4
  336. package/dist/esm/types/ui/Icon.d.ts +0 -17
  337. package/dist/esm/types/ui/InputBox/InputBox.d.ts +0 -2
  338. package/dist/esm/types/ui/InputBox/InputSubmitButtonBox.d.ts +0 -5
  339. package/dist/esm/types/ui/InputBox/InputTextBox.d.ts +0 -7
  340. package/dist/esm/types/ui/InputBox/index.d.ts +0 -4
  341. package/dist/esm/types/ui/Layout/Aside.d.ts +0 -2
  342. package/dist/esm/types/ui/Layout/Body.d.ts +0 -2
  343. package/dist/esm/types/ui/Layout/Footer.d.ts +0 -2
  344. package/dist/esm/types/ui/Layout/Header.d.ts +0 -2
  345. package/dist/esm/types/ui/Layout/Main.d.ts +0 -2
  346. package/dist/esm/types/ui/Layout/index.d.ts +0 -5
  347. package/dist/esm/types/ui/Message/MessageAuthor.d.ts +0 -3
  348. package/dist/esm/types/ui/Message/MessageBox.d.ts +0 -6
  349. package/dist/esm/types/ui/Message/MessageContent.d.ts +0 -3
  350. package/dist/esm/types/ui/Message/MessageInfoBox.d.ts +0 -3
  351. package/dist/esm/types/ui/Message/MessageText.d.ts +0 -3
  352. package/dist/esm/types/ui/Message/index.d.ts +0 -6
  353. package/dist/esm/types/ui/MessageReadObserver.d.ts +0 -6
  354. package/dist/esm/types/ui/MessageSkeleton.d.ts +0 -4
  355. package/dist/esm/types/ui/Next.d.ts +0 -4
  356. package/dist/esm/types/ui/SendingMessage/SendingMessageBox.d.ts +0 -7
  357. package/dist/esm/types/ui/SendingMessage/SendingMessageText.d.ts +0 -3
  358. package/dist/esm/types/ui/SendingMessage/index.d.ts +0 -4
  359. package/dist/esm/types/ui/SystemMessage/SystemMessageBox.d.ts +0 -6
  360. package/dist/esm/types/ui/SystemMessage/SystemMessageRow.d.ts +0 -9
  361. package/dist/esm/types/ui/SystemMessage/index.d.ts +0 -2
  362. package/dist/esm/types/util/index.d.ts +0 -2
  363. package/dist/esm/types/util/uniqBy.d.ts +0 -1
  364. package/dist/esm/types/util/uniqId.d.ts +0 -1
  365. package/src/ChatifyContext.tsx +0 -41
  366. package/src/core/action.tsx +0 -431
  367. package/src/core/models.tsx +0 -82
  368. package/src/core/reducer.tsx +0 -87
  369. package/src/core/state.ts +0 -93
  370. package/src/core/useAddChatMutation.tsx +0 -28
  371. package/src/core/useAddMemberMutation.tsx +0 -25
  372. package/src/core/useFetchNextMutation.tsx +0 -28
  373. package/src/core/useGetAccountsQuery.tsx +0 -30
  374. package/src/core/useGetChatListQuery.tsx +0 -30
  375. package/src/core/useGetChatQuery.tsx +0 -31
  376. package/src/core/useGetMessagesQuery.tsx +0 -35
  377. package/src/core/useReadMonitor.tsx +0 -32
  378. package/src/core/useRemoveMemberMutation.tsx +0 -23
  379. package/src/core/useSendMutation.tsx +0 -24
  380. package/src/core/useSignalRMonitor.tsx +0 -66
  381. package/src/core/useUpdateChatNameMutation.tsx +0 -23
  382. package/src/ui/AddChatButton.tsx +0 -17
  383. package/src/ui/Avatar.tsx +0 -18
  384. package/src/ui/ChatList/ChatListItemName.tsx +0 -13
  385. package/src/ui/ChatList/index.ts +0 -8
  386. package/src/ui/ChatName.tsx +0 -10
  387. package/src/ui/ChatPanel/ChatBody.tsx +0 -44
  388. package/src/ui/ChatPanel/ChatHeader.tsx +0 -31
  389. package/src/ui/ChatPanel/ChatHeaderMembers.tsx +0 -28
  390. package/src/ui/ChatPanel/ChatMembersButton.tsx +0 -21
  391. package/src/ui/ChatPanel/ChatPanel.tsx +0 -27
  392. package/src/ui/ChatPanel/index.ts +0 -6
  393. package/src/ui/CreateChatPanel/index.ts +0 -4
  394. package/src/ui/InputBox/InputBox.tsx +0 -38
  395. package/src/ui/InputBox/index.ts +0 -4
  396. package/src/ui/Layout/Aside.tsx +0 -12
  397. package/src/ui/Layout/Body.tsx +0 -10
  398. package/src/ui/Layout/Footer.tsx +0 -3
  399. package/src/ui/Layout/Header.tsx +0 -5
  400. package/src/ui/Layout/Main.tsx +0 -15
  401. package/src/ui/Layout/index.ts +0 -5
  402. package/src/ui/Message/index.ts +0 -6
  403. package/src/ui/SendingMessage/index.ts +0 -4
  404. package/src/ui/SystemMessage/SystemMessageRow.tsx +0 -43
  405. package/src/ui/SystemMessage/index.ts +0 -2
  406. package/src/util/index.ts +0 -2
  407. package/src/util/uniqBy.tsx +0 -17
  408. package/src/util/uniqId.tsx +0 -3
package/dist/index.d.ts CHANGED
@@ -1,52 +1,90 @@
1
1
  /// <reference types="react" />
2
2
  import * as react from 'react';
3
- import react__default, { PropsWithChildren, Ref, RefObject, CSSProperties, FC } from 'react';
3
+ import react__default, { PropsWithChildren, RefObject, Ref, CSSProperties, FC } from 'react';
4
4
  import * as _ant_design_icons_lib_components_AntdIcon from '@ant-design/icons/lib/components/AntdIcon';
5
- import { AxiosInstance } from 'axios';
6
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
7
-
8
- interface Localizer {
9
- isToday: (value: string) => boolean;
10
- timestamp: (value: string) => string;
11
- dateTime: (value: string) => string;
12
- system: {
13
- chatCreated: () => string;
14
- memberAdded: () => string;
15
- memberRemoved: () => string;
16
- chatNameChanged: (newName: string) => string;
17
- };
18
- message: {
19
- read: () => react__default.ReactNode;
20
- reading: () => react__default.ReactNode;
21
- sending: () => react__default.ReactNode;
22
- };
23
- addChat: {
24
- title: () => react__default.ReactNode;
25
- name: {
26
- label: () => react__default.ReactNode;
27
- required: () => string;
28
- max250: () => string;
29
- };
30
- members: {
31
- label: () => react__default.ReactNode;
32
- required: () => string;
33
- };
34
- submitBtn: () => react__default.ReactNode;
35
- };
36
- input: {
37
- placeholder: () => string;
38
- };
39
- settings: {
40
- members: () => string;
41
- };
6
+ import { AxiosInstance } from 'axios';
7
+ import * as SignalR from '@microsoft/signalr';
8
+ import * as _reduxjs_toolkit_dist_query_endpointDefinitions from '@reduxjs/toolkit/dist/query/endpointDefinitions';
9
+ import * as _reduxjs_toolkit_dist_query_react from '@reduxjs/toolkit/dist/query/react';
10
+ import * as _reduxjs_toolkit_dist_query_react_buildHooks from '@reduxjs/toolkit/dist/query/react/buildHooks';
11
+ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
12
+ import * as _reduxjs_toolkit_dist_query_core_buildThunks from '@reduxjs/toolkit/dist/query/core/buildThunks';
13
+ import * as _reduxjs_toolkit_dist_query_core_apiState from '@reduxjs/toolkit/dist/query/core/apiState';
14
+ import * as redux_thunk from 'redux-thunk';
15
+ import * as redux from 'redux';
16
+ import * as _reduxjs_toolkit_dist_query_core_module from '@reduxjs/toolkit/dist/query/core/module';
17
+ import * as _reduxjs_toolkit_query from '@reduxjs/toolkit/query';
18
+
19
+ interface ColorOptions {
20
+ saturation?: number;
21
+ lightness?: number;
42
22
  }
43
- declare const LocalizerContext: react__default.Context<Localizer>;
44
- declare function useLocalizer(): Localizer;
45
- declare const defaultLocalizer: Localizer;
23
+ declare function color(value: string, options?: ColorOptions): string;
46
24
 
47
25
  type Customizable<TComponent extends react__default.ComponentType<any>> = TComponent & {
48
26
  Component: TComponent;
27
+ key: string;
49
28
  };
29
+ declare const CustomizeContext: react__default.Context<Record<string, react__default.ComponentType<any> | null | undefined>>;
30
+ declare function useCustomizeContext(): Record<string, react__default.ComponentType<any> | null | undefined>;
31
+ declare function useCustomize<TCustom extends Customizable<react__default.ComponentType<any>>>(custom: TCustom): TCustom["Component"] | null;
32
+ declare function customize<TComponent extends react__default.ComponentType<any>>(key: string, Component: TComponent): TComponent extends react__default.ComponentType<infer X> ? Customizable<react__default.ComponentType<X>> : never;
33
+
34
+ interface CreateChatFormValue {
35
+ name: string;
36
+ members: string[];
37
+ }
38
+ interface CreateChatFormProps {
39
+ value?: CreateChatFormValue;
40
+ onSubmit: (value: CreateChatFormValue) => void;
41
+ busy?: boolean;
42
+ }
43
+ declare const CreateChatForm: Customizable<react.ComponentType<CreateChatFormProps>>;
44
+
45
+ interface CreateChatMemberInputProps {
46
+ name: string;
47
+ }
48
+ declare const CreateChatMemberInput: Customizable<react.ComponentType<CreateChatMemberInputProps>>;
49
+
50
+ interface CreateChatNameInputProps {
51
+ name: string;
52
+ }
53
+ declare const CreateChatNameInput: Customizable<react.ComponentType<CreateChatNameInputProps>>;
54
+
55
+ declare const CreateChatPanel: Customizable<react.ComponentType<unknown>>;
56
+
57
+ declare const CreateChatButton: Customizable<react.ComponentType<unknown>>;
58
+
59
+ interface CreateChatPanelCustomizeValue {
60
+ CreateChatForm?: typeof CreateChatForm.Component | null;
61
+ CreateChatMemberInput?: typeof CreateChatMemberInput.Component | null;
62
+ CreateChatNameInput?: typeof CreateChatNameInput.Component | null;
63
+ CreateChatPanel?: typeof CreateChatPanel.Component | null;
64
+ CreateChatButton?: typeof CreateChatButton.Component | null;
65
+ }
66
+
67
+ declare const ChatGroupAside: Customizable<react.ComponentType<unknown>>;
68
+
69
+ declare const ChatGroupHeader: Customizable<react.ComponentType<unknown>>;
70
+
71
+ declare const ChatGroupFooter: Customizable<react.ComponentType<unknown>>;
72
+
73
+ declare const ChatGroupMain: Customizable<react.ComponentType<unknown>>;
74
+
75
+ declare const ChatGroupBody: Customizable<react.ComponentType<unknown>>;
76
+
77
+ interface ChatGroupLayoutCustomizeValue {
78
+ ChatGroupAside?: typeof ChatGroupAside.Component | null;
79
+ ChatGroupHeader?: typeof ChatGroupHeader.Component | null;
80
+ ChatGroupFooter?: typeof ChatGroupFooter.Component | null;
81
+ ChatGroupMain?: typeof ChatGroupMain.Component | null;
82
+ ChatGroupBody?: typeof ChatGroupBody.Component | null;
83
+ }
84
+
85
+ declare const ChatList: Customizable<react.ComponentType<unknown>>;
86
+
87
+ declare const SYSTEM_ID = "chatify::system";
50
88
 
51
89
  interface File {
52
90
  name: string;
@@ -58,29 +96,33 @@ interface Account {
58
96
  name: string;
59
97
  avatar: string;
60
98
  }
61
- interface Message {
99
+ interface MessageBase {
62
100
  id: string;
63
- chatId: string;
64
101
  text: string;
65
102
  files: File[];
66
103
  sentAt: string;
67
104
  sentBy: Account;
105
+ }
106
+ interface ChatMessage extends MessageBase {
107
+ chatId: string;
68
108
  requestId?: string;
69
109
  }
70
110
  interface Chat {
71
111
  id: string;
72
112
  name: string;
73
113
  members: Account[];
114
+ active: boolean;
115
+ lastReadMessageId: string | null;
74
116
  }
75
117
  interface ChatListItem {
76
118
  id: string;
77
119
  name: string;
78
- message: Message;
120
+ message: ChatMessage;
79
121
  totalUnreadCount: number;
80
122
  active: boolean;
81
123
  lastReadMessageId: string | null;
82
124
  }
83
- interface SendMessageRequest {
125
+ interface SendChatMessageRequest {
84
126
  chatId: string;
85
127
  text: string;
86
128
  files: File[];
@@ -96,20 +138,20 @@ interface AddChatRequest {
96
138
  message?: MessageBody;
97
139
  members: string[];
98
140
  }
99
- interface ReadRequest {
141
+ interface ReadChatMessageRequest {
100
142
  id: string;
101
143
  }
102
- interface ReadEvent {
144
+ interface ReadChatMessageEvent {
103
145
  chatId: string;
104
146
  newLastReadMessageId: string;
105
147
  readCount: number;
106
148
  }
107
- interface RemoveMemberRequest {
149
+ interface RemoveChatMemberRequest {
108
150
  chatId: string;
109
151
  accountId: string;
110
152
  deleteHistory: boolean;
111
153
  }
112
- interface AddMemberRequest {
154
+ interface AddChatMemberRequest {
113
155
  chatId: string;
114
156
  accountId: string;
115
157
  withHistory: boolean;
@@ -118,6 +160,37 @@ interface UpdateChatNameRequest {
118
160
  id: string;
119
161
  name: string;
120
162
  }
163
+ declare function chatId(messageId: string): string;
164
+ interface ThreadWatchListItem {
165
+ id: string;
166
+ name: string;
167
+ createdById: string;
168
+ createdAt: string;
169
+ archive: boolean;
170
+ lastMessage: ThreadMessage | null;
171
+ lastReadMessageId: string | null;
172
+ }
173
+ interface Thread {
174
+ id: string;
175
+ name: string;
176
+ createdBy: Account;
177
+ createdAt: string;
178
+ archive: boolean;
179
+ lastMessageId: string | null;
180
+ lastReadMessageId: string | null;
181
+ watch: boolean;
182
+ }
183
+ interface ThreadMessage extends MessageBase {
184
+ threadId: string;
185
+ }
186
+ interface SendThreadMessageRequest {
187
+ threadId: string;
188
+ body: MessageBody;
189
+ }
190
+ type SystemMessageText = 'chatify://chat-created' | 'chatify://member-added' | 'chatify://member-removed' | `chatify://chat-name-changed`;
191
+ declare function parseThreadMessageId(messageId: string): readonly [string, number];
192
+ declare function calcThreadUnreadCount(thread: Pick<ThreadWatchListItem, 'lastMessage' | 'lastReadMessageId'>): number;
193
+ declare function calcThreadListUnreadCount(threads: Pick<ThreadWatchListItem, 'lastMessage' | 'lastReadMessageId'>[]): number;
121
194
 
122
195
  interface ChatifySignalRConfig {
123
196
  hubUri?: string;
@@ -128,325 +201,2620 @@ interface ChatifyClientConfig {
128
201
  axios: AxiosInstance;
129
202
  signalR: ChatifySignalRConfig;
130
203
  }
204
+ declare const CHATIFY_SIGNALR_METHODS: readonly ["chatify://chat-new-message", "chatify://chat-created", "chatify://chat-message-read", "chatify://chat-member-added", "chatify://chat-member-removed", "chatify://chat-name-changed", "chatify://thread-created", "chatify://thread-message-new", "chatify://thread-message-read", "chatify://thread-watch-added", "chatify://thread-watch-removed"];
205
+ type ChatifySignalRMethod = (typeof CHATIFY_SIGNALR_METHODS)[number];
206
+ type ChatifySignalRArgsByMethod = {
207
+ 'chatify://chat-new-message': [message: ChatMessage, requestId: string];
208
+ 'chatify://chat-created': [chat: ChatListItem, requestId: string];
209
+ 'chatify://chat-message-read': [events: ReadChatMessageEvent[]];
210
+ 'chatify://chat-member-added': [
211
+ chatId: string,
212
+ chatName: string,
213
+ account: Account,
214
+ message: ChatMessage,
215
+ withHistory: boolean,
216
+ read: boolean
217
+ ];
218
+ 'chatify://chat-member-removed': [
219
+ chatId: string,
220
+ accountId: string,
221
+ deleteHistory: boolean,
222
+ message: ChatMessage,
223
+ read: boolean
224
+ ];
225
+ 'chatify://chat-name-changed': [chatId: string, newName: string, message: ChatMessage, read: boolean];
226
+ 'chatify://thread-message-new': [threadId: string, message: ThreadMessage, readForId: string | null];
227
+ 'chatify://thread-message-read': [threadId: string, messageId: string];
228
+ 'chatify://thread-watch-added': [thread: ThreadWatchListItem];
229
+ 'chatify://thread-watch-removed': [id: string];
230
+ 'chatify://thread-created': [thread: ThreadWatchListItem, watch: boolean];
231
+ };
131
232
  declare class ChatifyClient {
132
233
  private _config;
133
234
  private _connection;
235
+ private _connectionPromise;
134
236
  private _subscribers;
135
237
  private _reconnectSubscribers;
136
238
  constructor(config: ChatifyClientConfig);
137
- connect: () => Promise<void>;
138
- subscribe: <T extends any[]>(method: string, subscriber: (args: T) => void) => () => ((args: any[]) => void)[];
239
+ connect: () => Promise<SignalR.HubConnection | undefined>;
240
+ private createAndStartConnection;
241
+ subscribe: <TMethod extends "chatify://chat-created" | "chatify://chat-name-changed" | "chatify://chat-new-message" | "chatify://chat-message-read" | "chatify://chat-member-added" | "chatify://chat-member-removed" | "chatify://thread-created" | "chatify://thread-message-new" | "chatify://thread-message-read" | "chatify://thread-watch-added" | "chatify://thread-watch-removed">(method: TMethod, subscriber: (args: ChatifySignalRArgsByMethod[TMethod]) => void) => () => ((args: any[]) => void)[];
139
242
  subscribeReconnect: (subscriber: () => any) => () => (() => void)[];
140
243
  private get axios();
141
244
  accounts: () => Promise<Account[]>;
142
245
  chats: () => Promise<ChatListItem[]>;
143
246
  chat: (id: string) => Promise<Chat>;
144
247
  addChat: (args: AddChatRequest) => Promise<string>;
145
- messages: (args: {
248
+ chatMessages: (args: {
146
249
  chatId: string;
147
250
  skip?: number;
148
251
  take?: number;
149
- }) => Promise<Message[]>;
150
- send: (request: SendMessageRequest) => Promise<void>;
151
- read: (request: ReadRequest) => Promise<void>;
152
- removeMember: (request: RemoveMemberRequest) => Promise<void>;
252
+ }) => Promise<ChatMessage[]>;
253
+ sendChatMessage: (request: SendChatMessageRequest) => Promise<void>;
254
+ readChatMessage: (request: ReadChatMessageRequest) => Promise<void>;
255
+ removeChatMember: (request: RemoveChatMemberRequest) => Promise<void>;
153
256
  updateChatName: (request: UpdateChatNameRequest) => Promise<void>;
154
- addMember: (request: AddMemberRequest) => Promise<void>;
257
+ addChatMember: (request: AddChatMemberRequest) => Promise<void>;
258
+ sendThreadMessage: ({ body, threadId }: SendThreadMessageRequest) => Promise<string>;
259
+ readThreadMessage: (id: string) => Promise<void>;
260
+ watchThreads: () => Promise<ThreadWatchListItem[]>;
261
+ thread: (id: string) => Promise<Thread>;
262
+ threadMessages: ({ threadId, skip, take, }: {
263
+ threadId: string;
264
+ skip: number;
265
+ take: number;
266
+ }) => Promise<ThreadMessage[]>;
267
+ watchThread: (id: string, watch: boolean) => Promise<void>;
268
+ connectToThread: (id: string) => Promise<void>;
269
+ disconnectFromThread: (id: string) => Promise<void>;
155
270
  }
156
-
157
- type MessageState = ({
158
- type: 'message';
159
- } & Message) | {
160
- type: 'next';
161
- } | {
162
- type: 'sending';
163
- text: string;
164
- files: File[];
165
- requestId: string;
271
+ declare function unsubscribe(...subscribers: Array<() => void>): {
272
+ (): void;
273
+ when(promise: Promise<any>): Promise<void>;
166
274
  };
167
- interface UIState {
168
- view?: 'chat' | 'new-chat';
169
- showMembers: boolean;
170
- chatId?: string;
275
+
276
+ interface DebounceInternalValue<T> {
277
+ value: T;
278
+ enqueueTime: number;
171
279
  }
172
- interface QueryState<TData> {
173
- uninitialized: boolean;
174
- isFetching: boolean;
175
- error?: any;
176
- data?: TData;
177
- requestId?: string;
280
+ interface DebounceValue<T> extends DebounceInternalValue<T> {
281
+ state: 'enqueued' | 'processing';
282
+ }
283
+
284
+ interface ChatifyApiSettings {
285
+ me: () => string;
286
+ client: ChatifyClient;
287
+ }
288
+
289
+ interface ChatMessageListResult {
290
+ messages: ChatMessage[];
291
+ hasMore: boolean;
292
+ }
293
+ interface ThreadMessageList {
294
+ messages: ThreadMessage[];
295
+ hasMore: boolean;
178
296
  }
179
- interface MutationState {
297
+ declare function useChatListItem(id: string | null): ChatListItem | null | undefined;
298
+ declare function useUnreadThreadMessageCount(): readonly [number | null, {
299
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
300
+ requestId?: undefined;
301
+ fulfilledTimeStamp?: undefined;
302
+ originalArgs?: undefined;
303
+ error?: undefined;
304
+ endpointName?: string | undefined;
305
+ startedTimeStamp?: undefined;
306
+ currentData?: ThreadWatchListItem[] | undefined;
307
+ isLoading: false;
308
+ isFetching: false;
309
+ isSuccess: false;
310
+ isError: false;
311
+ isUninitialized: true;
312
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
313
+ } | {
314
+ status: _reduxjs_toolkit_query.QueryStatus;
315
+ requestId?: string | undefined;
316
+ fulfilledTimeStamp?: number | undefined;
317
+ originalArgs?: void | undefined;
318
+ error?: unknown;
319
+ endpointName?: string | undefined;
320
+ startedTimeStamp?: number | undefined;
321
+ currentData?: ThreadWatchListItem[] | undefined;
322
+ isUninitialized: false;
323
+ isSuccess: false;
324
+ isError: false;
325
+ isLoading: true;
180
326
  isFetching: boolean;
181
- error?: any;
182
- }
183
- interface QueueState<TValue> {
184
- queued: TValue[];
185
- processing: TValue[];
186
- timestamp: number;
187
- }
188
- interface State {
189
- ui: UIState;
190
- query: {
191
- messages: Record<string, QueryState<MessageState[]>>;
192
- chats: Record<string, QueryState<Chat>>;
193
- chatList: QueryState<ChatListItem[]>;
194
- accounts: QueryState<Account[]>;
327
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
328
+ } | {
329
+ status: _reduxjs_toolkit_query.QueryStatus;
330
+ requestId?: string | undefined;
331
+ originalArgs?: void | undefined;
332
+ endpointName?: string | undefined;
333
+ startedTimeStamp?: number | undefined;
334
+ currentData?: ThreadWatchListItem[] | undefined;
335
+ isUninitialized: false;
336
+ isLoading: false;
337
+ isError: false;
338
+ isSuccess: true;
339
+ isFetching: true;
340
+ error: undefined;
341
+ fulfilledTimeStamp: number;
342
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
343
+ } | {
344
+ status: _reduxjs_toolkit_query.QueryStatus;
345
+ requestId?: string | undefined;
346
+ originalArgs?: void | undefined;
347
+ endpointName?: string | undefined;
348
+ startedTimeStamp?: number | undefined;
349
+ isUninitialized: false;
350
+ isLoading: false;
351
+ isError: false;
352
+ isSuccess: true;
353
+ isFetching: false;
354
+ error: undefined;
355
+ fulfilledTimeStamp: number;
356
+ currentData: ThreadWatchListItem[];
357
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
358
+ } | {
359
+ status: _reduxjs_toolkit_query.QueryStatus;
360
+ requestId?: string | undefined;
361
+ fulfilledTimeStamp?: number | undefined;
362
+ originalArgs?: void | undefined;
363
+ endpointName?: string | undefined;
364
+ startedTimeStamp?: number | undefined;
365
+ currentData?: ThreadWatchListItem[] | undefined;
366
+ isUninitialized: false;
367
+ isLoading: false;
368
+ isFetching: false;
369
+ isSuccess: false;
370
+ isError: true;
371
+ error: unknown;
372
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
373
+ }];
374
+ declare const chatifyApi: {
375
+ reducerPath: "chatify";
376
+ internalActions: _reduxjs_toolkit_dist_query_core_module.InternalActions;
377
+ reducer: redux.Reducer<_reduxjs_toolkit_query.CombinedState<{
378
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
379
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
380
+ id: string;
381
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
382
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
383
+ name: string;
384
+ members: string[];
385
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
386
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
387
+ id: string;
388
+ name: string;
389
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
390
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
391
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
392
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
393
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
394
+ chatId: string;
395
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
396
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
397
+ chatId: string;
398
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
399
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
400
+ chatId: string;
401
+ text: string;
402
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
403
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
404
+ id: string;
405
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
406
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
407
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
408
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
409
+ id: string;
410
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
411
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
412
+ id: string;
413
+ watch: boolean;
414
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
415
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
416
+ threadId: string;
417
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
418
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
419
+ threadId: string;
420
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
421
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
422
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
423
+ id: string;
424
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
425
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
426
+ }, "chat" | "account" | "message" | "thread" | "thread-message", "chatify">, redux.UnknownAction>;
427
+ middleware: redux.Middleware<{}, _reduxjs_toolkit_query.RootState<{
428
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
429
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
430
+ id: string;
431
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
432
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
433
+ name: string;
434
+ members: string[];
435
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
436
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
437
+ id: string;
438
+ name: string;
439
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
440
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
441
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
442
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
443
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
444
+ chatId: string;
445
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
446
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
447
+ chatId: string;
448
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
449
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
450
+ chatId: string;
451
+ text: string;
452
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
453
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
454
+ id: string;
455
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
456
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
457
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
458
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
459
+ id: string;
460
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
461
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
462
+ id: string;
463
+ watch: boolean;
464
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
465
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
466
+ threadId: string;
467
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
468
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
469
+ threadId: string;
470
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
471
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
472
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
473
+ id: string;
474
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
475
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
476
+ }, string, "chatify">, redux_thunk.ThunkDispatch<any, any, redux.UnknownAction>>;
477
+ util: {
478
+ getRunningQueryThunk<EndpointName extends _reduxjs_toolkit_query.QueryKeys<{
479
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
480
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
481
+ id: string;
482
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
483
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
484
+ name: string;
485
+ members: string[];
486
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
487
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
488
+ id: string;
489
+ name: string;
490
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
491
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
492
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
493
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
494
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
495
+ chatId: string;
496
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
497
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
498
+ chatId: string;
499
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
500
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
501
+ chatId: string;
502
+ text: string;
503
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
504
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
505
+ id: string;
506
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
507
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
508
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
509
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
510
+ id: string;
511
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
512
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
513
+ id: string;
514
+ watch: boolean;
515
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
516
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
517
+ threadId: string;
518
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
519
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
520
+ threadId: string;
521
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
522
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
523
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
524
+ id: string;
525
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
526
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
527
+ }>>(endpointName: EndpointName, args: _reduxjs_toolkit_query.QueryArgFrom<{
528
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
529
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
530
+ id: string;
531
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
532
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
533
+ name: string;
534
+ members: string[];
535
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
536
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
537
+ id: string;
538
+ name: string;
539
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
540
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
541
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
542
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
543
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
544
+ chatId: string;
545
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
546
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
547
+ chatId: string;
548
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
549
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
550
+ chatId: string;
551
+ text: string;
552
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
553
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
554
+ id: string;
555
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
556
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
557
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
558
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
559
+ id: string;
560
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
561
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
562
+ id: string;
563
+ watch: boolean;
564
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
565
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
566
+ threadId: string;
567
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
568
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
569
+ threadId: string;
570
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
571
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
572
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
573
+ id: string;
574
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
575
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
576
+ }[EndpointName]>): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.QueryActionCreatorResult<never> | undefined>;
577
+ getRunningMutationThunk<EndpointName_1 extends _reduxjs_toolkit_dist_query_core_apiState.MutationKeys<{
578
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
579
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
580
+ id: string;
581
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
582
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
583
+ name: string;
584
+ members: string[];
585
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
586
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
587
+ id: string;
588
+ name: string;
589
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
590
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
591
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
592
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
593
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
594
+ chatId: string;
595
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
596
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
597
+ chatId: string;
598
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
599
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
600
+ chatId: string;
601
+ text: string;
602
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
603
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
604
+ id: string;
605
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
606
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
607
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
608
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
609
+ id: string;
610
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
611
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
612
+ id: string;
613
+ watch: boolean;
614
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
615
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
616
+ threadId: string;
617
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
618
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
619
+ threadId: string;
620
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
621
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
622
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
623
+ id: string;
624
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
625
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
626
+ }>>(endpointName: EndpointName_1, fixedCacheKeyOrRequestId: string): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.MutationActionCreatorResult<never> | undefined>;
627
+ getRunningQueriesThunk(): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.QueryActionCreatorResult<any>[]>;
628
+ getRunningMutationsThunk(): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.MutationActionCreatorResult<any>[]>;
629
+ prefetch<EndpointName_2 extends _reduxjs_toolkit_query.QueryKeys<{
630
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
631
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
632
+ id: string;
633
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
634
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
635
+ name: string;
636
+ members: string[];
637
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
638
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
639
+ id: string;
640
+ name: string;
641
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
642
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
643
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
644
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
645
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
646
+ chatId: string;
647
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
648
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
649
+ chatId: string;
650
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
651
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
652
+ chatId: string;
653
+ text: string;
654
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
655
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
656
+ id: string;
657
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
658
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
659
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
660
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
661
+ id: string;
662
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
663
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
664
+ id: string;
665
+ watch: boolean;
666
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
667
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
668
+ threadId: string;
669
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
670
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
671
+ threadId: string;
672
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
673
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
674
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
675
+ id: string;
676
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
677
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
678
+ }>>(endpointName: EndpointName_2, arg: _reduxjs_toolkit_query.QueryArgFrom<{
679
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
680
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
681
+ id: string;
682
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
683
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
684
+ name: string;
685
+ members: string[];
686
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
687
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
688
+ id: string;
689
+ name: string;
690
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
691
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
692
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
693
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
694
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
695
+ chatId: string;
696
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
697
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
698
+ chatId: string;
699
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
700
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
701
+ chatId: string;
702
+ text: string;
703
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
704
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
705
+ id: string;
706
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
707
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
708
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
709
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
710
+ id: string;
711
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
712
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
713
+ id: string;
714
+ watch: boolean;
715
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
716
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
717
+ threadId: string;
718
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
719
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
720
+ threadId: string;
721
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
722
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
723
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
724
+ id: string;
725
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
726
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
727
+ }[EndpointName_2]>, options: _reduxjs_toolkit_query.PrefetchOptions): redux_thunk.ThunkAction<void, any, any, redux.UnknownAction>;
728
+ updateQueryData: _reduxjs_toolkit_dist_query_core_buildThunks.UpdateQueryDataThunk<{
729
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
730
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
731
+ id: string;
732
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
733
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
734
+ name: string;
735
+ members: string[];
736
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
737
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
738
+ id: string;
739
+ name: string;
740
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
741
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
742
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
743
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
744
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
745
+ chatId: string;
746
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
747
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
748
+ chatId: string;
749
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
750
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
751
+ chatId: string;
752
+ text: string;
753
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
754
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
755
+ id: string;
756
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
757
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
758
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
759
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
760
+ id: string;
761
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
762
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
763
+ id: string;
764
+ watch: boolean;
765
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
766
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
767
+ threadId: string;
768
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
769
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
770
+ threadId: string;
771
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
772
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
773
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
774
+ id: string;
775
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
776
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
777
+ }, _reduxjs_toolkit_query.RootState<{
778
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
779
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
780
+ id: string;
781
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
782
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
783
+ name: string;
784
+ members: string[];
785
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
786
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
787
+ id: string;
788
+ name: string;
789
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
790
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
791
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
792
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
793
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
794
+ chatId: string;
795
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
796
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
797
+ chatId: string;
798
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
799
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
800
+ chatId: string;
801
+ text: string;
802
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
803
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
804
+ id: string;
805
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
806
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
807
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
808
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
809
+ id: string;
810
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
811
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
812
+ id: string;
813
+ watch: boolean;
814
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
815
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
816
+ threadId: string;
817
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
818
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
819
+ threadId: string;
820
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
821
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
822
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
823
+ id: string;
824
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
825
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
826
+ }, string, "chatify">>;
827
+ upsertQueryData: _reduxjs_toolkit_dist_query_core_buildThunks.UpsertQueryDataThunk<{
828
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
829
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
830
+ id: string;
831
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
832
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
833
+ name: string;
834
+ members: string[];
835
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
836
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
837
+ id: string;
838
+ name: string;
839
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
840
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
841
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
842
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
843
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
844
+ chatId: string;
845
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
846
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
847
+ chatId: string;
848
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
849
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
850
+ chatId: string;
851
+ text: string;
852
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
853
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
854
+ id: string;
855
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
856
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
857
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
858
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
859
+ id: string;
860
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
861
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
862
+ id: string;
863
+ watch: boolean;
864
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
865
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
866
+ threadId: string;
867
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
868
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
869
+ threadId: string;
870
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
871
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
872
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
873
+ id: string;
874
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
875
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
876
+ }, _reduxjs_toolkit_query.RootState<{
877
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
878
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
879
+ id: string;
880
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
881
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
882
+ name: string;
883
+ members: string[];
884
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
885
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
886
+ id: string;
887
+ name: string;
888
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
889
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
890
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
891
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
892
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
893
+ chatId: string;
894
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
895
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
896
+ chatId: string;
897
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
898
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
899
+ chatId: string;
900
+ text: string;
901
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
902
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
903
+ id: string;
904
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
905
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
906
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
907
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
908
+ id: string;
909
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
910
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
911
+ id: string;
912
+ watch: boolean;
913
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
914
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
915
+ threadId: string;
916
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
917
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
918
+ threadId: string;
919
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
920
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
921
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
922
+ id: string;
923
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
924
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
925
+ }, string, "chatify">>;
926
+ patchQueryData: _reduxjs_toolkit_dist_query_core_buildThunks.PatchQueryDataThunk<{
927
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
928
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
929
+ id: string;
930
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
931
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
932
+ name: string;
933
+ members: string[];
934
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
935
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
936
+ id: string;
937
+ name: string;
938
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
939
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
940
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
941
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
942
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
943
+ chatId: string;
944
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
945
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
946
+ chatId: string;
947
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
948
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
949
+ chatId: string;
950
+ text: string;
951
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
952
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
953
+ id: string;
954
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
955
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
956
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
957
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
958
+ id: string;
959
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
960
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
961
+ id: string;
962
+ watch: boolean;
963
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
964
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
965
+ threadId: string;
966
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
967
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
968
+ threadId: string;
969
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
970
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
971
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
972
+ id: string;
973
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
974
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
975
+ }, _reduxjs_toolkit_query.RootState<{
976
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
977
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
978
+ id: string;
979
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
980
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
981
+ name: string;
982
+ members: string[];
983
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
984
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
985
+ id: string;
986
+ name: string;
987
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
988
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
989
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
990
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
991
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
992
+ chatId: string;
993
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
994
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
995
+ chatId: string;
996
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
997
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
998
+ chatId: string;
999
+ text: string;
1000
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1001
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1002
+ id: string;
1003
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1004
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1005
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1006
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1007
+ id: string;
1008
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1009
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1010
+ id: string;
1011
+ watch: boolean;
1012
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1013
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1014
+ threadId: string;
1015
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1016
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1017
+ threadId: string;
1018
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1019
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1020
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1021
+ id: string;
1022
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1023
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1024
+ }, string, "chatify">>;
1025
+ resetApiState: _reduxjs_toolkit.ActionCreatorWithoutPayload<`${string}/resetApiState`>;
1026
+ invalidateTags: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit_query.TagDescription<"chat" | "account" | "message" | "thread" | "thread-message">[], string>;
1027
+ selectInvalidatedBy: (state: _reduxjs_toolkit_query.RootState<{
1028
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1029
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1030
+ id: string;
1031
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1032
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1033
+ name: string;
1034
+ members: string[];
1035
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1036
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1037
+ id: string;
1038
+ name: string;
1039
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1040
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1041
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1042
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1043
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1044
+ chatId: string;
1045
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1046
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1047
+ chatId: string;
1048
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1049
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1050
+ chatId: string;
1051
+ text: string;
1052
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1053
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1054
+ id: string;
1055
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1056
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1057
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1058
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1059
+ id: string;
1060
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1061
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1062
+ id: string;
1063
+ watch: boolean;
1064
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1065
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1066
+ threadId: string;
1067
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1068
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1069
+ threadId: string;
1070
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1071
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1072
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1073
+ id: string;
1074
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1075
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1076
+ }, string, "chatify">, tags: readonly _reduxjs_toolkit_query.TagDescription<"chat" | "account" | "message" | "thread" | "thread-message">[]) => {
1077
+ endpointName: string;
1078
+ originalArgs: any;
1079
+ queryCacheKey: string;
1080
+ }[];
1081
+ selectCachedArgsForQuery: <QueryName extends _reduxjs_toolkit_query.QueryKeys<{
1082
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1083
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1084
+ id: string;
1085
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1086
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1087
+ name: string;
1088
+ members: string[];
1089
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1090
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1091
+ id: string;
1092
+ name: string;
1093
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1094
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1095
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1096
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1097
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1098
+ chatId: string;
1099
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1100
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1101
+ chatId: string;
1102
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1103
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1104
+ chatId: string;
1105
+ text: string;
1106
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1107
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1108
+ id: string;
1109
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1110
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1111
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1112
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1113
+ id: string;
1114
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1115
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1116
+ id: string;
1117
+ watch: boolean;
1118
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1119
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1120
+ threadId: string;
1121
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1122
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1123
+ threadId: string;
1124
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1125
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1126
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1127
+ id: string;
1128
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1129
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1130
+ }>>(state: _reduxjs_toolkit_query.RootState<{
1131
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1132
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1133
+ id: string;
1134
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1135
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1136
+ name: string;
1137
+ members: string[];
1138
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1139
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1140
+ id: string;
1141
+ name: string;
1142
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1143
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1144
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1145
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1146
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1147
+ chatId: string;
1148
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1149
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1150
+ chatId: string;
1151
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1152
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1153
+ chatId: string;
1154
+ text: string;
1155
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1156
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1157
+ id: string;
1158
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1159
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1160
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1161
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1162
+ id: string;
1163
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1164
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1165
+ id: string;
1166
+ watch: boolean;
1167
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1168
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1169
+ threadId: string;
1170
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1171
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1172
+ threadId: string;
1173
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1174
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1175
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1176
+ id: string;
1177
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1178
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1179
+ }, string, "chatify">, queryName: QueryName) => _reduxjs_toolkit_query.QueryArgFrom<{
1180
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1181
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1182
+ id: string;
1183
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1184
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1185
+ name: string;
1186
+ members: string[];
1187
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1188
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1189
+ id: string;
1190
+ name: string;
1191
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1192
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1193
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1194
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1195
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1196
+ chatId: string;
1197
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1198
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1199
+ chatId: string;
1200
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1201
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1202
+ chatId: string;
1203
+ text: string;
1204
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1205
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1206
+ id: string;
1207
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1208
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1209
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1210
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1211
+ id: string;
1212
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1213
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1214
+ id: string;
1215
+ watch: boolean;
1216
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1217
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1218
+ threadId: string;
1219
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1220
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1221
+ threadId: string;
1222
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1223
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1224
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1225
+ id: string;
1226
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1227
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1228
+ }[QueryName]>[];
195
1229
  };
196
- mutation: {
197
- fetchNext: MutationState;
198
- removeMember: MutationState;
199
- addMember: MutationState;
200
- updateChatName: MutationState;
201
- addChat: MutationState;
202
- send: MutationState;
1230
+ endpoints: {
1231
+ getAccountList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">, {
1232
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1233
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1234
+ id: string;
1235
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1236
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1237
+ name: string;
1238
+ members: string[];
1239
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1240
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1241
+ id: string;
1242
+ name: string;
1243
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1244
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1245
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1246
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1247
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1248
+ chatId: string;
1249
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1250
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1251
+ chatId: string;
1252
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1253
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1254
+ chatId: string;
1255
+ text: string;
1256
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1257
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1258
+ id: string;
1259
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1260
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1261
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1262
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1263
+ id: string;
1264
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1265
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1266
+ id: string;
1267
+ watch: boolean;
1268
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1269
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1270
+ threadId: string;
1271
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1272
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1273
+ threadId: string;
1274
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1275
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1276
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1277
+ id: string;
1278
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1279
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1280
+ }>;
1281
+ getChat: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
1282
+ id: string;
1283
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">, {
1284
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1285
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1286
+ id: string;
1287
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1288
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1289
+ name: string;
1290
+ members: string[];
1291
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1292
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1293
+ id: string;
1294
+ name: string;
1295
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1296
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1297
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1298
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1299
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1300
+ chatId: string;
1301
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1302
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1303
+ chatId: string;
1304
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1305
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1306
+ chatId: string;
1307
+ text: string;
1308
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1309
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1310
+ id: string;
1311
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1312
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1313
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1314
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1315
+ id: string;
1316
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1317
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1318
+ id: string;
1319
+ watch: boolean;
1320
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1321
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1322
+ threadId: string;
1323
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1324
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1325
+ threadId: string;
1326
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1327
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1328
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1329
+ id: string;
1330
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1331
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1332
+ }>;
1333
+ addChat: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1334
+ name: string;
1335
+ members: string[];
1336
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">, {
1337
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1338
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1339
+ id: string;
1340
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1341
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1342
+ name: string;
1343
+ members: string[];
1344
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1345
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1346
+ id: string;
1347
+ name: string;
1348
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1349
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1350
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1351
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1352
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1353
+ chatId: string;
1354
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1355
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1356
+ chatId: string;
1357
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1358
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1359
+ chatId: string;
1360
+ text: string;
1361
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1362
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1363
+ id: string;
1364
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1365
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1366
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1367
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1368
+ id: string;
1369
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1370
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1371
+ id: string;
1372
+ watch: boolean;
1373
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1374
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1375
+ threadId: string;
1376
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1377
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1378
+ threadId: string;
1379
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1380
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1381
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1382
+ id: string;
1383
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1384
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1385
+ }>;
1386
+ updateChatName: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1387
+ id: string;
1388
+ name: string;
1389
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1390
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1391
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1392
+ id: string;
1393
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1394
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1395
+ name: string;
1396
+ members: string[];
1397
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1398
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1399
+ id: string;
1400
+ name: string;
1401
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1402
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1403
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1404
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1405
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1406
+ chatId: string;
1407
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1408
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1409
+ chatId: string;
1410
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1411
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1412
+ chatId: string;
1413
+ text: string;
1414
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1415
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1416
+ id: string;
1417
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1418
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1419
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1420
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1421
+ id: string;
1422
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1423
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1424
+ id: string;
1425
+ watch: boolean;
1426
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1427
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1428
+ threadId: string;
1429
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1430
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1431
+ threadId: string;
1432
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1433
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1434
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1435
+ id: string;
1436
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1437
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1438
+ }>;
1439
+ getChatList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">, {
1440
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1441
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1442
+ id: string;
1443
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1444
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1445
+ name: string;
1446
+ members: string[];
1447
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1448
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1449
+ id: string;
1450
+ name: string;
1451
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1452
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1453
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1454
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1455
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1456
+ chatId: string;
1457
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1458
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1459
+ chatId: string;
1460
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1461
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1462
+ chatId: string;
1463
+ text: string;
1464
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1465
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1466
+ id: string;
1467
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1468
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1469
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1470
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1471
+ id: string;
1472
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1473
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1474
+ id: string;
1475
+ watch: boolean;
1476
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1477
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1478
+ threadId: string;
1479
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1480
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1481
+ threadId: string;
1482
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1483
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1484
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1485
+ id: string;
1486
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1487
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1488
+ }>;
1489
+ removeChatMember: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1490
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1491
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1492
+ id: string;
1493
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1494
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1495
+ name: string;
1496
+ members: string[];
1497
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1498
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1499
+ id: string;
1500
+ name: string;
1501
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1502
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1503
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1504
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1505
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1506
+ chatId: string;
1507
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1508
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1509
+ chatId: string;
1510
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1511
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1512
+ chatId: string;
1513
+ text: string;
1514
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1515
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1516
+ id: string;
1517
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1518
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1519
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1520
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1521
+ id: string;
1522
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1523
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1524
+ id: string;
1525
+ watch: boolean;
1526
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1527
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1528
+ threadId: string;
1529
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1530
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1531
+ threadId: string;
1532
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1533
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1534
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1535
+ id: string;
1536
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1537
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1538
+ }>;
1539
+ addChatMember: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1540
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1541
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1542
+ id: string;
1543
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1544
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1545
+ name: string;
1546
+ members: string[];
1547
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1548
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1549
+ id: string;
1550
+ name: string;
1551
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1552
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1553
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1554
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1555
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1556
+ chatId: string;
1557
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1558
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1559
+ chatId: string;
1560
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1561
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1562
+ chatId: string;
1563
+ text: string;
1564
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1565
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1566
+ id: string;
1567
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1568
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1569
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1570
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1571
+ id: string;
1572
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1573
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1574
+ id: string;
1575
+ watch: boolean;
1576
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1577
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1578
+ threadId: string;
1579
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1580
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1581
+ threadId: string;
1582
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1583
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1584
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1585
+ id: string;
1586
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1587
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1588
+ }>;
1589
+ getChatMessageList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
1590
+ chatId: string;
1591
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">, {
1592
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1593
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1594
+ id: string;
1595
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1596
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1597
+ name: string;
1598
+ members: string[];
1599
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1600
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1601
+ id: string;
1602
+ name: string;
1603
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1604
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1605
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1606
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1607
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1608
+ chatId: string;
1609
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1610
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1611
+ chatId: string;
1612
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1613
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1614
+ chatId: string;
1615
+ text: string;
1616
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1617
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1618
+ id: string;
1619
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1620
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1621
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1622
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1623
+ id: string;
1624
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1625
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1626
+ id: string;
1627
+ watch: boolean;
1628
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1629
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1630
+ threadId: string;
1631
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1632
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1633
+ threadId: string;
1634
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1635
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1636
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1637
+ id: string;
1638
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1639
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1640
+ }>;
1641
+ fetchNextChatMessageList: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1642
+ chatId: string;
1643
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1644
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1645
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1646
+ id: string;
1647
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1648
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1649
+ name: string;
1650
+ members: string[];
1651
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1652
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1653
+ id: string;
1654
+ name: string;
1655
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1656
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1657
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1658
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1659
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1660
+ chatId: string;
1661
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1662
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1663
+ chatId: string;
1664
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1665
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1666
+ chatId: string;
1667
+ text: string;
1668
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1669
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1670
+ id: string;
1671
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1672
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1673
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1674
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1675
+ id: string;
1676
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1677
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1678
+ id: string;
1679
+ watch: boolean;
1680
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1681
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1682
+ threadId: string;
1683
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1684
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1685
+ threadId: string;
1686
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1687
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1688
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1689
+ id: string;
1690
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1691
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1692
+ }>;
1693
+ sendChatMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1694
+ chatId: string;
1695
+ text: string;
1696
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1697
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1698
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1699
+ id: string;
1700
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1701
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1702
+ name: string;
1703
+ members: string[];
1704
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1705
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1706
+ id: string;
1707
+ name: string;
1708
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1709
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1710
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1711
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1712
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1713
+ chatId: string;
1714
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1715
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1716
+ chatId: string;
1717
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1718
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1719
+ chatId: string;
1720
+ text: string;
1721
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1722
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1723
+ id: string;
1724
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1725
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1726
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1727
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1728
+ id: string;
1729
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1730
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1731
+ id: string;
1732
+ watch: boolean;
1733
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1734
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1735
+ threadId: string;
1736
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1737
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1738
+ threadId: string;
1739
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1740
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1741
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1742
+ id: string;
1743
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1744
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1745
+ }>;
1746
+ readChatMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1747
+ id: string;
1748
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1749
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1750
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1751
+ id: string;
1752
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1753
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1754
+ name: string;
1755
+ members: string[];
1756
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1757
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1758
+ id: string;
1759
+ name: string;
1760
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1761
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1762
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1763
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1764
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1765
+ chatId: string;
1766
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1767
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1768
+ chatId: string;
1769
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1770
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1771
+ chatId: string;
1772
+ text: string;
1773
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1774
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1775
+ id: string;
1776
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1777
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1778
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1779
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1780
+ id: string;
1781
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1782
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1783
+ id: string;
1784
+ watch: boolean;
1785
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1786
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1787
+ threadId: string;
1788
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1789
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1790
+ threadId: string;
1791
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1792
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1793
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1794
+ id: string;
1795
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1796
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1797
+ }>;
1798
+ getChatMessageReadQueue: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">, {
1799
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1800
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1801
+ id: string;
1802
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1803
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1804
+ name: string;
1805
+ members: string[];
1806
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1807
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1808
+ id: string;
1809
+ name: string;
1810
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1811
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1812
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1813
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1814
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1815
+ chatId: string;
1816
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1817
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1818
+ chatId: string;
1819
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1820
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1821
+ chatId: string;
1822
+ text: string;
1823
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1824
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1825
+ id: string;
1826
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1827
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1828
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1829
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1830
+ id: string;
1831
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1832
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1833
+ id: string;
1834
+ watch: boolean;
1835
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1836
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1837
+ threadId: string;
1838
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1839
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1840
+ threadId: string;
1841
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1842
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1843
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1844
+ id: string;
1845
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1846
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1847
+ }>;
1848
+ getWatchThreadList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">, {
1849
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1850
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1851
+ id: string;
1852
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1853
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1854
+ name: string;
1855
+ members: string[];
1856
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1857
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1858
+ id: string;
1859
+ name: string;
1860
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1861
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1862
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1863
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1864
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1865
+ chatId: string;
1866
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1867
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1868
+ chatId: string;
1869
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1870
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1871
+ chatId: string;
1872
+ text: string;
1873
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1874
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1875
+ id: string;
1876
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1877
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1878
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1879
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1880
+ id: string;
1881
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1882
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1883
+ id: string;
1884
+ watch: boolean;
1885
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1886
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1887
+ threadId: string;
1888
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1889
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1890
+ threadId: string;
1891
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1892
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1893
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1894
+ id: string;
1895
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1896
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1897
+ }>;
1898
+ getThread: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
1899
+ id: string;
1900
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">, {
1901
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1902
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1903
+ id: string;
1904
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1905
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1906
+ name: string;
1907
+ members: string[];
1908
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1909
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1910
+ id: string;
1911
+ name: string;
1912
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1913
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1914
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1915
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1916
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1917
+ chatId: string;
1918
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1919
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1920
+ chatId: string;
1921
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1922
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1923
+ chatId: string;
1924
+ text: string;
1925
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1926
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1927
+ id: string;
1928
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1929
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1930
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1931
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1932
+ id: string;
1933
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1934
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1935
+ id: string;
1936
+ watch: boolean;
1937
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1938
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1939
+ threadId: string;
1940
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1941
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1942
+ threadId: string;
1943
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1944
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1945
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1946
+ id: string;
1947
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1948
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1949
+ }>;
1950
+ watchThread: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1951
+ id: string;
1952
+ watch: boolean;
1953
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1954
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1955
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1956
+ id: string;
1957
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1958
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1959
+ name: string;
1960
+ members: string[];
1961
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1962
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1963
+ id: string;
1964
+ name: string;
1965
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1966
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1967
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1968
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1969
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1970
+ chatId: string;
1971
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1972
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1973
+ chatId: string;
1974
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1975
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1976
+ chatId: string;
1977
+ text: string;
1978
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1979
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1980
+ id: string;
1981
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1982
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1983
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1984
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1985
+ id: string;
1986
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1987
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1988
+ id: string;
1989
+ watch: boolean;
1990
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1991
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1992
+ threadId: string;
1993
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1994
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1995
+ threadId: string;
1996
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1997
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1998
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1999
+ id: string;
2000
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2001
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2002
+ }>;
2003
+ getThreadMessageList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
2004
+ threadId: string;
2005
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">, {
2006
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2007
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2008
+ id: string;
2009
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2010
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2011
+ name: string;
2012
+ members: string[];
2013
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2014
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2015
+ id: string;
2016
+ name: string;
2017
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2018
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2019
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2020
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2021
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2022
+ chatId: string;
2023
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2024
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2025
+ chatId: string;
2026
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2027
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2028
+ chatId: string;
2029
+ text: string;
2030
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2031
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2032
+ id: string;
2033
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2034
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2035
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2036
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2037
+ id: string;
2038
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2039
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2040
+ id: string;
2041
+ watch: boolean;
2042
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2043
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2044
+ threadId: string;
2045
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2046
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2047
+ threadId: string;
2048
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2049
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2050
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2051
+ id: string;
2052
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2053
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2054
+ }>;
2055
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
2056
+ threadId: string;
2057
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
2058
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2059
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2060
+ id: string;
2061
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2062
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2063
+ name: string;
2064
+ members: string[];
2065
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2066
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2067
+ id: string;
2068
+ name: string;
2069
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2070
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2071
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2072
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2073
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2074
+ chatId: string;
2075
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2076
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2077
+ chatId: string;
2078
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2079
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2080
+ chatId: string;
2081
+ text: string;
2082
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2083
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2084
+ id: string;
2085
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2086
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2087
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2088
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2089
+ id: string;
2090
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2091
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2092
+ id: string;
2093
+ watch: boolean;
2094
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2095
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2096
+ threadId: string;
2097
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2098
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2099
+ threadId: string;
2100
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2101
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2102
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2103
+ id: string;
2104
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2105
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2106
+ }>;
2107
+ sendThreadMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">, {
2108
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2109
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2110
+ id: string;
2111
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2112
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2113
+ name: string;
2114
+ members: string[];
2115
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2116
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2117
+ id: string;
2118
+ name: string;
2119
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2120
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2121
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2122
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2123
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2124
+ chatId: string;
2125
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2126
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2127
+ chatId: string;
2128
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2129
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2130
+ chatId: string;
2131
+ text: string;
2132
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2133
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2134
+ id: string;
2135
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2136
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2137
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2138
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2139
+ id: string;
2140
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2141
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2142
+ id: string;
2143
+ watch: boolean;
2144
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2145
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2146
+ threadId: string;
2147
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2148
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2149
+ threadId: string;
2150
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2151
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2152
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2153
+ id: string;
2154
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2155
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2156
+ }>;
2157
+ readThreadMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
2158
+ id: string;
2159
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
2160
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2161
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2162
+ id: string;
2163
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2164
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2165
+ name: string;
2166
+ members: string[];
2167
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2168
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2169
+ id: string;
2170
+ name: string;
2171
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2172
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2173
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2174
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2175
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2176
+ chatId: string;
2177
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2178
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2179
+ chatId: string;
2180
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2181
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2182
+ chatId: string;
2183
+ text: string;
2184
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2185
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2186
+ id: string;
2187
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2188
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2189
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2190
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2191
+ id: string;
2192
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2193
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2194
+ id: string;
2195
+ watch: boolean;
2196
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2197
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2198
+ threadId: string;
2199
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2200
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2201
+ threadId: string;
2202
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2203
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2204
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2205
+ id: string;
2206
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2207
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2208
+ }>;
2209
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">, {
2210
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2211
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2212
+ id: string;
2213
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2214
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2215
+ name: string;
2216
+ members: string[];
2217
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2218
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2219
+ id: string;
2220
+ name: string;
2221
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2222
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2223
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2224
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2225
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2226
+ chatId: string;
2227
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2228
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2229
+ chatId: string;
2230
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2231
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2232
+ chatId: string;
2233
+ text: string;
2234
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2235
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2236
+ id: string;
2237
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2238
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2239
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2240
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2241
+ id: string;
2242
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2243
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2244
+ id: string;
2245
+ watch: boolean;
2246
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2247
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2248
+ threadId: string;
2249
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2250
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2251
+ threadId: string;
2252
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2253
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2254
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2255
+ id: string;
2256
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2257
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2258
+ }>;
203
2259
  };
204
- queue: {
205
- read: QueueState<string>;
206
- send: QueueState<SendMessageRequest>;
2260
+ } & {
2261
+ endpoints: {
2262
+ getAccountList: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">>;
2263
+ getChat: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2264
+ id: string;
2265
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">>;
2266
+ addChat: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2267
+ name: string;
2268
+ members: string[];
2269
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">>;
2270
+ updateChatName: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2271
+ id: string;
2272
+ name: string;
2273
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2274
+ getChatList: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">>;
2275
+ removeChatMember: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2276
+ addChatMember: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2277
+ getChatMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2278
+ chatId: string;
2279
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">>;
2280
+ fetchNextChatMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2281
+ chatId: string;
2282
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2283
+ sendChatMessage: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2284
+ chatId: string;
2285
+ text: string;
2286
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2287
+ readChatMessage: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2288
+ id: string;
2289
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2290
+ getChatMessageReadQueue: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">>;
2291
+ getWatchThreadList: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
2292
+ getThread: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2293
+ id: string;
2294
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">>;
2295
+ watchThread: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2296
+ id: string;
2297
+ watch: boolean;
2298
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2299
+ getThreadMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2300
+ threadId: string;
2301
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">>;
2302
+ fetchNextThreadMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2303
+ threadId: string;
2304
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2305
+ sendThreadMessage: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">>;
2306
+ readThreadMessage: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2307
+ id: string;
2308
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2309
+ getThreadMessageReadQueue: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">>;
207
2310
  };
208
- }
209
- declare const FETCH_QUERY_STATE: QueryState<any>;
210
- declare const INITIAL_STATE: State;
211
-
212
- declare const ACTIONS: {
213
- update: (state: State, { mutation }: {
214
- mutation: (state: State) => State;
215
- }) => void;
216
- messages_fetch: (state: State, { chatId, requestId }: {
217
- chatId: string;
218
- requestId: string;
219
- }) => void;
220
- messages_fulfilled: (state: State, { chatId, messages, hasMore }: {
221
- chatId: string;
222
- messages: Message[];
223
- hasMore: boolean;
224
- }) => void;
225
- messages_rejected: (state: State, { chatId, error }: {
226
- chatId: string;
227
- error: any;
228
- }) => void;
229
- fetchNext_fetch: (state: State, { chatId }: {
230
- chatId: string;
231
- }) => void;
232
- fetchNext_fulfilled: (state: State, { chatId, messages, hasMore }: {
233
- chatId: string;
234
- messages: Message[];
235
- hasMore: boolean;
236
- }) => void;
237
- fetchNext_rejected: (state: State, { chatId, error }: {
238
- chatId: string;
239
- error: any;
240
- }) => void;
241
- chatList_fetch: (state: State, { requestId }: {
242
- requestId: string;
243
- }) => void;
244
- chatList_fulfilled: (state: State, { chats }: {
245
- chats: ChatListItem[];
246
- }) => void;
247
- chatList_rejected: (state: State, { error }: {
248
- error: any;
249
- }) => void;
250
- removeMember_fetch: (state: State) => void;
251
- removeMember_fulfilled: (state: State) => void;
252
- removeMember_rejected: (state: State, { error }: {
253
- error: any;
254
- }) => void;
255
- addMember_fetch: (state: State) => void;
256
- addMember_fulfilled: (state: State) => void;
257
- addMember_rejected: (state: State, { error }: {
258
- error: any;
259
- }) => void;
260
- updateChatName_fetch: (state: State) => void;
261
- updateChatName_fulfilled: (state: State) => void;
262
- updateChatName_rejected: (state: State, { error }: {
263
- error: any;
264
- }) => void;
265
- addChat_fetch: (state: State) => void;
266
- addChat_fulfilled: (state: State) => void;
267
- addChat_rejected: (state: State, { error }: {
268
- error: any;
269
- }) => void;
270
- accounts_fetch: (state: State, { requestId }: {
271
- requestId: string;
272
- }) => void;
273
- accounts_fulfilled: (state: State, { accounts }: {
274
- accounts: Account[];
275
- }) => void;
276
- accounts_rejected: (state: State, { error }: {
277
- error: any;
278
- }) => void;
279
- chat_open: (state: State, { chatId }: {
280
- chatId: string;
281
- }) => void;
282
- new_chat_open: (state: State) => void;
283
- new_chat_close: (state: State) => void;
284
- toggle_members_view: (state: State) => void;
285
- message_received: (state: State, { message, requestId, me }: {
286
- message: Message;
287
- requestId: string;
288
- me: string;
289
- }) => void;
290
- chat_created: (state: State, { chat }: {
291
- chat: ChatListItem;
292
- requestId?: string | undefined;
293
- }) => void;
294
- read: (state: State, { id, timestamp }: {
2311
+ usePrefetch<EndpointName_3 extends _reduxjs_toolkit_query.QueryKeys<{
2312
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2313
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2314
+ id: string;
2315
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2316
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2317
+ name: string;
2318
+ members: string[];
2319
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2320
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2321
+ id: string;
2322
+ name: string;
2323
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2324
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2325
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2326
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2327
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2328
+ chatId: string;
2329
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2330
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2331
+ chatId: string;
2332
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2333
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2334
+ chatId: string;
2335
+ text: string;
2336
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2337
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2338
+ id: string;
2339
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2340
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2341
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2342
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2343
+ id: string;
2344
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2345
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2346
+ id: string;
2347
+ watch: boolean;
2348
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2349
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2350
+ threadId: string;
2351
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2352
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2353
+ threadId: string;
2354
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2355
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2356
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2357
+ id: string;
2358
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2359
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2360
+ }>>(endpointName: EndpointName_3, options?: _reduxjs_toolkit_query.PrefetchOptions | undefined): (arg: _reduxjs_toolkit_query.QueryArgFrom<{
2361
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2362
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2363
+ id: string;
2364
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2365
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2366
+ name: string;
2367
+ members: string[];
2368
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2369
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2370
+ id: string;
2371
+ name: string;
2372
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2373
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2374
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2375
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2376
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2377
+ chatId: string;
2378
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2379
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2380
+ chatId: string;
2381
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2382
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2383
+ chatId: string;
2384
+ text: string;
2385
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2386
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2387
+ id: string;
2388
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2389
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2390
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2391
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2392
+ id: string;
2393
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2394
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2395
+ id: string;
2396
+ watch: boolean;
2397
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2398
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2399
+ threadId: string;
2400
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2401
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2402
+ threadId: string;
2403
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2404
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2405
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2406
+ id: string;
2407
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2408
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2409
+ }[EndpointName_3]>, options?: _reduxjs_toolkit_query.PrefetchOptions | undefined) => void;
2410
+ } & {
2411
+ useGetAccountListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">>;
2412
+ useGetChatQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
295
2413
  id: string;
296
- timestamp: number;
297
- }) => void;
298
- read_send: (state: State, { id }: {
2414
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">>;
2415
+ useGetChatListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">>;
2416
+ useGetChatMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
2417
+ chatId: string;
2418
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">>;
2419
+ useGetChatMessageReadQueueQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">>;
2420
+ useGetWatchThreadListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
2421
+ useGetThreadQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
299
2422
  id: string;
300
- }) => void;
301
- read_reject: (state: State, { id, timestamp }: {
2423
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">>;
2424
+ useGetThreadMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
2425
+ threadId: string;
2426
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">>;
2427
+ useGetThreadMessageReadQueueQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">>;
2428
+ } & {
2429
+ useLazyGetAccountListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">>;
2430
+ useLazyGetChatQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
302
2431
  id: string;
303
- timestamp: number;
304
- }) => void;
305
- read_received: (state: State, { events }: {
306
- events: ReadEvent[];
307
- }) => void;
308
- member_added: (state: State, { chatId, chatName, account, me, message, withHistory, }: {
309
- chatId: string;
310
- chatName: string;
311
- account: Account;
312
- me: string;
313
- message: Message;
314
- withHistory: boolean;
315
- }) => State;
316
- member_removed: (state: State, { chatId, accountId, deleteHistory, me, message, }: {
317
- chatId: string;
318
- accountId: string;
319
- deleteHistory: boolean;
320
- me: string;
321
- message: Message;
322
- }) => void;
323
- chat_fetch: (state: State, { chatId, requestId }: {
2432
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">>;
2433
+ useLazyGetChatListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">>;
2434
+ useLazyGetChatMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
324
2435
  chatId: string;
325
- requestId: string;
326
- }) => void;
327
- chat_fulfilled: (state: State, { chat }: {
328
- chat: Chat;
329
- }) => void;
330
- chat_rejected: (state: State, { chatId, error }: {
2436
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">>;
2437
+ useLazyGetChatMessageReadQueueQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">>;
2438
+ useLazyGetWatchThreadListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
2439
+ useLazyGetThreadQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
2440
+ id: string;
2441
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">>;
2442
+ useLazyGetThreadMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
2443
+ threadId: string;
2444
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">>;
2445
+ useLazyGetThreadMessageReadQueueQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">>;
2446
+ } & {
2447
+ useAddChatMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2448
+ name: string;
2449
+ members: string[];
2450
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">>;
2451
+ useUpdateChatNameMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2452
+ id: string;
2453
+ name: string;
2454
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2455
+ useRemoveChatMemberMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2456
+ useAddChatMemberMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2457
+ useFetchNextChatMessageListMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
331
2458
  chatId: string;
332
- error: any;
333
- }) => void;
334
- send_fetch: (state: State, { chatId, text, files, requestId, }: {
2459
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2460
+ useSendChatMessageMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
335
2461
  chatId: string;
336
2462
  text: string;
337
- files: File[];
338
- requestId: string;
339
- }) => void;
340
- send_fulfilled: (state: State, { chatId, requestId }: {
341
- chatId: string;
342
- requestId: string;
343
- }) => void;
344
- send_rejected: (state: State, { chatId, requestId, error }: {
345
- chatId: string;
346
- requestId: string;
347
- error: any;
348
- }) => void;
349
- chatNameChanged_received: (state: State, { chatId, newName, message }: {
350
- chatId: string;
351
- newName: string;
352
- message: Message;
353
- }) => void;
2463
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2464
+ useReadChatMessageMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2465
+ id: string;
2466
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2467
+ useWatchThreadMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2468
+ id: string;
2469
+ watch: boolean;
2470
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2471
+ useFetchNextThreadMessageListMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2472
+ threadId: string;
2473
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2474
+ useSendThreadMessageMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">>;
2475
+ useReadThreadMessageMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2476
+ id: string;
2477
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2478
+ } & {
2479
+ injectEndpoints<NewDefinitions extends _reduxjs_toolkit_query.EndpointDefinitions>(_: {
2480
+ endpoints: (build: _reduxjs_toolkit_query.EndpointBuilder<_reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", "chatify">) => NewDefinitions;
2481
+ overrideExisting?: boolean | "throw" | undefined;
2482
+ }): _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.BaseQueryFn, {
2483
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2484
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2485
+ id: string;
2486
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2487
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2488
+ name: string;
2489
+ members: string[];
2490
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2491
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2492
+ id: string;
2493
+ name: string;
2494
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2495
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2496
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2497
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2498
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2499
+ chatId: string;
2500
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2501
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2502
+ chatId: string;
2503
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2504
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2505
+ chatId: string;
2506
+ text: string;
2507
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2508
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2509
+ id: string;
2510
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2511
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2512
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2513
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2514
+ id: string;
2515
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2516
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2517
+ id: string;
2518
+ watch: boolean;
2519
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2520
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2521
+ threadId: string;
2522
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2523
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2524
+ threadId: string;
2525
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2526
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2527
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2528
+ id: string;
2529
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2530
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2531
+ } & NewDefinitions, "chatify", "chat" | "account" | "message" | "thread" | "thread-message", typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
2532
+ enhanceEndpoints<NewTagTypes extends string = never, NewDefinitions_1 extends _reduxjs_toolkit_query.EndpointDefinitions = never>(_: {
2533
+ addTagTypes?: readonly NewTagTypes[] | undefined;
2534
+ endpoints?: {
2535
+ getAccountList?: Partial<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getAccountList", Account[]>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getAccountList", Account[]>, "chatify">) => void) | undefined;
2536
+ getChat?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2537
+ id: string;
2538
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChat", Chat>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<{
2539
+ id: string;
2540
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChat", Chat>, "chatify">) => void) | undefined;
2541
+ addChat?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2542
+ name: string;
2543
+ members: string[];
2544
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "addChat", string>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2545
+ name: string;
2546
+ members: string[];
2547
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "addChat", string>, "chatify">) => void) | undefined;
2548
+ updateChatName?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2549
+ id: string;
2550
+ name: string;
2551
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "updateChatName", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2552
+ id: string;
2553
+ name: string;
2554
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "updateChatName", void>, "chatify">) => void) | undefined;
2555
+ getChatList?: Partial<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChatList", ChatListItem[]>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChatList", ChatListItem[]>, "chatify">) => void) | undefined;
2556
+ removeChatMember?: Partial<_reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "removeChatMember", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "removeChatMember", void>, "chatify">) => void) | undefined;
2557
+ addChatMember?: Partial<_reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "addChatMember", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "addChatMember", void>, "chatify">) => void) | undefined;
2558
+ getChatMessageList?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2559
+ chatId: string;
2560
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChatMessageList", ChatMessageListResult>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<{
2561
+ chatId: string;
2562
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChatMessageList", ChatMessageListResult>, "chatify">) => void) | undefined;
2563
+ fetchNextChatMessageList?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2564
+ chatId: string;
2565
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "fetchNextChatMessageList", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2566
+ chatId: string;
2567
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "fetchNextChatMessageList", void>, "chatify">) => void) | undefined;
2568
+ sendChatMessage?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2569
+ chatId: string;
2570
+ text: string;
2571
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "sendChatMessage", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2572
+ chatId: string;
2573
+ text: string;
2574
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "sendChatMessage", void>, "chatify">) => void) | undefined;
2575
+ readChatMessage?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2576
+ id: string;
2577
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "readChatMessage", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2578
+ id: string;
2579
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "readChatMessage", void>, "chatify">) => void) | undefined;
2580
+ getChatMessageReadQueue?: Partial<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChatMessageReadQueue", DebounceValue<string>[]>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getChatMessageReadQueue", DebounceValue<string>[]>, "chatify">) => void) | undefined;
2581
+ getWatchThreadList?: Partial<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getWatchThreadList", ThreadWatchListItem[]>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getWatchThreadList", ThreadWatchListItem[]>, "chatify">) => void) | undefined;
2582
+ getThread?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2583
+ id: string;
2584
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getThread", Thread>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<{
2585
+ id: string;
2586
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getThread", Thread>, "chatify">) => void) | undefined;
2587
+ watchThread?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2588
+ id: string;
2589
+ watch: boolean;
2590
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "watchThread", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2591
+ id: string;
2592
+ watch: boolean;
2593
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "watchThread", void>, "chatify">) => void) | undefined;
2594
+ getThreadMessageList?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2595
+ threadId: string;
2596
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getThreadMessageList", ThreadMessageList>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<{
2597
+ threadId: string;
2598
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getThreadMessageList", ThreadMessageList>, "chatify">) => void) | undefined;
2599
+ fetchNextThreadMessageList?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2600
+ threadId: string;
2601
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "fetchNextThreadMessageList", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2602
+ threadId: string;
2603
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "fetchNextThreadMessageList", void>, "chatify">) => void) | undefined;
2604
+ sendThreadMessage?: Partial<_reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "sendThreadMessage", string>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "sendThreadMessage", string>, "chatify">) => void) | undefined;
2605
+ readThreadMessage?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2606
+ id: string;
2607
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "readThreadMessage", void>, "chatify">> | ((definition: _reduxjs_toolkit_query.MutationDefinition<{
2608
+ id: string;
2609
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "readThreadMessage", void>, "chatify">) => void) | undefined;
2610
+ getThreadMessageReadQueue?: Partial<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getThreadMessageReadQueue", DebounceValue<string>[]>, "chatify">> | ((definition: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message" | _reduxjs_toolkit_query.TSHelpersNoInfer<NewTagTypes>, _reduxjs_toolkit_dist_query_endpointDefinitions.TransformedResponse<NewDefinitions_1, "getThreadMessageReadQueue", DebounceValue<string>[]>, "chatify">) => void) | undefined;
2611
+ } | undefined;
2612
+ }): _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.BaseQueryFn, _reduxjs_toolkit_dist_query_endpointDefinitions.UpdateDefinitions<{
2613
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2614
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2615
+ id: string;
2616
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2617
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2618
+ name: string;
2619
+ members: string[];
2620
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2621
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2622
+ id: string;
2623
+ name: string;
2624
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2625
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2626
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2627
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2628
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2629
+ chatId: string;
2630
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2631
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2632
+ chatId: string;
2633
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2634
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2635
+ chatId: string;
2636
+ text: string;
2637
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2638
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2639
+ id: string;
2640
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2641
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2642
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2643
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2644
+ id: string;
2645
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2646
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2647
+ id: string;
2648
+ watch: boolean;
2649
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2650
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2651
+ threadId: string;
2652
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2653
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2654
+ threadId: string;
2655
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2656
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2657
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2658
+ id: string;
2659
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2660
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2661
+ }, "chat" | "account" | "message" | "thread" | "thread-message" | NewTagTypes, NewDefinitions_1>, "chatify", "chat" | "account" | "message" | "thread" | "thread-message" | NewTagTypes, typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
2662
+ } & {
2663
+ settings: ChatifyApiSettings;
2664
+ useChatListItem: typeof useChatListItem;
2665
+ useUnreadThreadMessageCount: typeof useUnreadThreadMessageCount;
354
2666
  };
355
- type Action = {
356
- [K in keyof typeof ACTIONS]: {
357
- type: K;
358
- data: Parameters<(typeof ACTIONS)[K]>[1];
359
- };
360
- }[keyof typeof ACTIONS];
361
2667
 
362
- type Reducer = ReturnType<typeof useReducer>;
363
- type Subscriber = (state: State) => void;
364
- declare function useReducer(): readonly [react__default.MutableRefObject<State>, (action: Action) => void, (subscriber: Subscriber) => () => void];
365
- declare function ReducerProvider({ children }: PropsWithChildren<{}>): react_jsx_runtime.JSX.Element;
366
- declare function useDispatch(): (action: Action) => void;
367
- declare function useStateRef(): react__default.MutableRefObject<State>;
368
- declare function useSelect<TResult>(select: (state: State) => TResult, deps: any[]): TResult;
2668
+ interface ChatListItemBoxProps {
2669
+ chat: ChatListItem;
2670
+ }
2671
+ declare const ChatListItemBox: Customizable<react.ComponentType<ChatListItemBoxProps>>;
369
2672
 
370
- declare function useGetChatQuery(args: {
371
- chatId: string;
372
- }): QueryState<Chat>;
2673
+ declare const ChatListItemAvatar: Customizable<react.ComponentType<ChatListItemBoxProps>>;
373
2674
 
374
- declare function useGetChatListQuery(): QueryState<ChatListItem[]>;
2675
+ declare const ChatListItemLastMessage: Customizable<react.ComponentType<ChatListItemBoxProps>>;
375
2676
 
376
- declare function useFetchNextMutation({ chatId }: {
377
- chatId: string;
378
- }): readonly [() => void, MutationState];
2677
+ declare const ChatListItemLastMessageAuthor: Customizable<react.ComponentType<ChatListItemBoxProps>>;
379
2678
 
380
- declare function useGetMessagesQuery(args: {
381
- chatId: string;
382
- }): QueryState<MessageState[]>;
2679
+ declare const ChatListItemLastMessageContent: Customizable<react.ComponentType<ChatListItemBoxProps>>;
383
2680
 
384
- declare function useSignalRMonitor(me: string, client: ChatifyClient): void;
2681
+ declare const ChatListItemLastMessageSentAt: Customizable<react.ComponentType<ChatListItemBoxProps>>;
385
2682
 
386
- declare function useGetAccountsQuery(): QueryState<Account[]>;
2683
+ declare const ChatListItemName: Customizable<react.ComponentType<ChatListItemBoxProps>>;
387
2684
 
388
- declare function useAddChatMutation(): readonly [(args: AddChatRequest) => Promise<string>, MutationState];
2685
+ declare const ChatListItemUnreadCount: Customizable<react.ComponentType<ChatListItemBoxProps>>;
389
2686
 
390
- declare function useReadMonitor(): void;
2687
+ interface ChatListCustomizeValue {
2688
+ ChatList?: typeof ChatList.Component | null;
2689
+ ChatListItemAvatar?: typeof ChatListItemAvatar.Component | null;
2690
+ ChatListItemBox?: typeof ChatListItemBox.Component | null;
2691
+ ChatListItemLastMessage?: typeof ChatListItemLastMessage.Component | null;
2692
+ ChatListItemLastMessageAuthor?: typeof ChatListItemLastMessageAuthor.Component | null;
2693
+ ChatListItemLastMessageContent?: typeof ChatListItemLastMessageContent.Component | null;
2694
+ ChatListItemLastMessageSentAt?: typeof ChatListItemLastMessageSentAt.Component | null;
2695
+ ChatListItemName?: typeof ChatListItemName.Component | null;
2696
+ ChatListItemUnreadCount?: typeof ChatListItemUnreadCount.Component | null;
2697
+ }
391
2698
 
392
- declare function useAddMemberMutation(): readonly [(args: AddMemberRequest) => void, MutationState];
2699
+ declare function useChatGroupContext(): ChatGroupContext;
2700
+ interface ChatGroupContext {
2701
+ view: 'chat' | 'new-chat' | null;
2702
+ chatId: string | null;
2703
+ showMembers: boolean;
2704
+ none(): void;
2705
+ openChat(chatId: string): void;
2706
+ toggleNewChat(): void;
2707
+ toggleMembers(): void;
2708
+ }
2709
+ declare function ChatGroupContext(props: PropsWithChildren<{}>): react_jsx_runtime.JSX.Element;
393
2710
 
394
- declare function useRemoveMemberMutation(): readonly [(args: RemoveMemberRequest) => void, MutationState];
2711
+ interface Localizer {
2712
+ isToday: (value: string) => boolean;
2713
+ timestamp: (value: string) => string;
2714
+ dateTime: (value: string) => string;
2715
+ system: Record<SystemMessageText, (key: SystemMessageText, payload: any | null) => string>;
2716
+ message: {
2717
+ read: () => react__default.ReactNode;
2718
+ reading: () => react__default.ReactNode;
2719
+ sending: () => react__default.ReactNode;
2720
+ };
2721
+ addChat: {
2722
+ title: () => react__default.ReactNode;
2723
+ name: {
2724
+ label: () => react__default.ReactNode;
2725
+ required: () => string;
2726
+ max250: () => string;
2727
+ };
2728
+ members: {
2729
+ label: () => react__default.ReactNode;
2730
+ required: () => string;
2731
+ };
2732
+ submitBtn: () => react__default.ReactNode;
2733
+ };
2734
+ input: {
2735
+ placeholder: () => string;
2736
+ };
2737
+ settings: {
2738
+ members: () => string;
2739
+ };
2740
+ }
2741
+ declare const LocalizerContext: react__default.Context<Localizer>;
2742
+ declare function useLocalizer(): Localizer;
2743
+ declare const defaultLocalizer: Localizer;
395
2744
 
396
- declare function useSendMutation(): readonly [(args: SendMessageRequest) => void, MutationState];
2745
+ declare const ChatMembersButton: Customizable<react.ComponentType<unknown>>;
397
2746
 
398
- declare function useUpdateChatNameMutation(): readonly [(args: UpdateChatNameRequest) => void, MutationState];
2747
+ declare const ChatMembersPanel: Customizable<react.ComponentType<unknown>>;
399
2748
 
400
- interface AvatarProps {
401
- account: Account;
402
- }
403
- declare const Avatar: Customizable<react.ComponentType<AvatarProps>>;
2749
+ declare const ChatMembersPreview: Customizable<react.ComponentType<unknown>>;
404
2750
 
405
- interface ChatHeaderMembersProps {
406
- id: string;
2751
+ interface ChatMembersCustomizeValue {
2752
+ ChatMembersButton?: typeof ChatMembersButton.Component | null;
2753
+ ChatMembersPanel?: typeof ChatMembersPanel.Component | null;
2754
+ ChatMembersPreview?: typeof ChatMembersPreview.Component | null;
407
2755
  }
408
- declare const ChatHeaderMembers: Customizable<react.ComponentType<ChatHeaderMembersProps>>;
409
2756
 
410
- interface ChatMembersButtonProps {
411
- id: string;
412
- }
413
- declare const ChatMembersButton: Customizable<react.ComponentType<ChatMembersButtonProps>>;
2757
+ declare const InputBox: Customizable<react.ComponentType<unknown>>;
414
2758
 
415
- declare const AddChatButton: Customizable<react.ComponentType<unknown>>;
2759
+ declare const InputFilesBox: Customizable<react.ComponentType<unknown>>;
416
2760
 
417
- interface ChatNameProps {
418
- name: string;
2761
+ interface InputSubmitButtonBoxProps {
2762
+ onSubmit: () => void;
419
2763
  }
420
- declare const ChatName: Customizable<react.ComponentType<ChatNameProps>>;
2764
+ declare const InputSubmitButtonBox: Customizable<react.ComponentType<InputSubmitButtonBoxProps>>;
421
2765
 
422
- declare const Aside: Customizable<react.ComponentType<unknown>>;
2766
+ interface TextInputBoxProps {
2767
+ value: string;
2768
+ onChange: (value: string) => void;
2769
+ onSend: (value: string) => void;
2770
+ inputRef?: RefObject<HTMLTextAreaElement>;
2771
+ }
2772
+ declare const InputTextBox: Customizable<react.ComponentType<TextInputBoxProps>>;
423
2773
 
424
- declare const Header: Customizable<react.ComponentType<unknown>>;
2774
+ interface InputBoxCustomizeValue {
2775
+ InputBox?: typeof InputBox.Component | null;
2776
+ InputTextBox?: typeof InputTextBox.Component | null;
2777
+ InputFilesBox?: typeof InputFilesBox.Component | null;
2778
+ InputSubmitButtonBox?: typeof InputSubmitButtonBox.Component | null;
2779
+ }
425
2780
 
426
- declare const Footer: Customizable<react.ComponentType<unknown>>;
2781
+ interface MessageBoxProps {
2782
+ message: MessageBase;
2783
+ }
2784
+ declare const MessageBox: Customizable<react.ComponentType<MessageBoxProps>>;
427
2785
 
428
- declare const Main: Customizable<react.ComponentType<unknown>>;
2786
+ declare const MessageAuthor: Customizable<react.ComponentType<MessageBoxProps>>;
429
2787
 
430
- declare const Body: Customizable<react.ComponentType<unknown>>;
2788
+ declare const MessageContent: Customizable<react.ComponentType<MessageBoxProps>>;
431
2789
 
432
- declare const ChatList: Customizable<react.ComponentType<unknown>>;
2790
+ declare const MessageInfoBox: Customizable<react.ComponentType<MessageBoxProps>>;
433
2791
 
434
- interface ChatListItemBoxProps {
435
- chat: ChatListItem;
2792
+ interface MessageRowProps extends MessageBoxProps {
2793
+ containerRef?: Ref<HTMLDivElement>;
436
2794
  }
437
- declare const ChatListItemBox: Customizable<react.ComponentType<ChatListItemBoxProps>>;
438
-
439
- declare const ChatListItemLastMessage: Customizable<react.ComponentType<ChatListItemBoxProps>>;
440
-
441
- declare const ChatListItemLastMessageAuthor: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2795
+ declare const MessageRow: Customizable<react.ComponentType<MessageRowProps>>;
442
2796
 
443
- declare const ChatListItemLastMessageContent: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2797
+ declare const MessageText: Customizable<react.ComponentType<MessageBoxProps>>;
444
2798
 
445
- declare const ChatListItemName: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2799
+ interface MessageCustomizeValue {
2800
+ MessageAuthor?: typeof MessageAuthor.Component | null;
2801
+ MessageBox?: typeof MessageBox.Component | null;
2802
+ MessageContent?: typeof MessageContent.Component | null;
2803
+ MessageInfoBox?: typeof MessageInfoBox.Component | null;
2804
+ MessageRow?: typeof MessageRow.Component | null;
2805
+ MessageText?: typeof MessageText.Component | null;
2806
+ }
446
2807
 
447
- declare const ChatListItemUnreadCount: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2808
+ interface NextMessagesObserverProps {
2809
+ onLoad: () => void;
2810
+ loading: boolean;
2811
+ }
2812
+ declare function NextMessagesObserver(props: NextMessagesObserverProps): react_jsx_runtime.JSX.Element;
448
2813
 
449
- declare const ChatListItemLastMessageSentAt: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2814
+ interface MessageReadObserverProps extends MessageBoxProps {
2815
+ messageRef: RefObject<HTMLDivElement | null>;
2816
+ }
2817
+ declare function MessageReadObserver(props: MessageReadObserverProps): react_jsx_runtime.JSX.Element | null;
450
2818
 
451
2819
  interface SendingMessageBoxProps {
452
2820
  text: string;
@@ -460,178 +2828,177 @@ declare const SendingMessageInfoBox: Customizable<react.ComponentType<SendingMes
460
2828
 
461
2829
  declare const SendingMessageText: Customizable<react.ComponentType<SendingMessageBoxProps>>;
462
2830
 
463
- interface MessageBoxProps {
464
- message: Message;
2831
+ interface SendingMessageCustomizeValue {
2832
+ SendingMessageBox?: typeof SendingMessageBox.Component | null;
2833
+ SendingMessageContent?: typeof SendingMessageContent.Component | null;
2834
+ SendingMessageInfoBox?: typeof SendingMessageInfoBox.Component | null;
2835
+ SendingMessageText?: typeof SendingMessageText.Component | null;
465
2836
  }
466
- declare const MessageBox: Customizable<react.ComponentType<MessageBoxProps>>;
467
-
468
- declare const MessageAuthor: Customizable<react.ComponentType<MessageBoxProps>>;
469
-
470
- declare const MessageContent: Customizable<react.ComponentType<MessageBoxProps>>;
471
2837
 
472
- declare const MessageInfoBox: Customizable<react.ComponentType<MessageBoxProps>>;
2838
+ interface SystemMessageBoxProps {
2839
+ message: MessageBase;
2840
+ }
2841
+ declare const SystemMessageBox: Customizable<react.ComponentType<SystemMessageBoxProps>>;
473
2842
 
474
- interface MessageRowProps extends MessageBoxProps {
2843
+ interface SystemMessageRowProps {
2844
+ message: MessageBase;
475
2845
  containerRef?: Ref<HTMLDivElement>;
476
2846
  }
477
- declare const MessageRow: Customizable<react.ComponentType<MessageRowProps>>;
2847
+ declare function formatSystemMessage(localizer: Localizer, text: string): React.ReactNode;
2848
+ declare const SystemMessageRow: Customizable<react.ComponentType<SystemMessageRowProps>>;
478
2849
 
479
- declare const MessageText: Customizable<react.ComponentType<MessageBoxProps>>;
2850
+ interface SystemMessageCustomizeValue {
2851
+ SystemMessageBox?: typeof SystemMessageBox.Component | null;
2852
+ SystemMessageRow?: typeof SystemMessageRow.Component | null;
2853
+ }
480
2854
 
481
- interface MessageReadObserverProps extends MessageBoxProps {
482
- messageRef: RefObject<HTMLDivElement | null>;
2855
+ declare const ConversationActions: Customizable<react.ComponentType<unknown>>;
2856
+
2857
+ declare const ConversationBody: Customizable<react.ComponentType<unknown>>;
2858
+
2859
+ declare const ConversationHeader: Customizable<react.ComponentType<unknown>>;
2860
+
2861
+ declare const ConversationName: Customizable<react.ComponentType<unknown>>;
2862
+
2863
+ interface ConversationValue {
2864
+ id: string;
2865
+ name: string;
2866
+ active: boolean;
2867
+ lastReadMessageId: string | null;
2868
+ }
2869
+ interface ConversationContextValue extends ConversationValue {
2870
+ messages?: MessageBase[];
2871
+ hasMore?: boolean;
2872
+ nextLoading: boolean;
2873
+ noReadTracking?: boolean;
2874
+ isReading: (id: string) => boolean;
2875
+ onNext: () => void;
2876
+ onSend: (message: MessageBody) => void;
2877
+ onRead: (id: string) => void;
483
2878
  }
484
- declare const MessageReadObserver: Customizable<react.ComponentType<MessageReadObserverProps>>;
2879
+ declare const ConversationContext: react__default.Context<ConversationContextValue>;
2880
+ declare function useConversation(): ConversationContextValue;
2881
+
2882
+ interface AvatarProps {
2883
+ account: Account;
2884
+ }
2885
+ declare const Avatar: Customizable<react.ComponentType<AvatarProps>>;
485
2886
 
486
2887
  type IconType = keyof typeof ICONS;
487
2888
  interface IconProps {
488
2889
  type: IconType;
489
2890
  }
490
2891
  declare const ICONS: {
491
- attach: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
492
- send: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
493
- 'remove-member': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
494
- 'remove-member-delete-history': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
495
- 'add-member': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
496
- 'add-member-with-history': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
497
- members: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
498
- edit: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
499
- close: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "data" | "id" | "type" | "name" | "children" | "value" | "cite" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "headers" | "default" | "src" | "start" | "hidden" | "color" | "content" | "size" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "key" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2892
+ attach: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2893
+ send: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2894
+ 'remove-member': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2895
+ 'remove-member-delete-history': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2896
+ 'add-member': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2897
+ 'add-member-with-history': react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2898
+ members: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2899
+ edit: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2900
+ close: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2901
+ chat: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2902
+ watch: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
2903
+ unwatch: react.ForwardRefExoticComponent<Pick<_ant_design_icons_lib_components_AntdIcon.AntdIconProps, "value" | "children" | "key" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "start" | "hidden" | "color" | "content" | "size" | "default" | "wrap" | "open" | "height" | "rotate" | "translate" | "width" | "multiple" | "disabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "name" | "noValidate" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "target" | "type" | "playsInline" | "poster" | "preload" | "readOnly" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "spin" | "twoToneColor"> & react.RefAttributes<HTMLSpanElement>>;
500
2904
  };
501
2905
  declare const Icon: Customizable<react.ComponentType<IconProps>>;
502
2906
 
503
- interface SystemMessageRowProps {
504
- message: Message;
505
- containerRef?: Ref<HTMLDivElement>;
506
- }
507
- declare const SystemMessageRow: Customizable<react.ComponentType<SystemMessageRowProps>>;
508
-
509
- interface ChatBodyProps {
510
- id: string;
2907
+ interface MessageSkeletonProps {
2908
+ count?: number;
511
2909
  }
512
- declare const ChatBody: Customizable<react.ComponentType<ChatBodyProps>>;
2910
+ declare const MessageSkeleton: Customizable<react.ComponentType<MessageSkeletonProps>>;
513
2911
 
514
- interface ChatHeaderProps {
515
- id: string;
2912
+ interface CommonCustomizeValue {
2913
+ Avatar?: typeof Avatar.Component | null;
2914
+ Icon?: typeof Icon.Component | null;
2915
+ MessageSkeleton?: typeof MessageSkeleton.Component | null;
516
2916
  }
517
- declare const ChatHeader: Customizable<react.ComponentType<ChatHeaderProps>>;
518
2917
 
519
- interface ChatHeaderNameProps {
520
- id: string;
2918
+ interface ConversationProps extends Omit<ConversationContextValue, keyof ConversationValue> {
2919
+ value: ConversationValue;
521
2920
  }
522
- declare const ChatHeaderName: Customizable<react.ComponentType<ChatHeaderNameProps>>;
523
-
524
- interface ChatPanelProps {
525
- id: string;
2921
+ interface ConversationCustomizeValue extends InputBoxCustomizeValue, MessageCustomizeValue, SendingMessageCustomizeValue, SystemMessageCustomizeValue, CommonCustomizeValue {
2922
+ ConversationActions?: typeof ConversationActions.Component | null;
2923
+ ConversationBody?: typeof ConversationBody.Component | null;
2924
+ ConversationHeader?: typeof ConversationHeader.Component | null;
2925
+ ConversationName?: typeof ConversationName.Component | null;
526
2926
  }
527
- declare const ChatPanel: Customizable<react.ComponentType<ChatPanelProps>>;
2927
+ declare const Conversation: Customizable<react.ComponentType<ConversationProps>>;
528
2928
 
529
- declare const InputBox: Customizable<react.ComponentType<unknown>>;
2929
+ declare const ChatEditableHeaderName: Customizable<react.ComponentType<unknown>>;
530
2930
 
531
- declare const InputFilesBox: Customizable<react.ComponentType<unknown>>;
2931
+ declare const ChatHeaderActions: Customizable<react.ComponentType<unknown>>;
532
2932
 
533
- interface InputSubmitButtonBoxProps {
534
- onSubmit: () => void;
2933
+ interface ChatProps {
2934
+ value: ChatValue;
535
2935
  }
536
- declare const InputSubmitButtonBox: Customizable<react.ComponentType<InputSubmitButtonBoxProps>>;
537
-
538
- interface TextInputBoxProps {
539
- value: string;
540
- onChange: (value: string) => void;
541
- onSend: (value: string) => void;
2936
+ interface ChatValue extends ConversationValue {
542
2937
  }
543
- declare const InputTextBox: Customizable<react.ComponentType<TextInputBoxProps>>;
2938
+ interface ChatViewCustomizeValue extends ConversationCustomizeValue, ChatMembersCustomizeValue {
2939
+ ChatEditableHeaderName?: typeof ChatEditableHeaderName.Component | null;
2940
+ ChatHeaderActions?: typeof ChatHeaderActions.Component | null;
2941
+ ChatView?: typeof ChatView.Component | null;
2942
+ }
2943
+ declare const DEFAULT_CHAT_VIEW_CUSTOMIZE_VALUE: ConversationCustomizeValue;
2944
+ declare const ChatView: Customizable<react.ComponentType<ChatProps>>;
544
2945
 
545
- interface SystemMessageBoxProps {
546
- message: Message;
2946
+ declare function useChatContext(): ChatContext;
2947
+ interface ChatContext {
2948
+ id: string;
2949
+ showMembers: boolean;
2950
+ onShowMembers: (value: boolean) => void;
547
2951
  }
548
- declare const SystemMessageBox: Customizable<react.ComponentType<SystemMessageBoxProps>>;
2952
+ declare function ChatContext(props: PropsWithChildren<{
2953
+ id: string;
2954
+ }>): react_jsx_runtime.JSX.Element;
549
2955
 
550
- interface CreateChatFormValue {
551
- name: string;
552
- members: string[];
2956
+ interface ChatPanelCustomizeValue extends ChatViewCustomizeValue {
553
2957
  }
554
- interface CreateChatFormProps {
555
- value?: CreateChatFormValue;
556
- onSubmit: (value: CreateChatFormValue) => void;
557
- busy?: boolean;
2958
+ interface ChatPanelProps {
2959
+ id: string;
2960
+ className?: string;
2961
+ style?: CSSProperties;
2962
+ localizer?: Localizer;
2963
+ customize?: ChatPanelCustomizeValue;
558
2964
  }
559
- declare const CreateChatForm: Customizable<react.ComponentType<CreateChatFormProps>>;
2965
+ declare function ChatPanel(props: ChatPanelProps): react_jsx_runtime.JSX.Element;
560
2966
 
561
- interface CreateChatMemberInputProps {
562
- name: string;
2967
+ interface ChatGroupCustomizeValue extends ChatViewCustomizeValue, CreateChatPanelCustomizeValue, ChatListCustomizeValue, ChatGroupLayoutCustomizeValue {
563
2968
  }
564
- declare const CreateChatMemberInput: Customizable<react.ComponentType<CreateChatMemberInputProps>>;
565
-
566
- interface CreateChatNameInputProps {
567
- name: string;
2969
+ interface ChatifyProps {
2970
+ className?: string;
2971
+ style?: CSSProperties;
2972
+ localizer?: Localizer;
2973
+ customize?: ChatGroupCustomizeValue;
568
2974
  }
569
- declare const CreateChatNameInput: Customizable<react.ComponentType<CreateChatNameInputProps>>;
2975
+ declare const ChatGroupPanel: FC<ChatifyProps>;
570
2976
 
571
- declare const CreateChatPanel: Customizable<react.ComponentType<unknown>>;
2977
+ declare const ThreadActions: Customizable<react.ComponentType<unknown>>;
572
2978
 
573
- interface ChatifyCustomizeValue {
574
- ChatList?: typeof ChatList.Component | null;
575
- ChatListItemBox?: typeof ChatListItemBox.Component | null;
576
- ChatListItemName?: typeof ChatListItemName.Component | null;
577
- ChatListItemUnreadCount?: typeof ChatListItemUnreadCount.Component | null;
578
- ChatListItemLastMessage?: typeof ChatListItemLastMessage.Component | null;
579
- ChatListItemLastMessageAuthor?: typeof ChatListItemLastMessageAuthor.Component | null;
580
- ChatListItemLastMessageContent?: typeof ChatListItemLastMessageContent.Component | null;
581
- ChatListItemLastMessageSentAt?: typeof ChatListItemLastMessageSentAt.Component | null;
582
- Header?: typeof Header.Component | null;
583
- Footer?: typeof Footer.Component | null;
584
- Body?: typeof Body.Component | null;
585
- Main?: typeof Main.Component | null;
586
- Aside?: typeof Aside.Component | null;
587
- MessageAuthor?: typeof MessageAuthor.Component | null;
588
- MessageBox?: typeof MessageBox.Component | null;
589
- MessageContent?: typeof MessageContent.Component | null;
590
- MessageInfoBox?: typeof MessageInfoBox.Component | null;
591
- MessageRow?: typeof MessageRow.Component | null;
592
- MessageText?: typeof MessageText.Component | null;
593
- SendingMessageBox?: typeof SendingMessageBox.Component | null;
594
- SendingMessageContent?: typeof SendingMessageContent.Component | null;
595
- SendingMessageInfoBox?: typeof SendingMessageInfoBox.Component | null;
596
- SendingMessageText?: typeof SendingMessageText.Component | null;
597
- ChatBody?: typeof ChatBody.Component | null;
598
- ChatHeader?: typeof ChatHeader.Component | null;
599
- ChatHeaderMembers?: typeof ChatHeaderMembers.Component | null;
600
- ChatHeaderName?: typeof ChatHeaderName.Component | null;
601
- ChatPanel?: typeof ChatPanel.Component | null;
602
- ChatMembersButton?: typeof ChatMembersButton.Component | null;
603
- InputBox?: typeof InputBox.Component | null;
604
- InputFilesBox?: typeof InputFilesBox.Component | null;
605
- InputSubmitButtonBox?: typeof InputSubmitButtonBox.Component | null;
606
- InputTextBox?: typeof InputTextBox.Component | null;
607
- SystemMessageBox?: typeof SystemMessageBox.Component | null;
608
- SystemMessageRow?: typeof SystemMessageRow.Component | null;
609
- CreateChatForm?: typeof CreateChatForm.Component | null;
610
- CreateChatMemberInput?: typeof CreateChatMemberInput.Component | null;
611
- CreateChatNameInput?: typeof CreateChatNameInput.Component | null;
612
- CreateChatPanel?: typeof CreateChatPanel.Component | null;
613
- MessageReadObserver?: typeof MessageReadObserver.Component | null;
614
- Avatar?: typeof Avatar.Component | null;
615
- AddChatButton?: typeof AddChatButton.Component | null;
616
- ChatName?: typeof ChatName.Component | null;
617
- Icon?: typeof Icon.Component | null;
2979
+ interface ThreadCustomizeValue extends ConversationCustomizeValue, CommonCustomizeValue {
2980
+ ThreadActions?: typeof ThreadActions.Component | null;
618
2981
  }
619
- interface ChatifyProps {
2982
+ interface ThreadPanelProps {
2983
+ threadId: string;
620
2984
  className?: string;
621
- style?: CSSProperties;
2985
+ customize?: ThreadCustomizeValue;
622
2986
  localizer?: Localizer;
623
- customize?: ChatifyCustomizeValue;
624
2987
  }
625
- declare const Chatify: FC<ChatifyProps>;
2988
+ declare function ThreadPanel(props: ThreadPanelProps): react_jsx_runtime.JSX.Element | null;
626
2989
 
627
- declare function useClient(): ChatifyClient;
628
- declare function useMe(): string;
629
- interface ChatifyContextValue {
630
- me: string;
631
- client: ChatifyClient;
2990
+ interface ThreadContextValue {
2991
+ id: string;
2992
+ watch: boolean;
2993
+ onWatch: (value: boolean) => void;
632
2994
  }
633
- declare function ChatifyContext({ value, children }: PropsWithChildren<{
634
- value: ChatifyContextValue;
635
- }>): react_jsx_runtime.JSX.Element;
2995
+ declare const ThreadContext: react__default.Context<ThreadContextValue>;
2996
+ declare function useThreadContext(): ThreadContextValue;
2997
+
2998
+ declare const Chatify: {
2999
+ Thread: typeof ThreadPanel;
3000
+ ChatGroup: react.FC<ChatifyProps>;
3001
+ Chat: typeof ChatPanel;
3002
+ };
636
3003
 
637
- export { ACTIONS, Account, Action, AddChatButton, AddChatRequest, AddMemberRequest, Avatar, AvatarProps, Chat, ChatHeader, ChatHeaderMembers, ChatHeaderMembersProps, ChatHeaderProps, ChatListItem, ChatListItemBox, ChatListItemBoxProps, Chatify, ChatifyClient, ChatifyClientConfig, ChatifyContext, ChatifyContextValue, ChatifyCustomizeValue, ChatifyProps, ChatifySignalRConfig, FETCH_QUERY_STATE, File, Header, ICONS, INITIAL_STATE, Icon, IconProps, IconType, Localizer, LocalizerContext, Message, MessageBody, MessageBox, MessageBoxProps, MessageState, MutationState, QueryState, QueueState, ReadEvent, ReadRequest, Reducer, ReducerProvider, RemoveMemberRequest, SendMessageRequest, State, SystemMessageBox, SystemMessageBoxProps, UIState, UpdateChatNameRequest, defaultLocalizer, useAddChatMutation, useAddMemberMutation, useClient, useDispatch, useFetchNextMutation, useGetAccountsQuery, useGetChatListQuery, useGetChatQuery, useGetMessagesQuery, useLocalizer, useMe, useReadMonitor, useReducer, useRemoveMemberMutation, useSelect, useSendMutation, useSignalRMonitor, useStateRef, useUpdateChatNameMutation };
3004
+ export { Account, AddChatMemberRequest, AddChatRequest, Avatar, AvatarProps, CHATIFY_SIGNALR_METHODS, Chat, ChatContext, ChatEditableHeaderName, ChatGroupAside, ChatGroupBody, ChatGroupContext, ChatGroupCustomizeValue, ChatGroupFooter, ChatGroupHeader, ChatGroupLayoutCustomizeValue, ChatGroupMain, ChatGroupPanel, ChatHeaderActions, ChatList, ChatListCustomizeValue, ChatListItem, ChatListItemAvatar, ChatListItemBox, ChatListItemBoxProps, ChatListItemLastMessage, ChatListItemLastMessageAuthor, ChatListItemLastMessageContent, ChatListItemLastMessageSentAt, ChatListItemName, ChatListItemUnreadCount, ChatMembersButton, ChatMembersCustomizeValue, ChatMembersPanel, ChatMembersPreview, ChatMessage, ChatMessageListResult, ChatPanel, ChatPanelCustomizeValue, ChatPanelProps, ChatProps, ChatValue, ChatView, ChatViewCustomizeValue, Chatify, ChatifyClient, ChatifyClientConfig, ChatifyProps, ChatifySignalRArgsByMethod, ChatifySignalRConfig, ChatifySignalRMethod, Conversation, ConversationActions, ConversationBody, ConversationContext, ConversationContextValue, ConversationCustomizeValue, ConversationHeader, ConversationName, ConversationProps, ConversationValue, CreateChatButton, CreateChatForm, CreateChatFormProps, CreateChatFormValue, CreateChatMemberInput, CreateChatMemberInputProps, CreateChatNameInput, CreateChatNameInputProps, CreateChatPanel, CreateChatPanelCustomizeValue, Customizable, CustomizeContext, DEFAULT_CHAT_VIEW_CUSTOMIZE_VALUE, File, ICONS, Icon, IconProps, IconType, InputBox, InputBoxCustomizeValue, InputFilesBox, InputSubmitButtonBox, InputSubmitButtonBoxProps, InputTextBox, Localizer, LocalizerContext, MessageAuthor, MessageBase, MessageBody, MessageBox, MessageBoxProps, MessageContent, MessageCustomizeValue, MessageInfoBox, MessageReadObserver, MessageReadObserverProps, MessageRow, MessageRowProps, MessageSkeleton, MessageSkeletonProps, MessageText, NextMessagesObserver, NextMessagesObserverProps, ReadChatMessageEvent, ReadChatMessageRequest, RemoveChatMemberRequest, SYSTEM_ID, SendChatMessageRequest, SendThreadMessageRequest, SendingMessageBox, SendingMessageBoxProps, SendingMessageContent, SendingMessageCustomizeValue, SendingMessageInfoBox, SendingMessageText, SystemMessageBox, SystemMessageBoxProps, SystemMessageCustomizeValue, SystemMessageRow, SystemMessageRowProps, SystemMessageText, TextInputBoxProps, Thread, ThreadActions, ThreadContext, ThreadContextValue, ThreadCustomizeValue, ThreadMessage, ThreadMessageList, ThreadPanel, ThreadPanelProps, ThreadWatchListItem, UpdateChatNameRequest, calcThreadListUnreadCount, calcThreadUnreadCount, chatId, chatifyApi, color, customize, defaultLocalizer, formatSystemMessage, parseThreadMessageId, unsubscribe, useChatContext, useChatGroupContext, useChatListItem, useConversation, useCustomize, useCustomizeContext, useLocalizer, useThreadContext, useUnreadThreadMessageCount };