@webinex/chatify 1.0.2-rc3 → 2.0.0-alpha1

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 (411) hide show
  1. package/dist/css/chatify.css +313 -175
  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 +57 -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 -71
  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 +4 -6
  99. package/dist/index.d.ts +2801 -426
  100. package/package.json +17 -16
  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 +168 -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 +88 -21
  118. package/src/styles/chat.scss +102 -116
  119. package/src/styles/index.scss +39 -8
  120. package/src/styles/input.scss +74 -0
  121. package/src/styles/members.scss +13 -0
  122. package/src/styles/variables.scss +4 -4
  123. package/src/types/core/api/accountApi.d.ts +5 -0
  124. package/src/types/core/api/api.d.ts +2380 -0
  125. package/src/types/core/api/baseApi.d.ts +15 -0
  126. package/src/types/core/api/chatApi.d.ts +16 -0
  127. package/src/types/core/api/chatListApi.d.ts +5 -0
  128. package/src/types/core/api/chatMemberApi.d.ts +6 -0
  129. package/src/types/core/api/chatMessageApi.d.ts +3 -0
  130. package/src/types/core/api/index.d.ts +1 -0
  131. package/src/types/core/api/threadApi.d.ts +1 -0
  132. package/src/types/core/api/threadMessageApi.d.ts +6 -0
  133. package/src/types/core/client.d.ts +83 -0
  134. package/src/types/core/constants.d.ts +1 -0
  135. package/src/types/core/debounce.d.ts +27 -0
  136. package/src/types/core/index.d.ts +4 -0
  137. package/src/types/core/types.d.ts +105 -0
  138. package/src/types/index.d.ts +2 -0
  139. package/src/types/ui/Chat/ChatContext.d.ts +10 -0
  140. package/src/types/ui/Chat/ChatEditableHeaderName.d.ts +2 -0
  141. package/src/types/ui/Chat/ChatHeaderActions.d.ts +2 -0
  142. package/src/types/ui/Chat/ChatPanel.d.ts +13 -0
  143. package/src/types/ui/Chat/ChatView.d.ts +17 -0
  144. package/src/types/ui/Chat/Members/ChatMembersButton.d.ts +2 -0
  145. package/src/types/ui/Chat/Members/ChatMembersPanel.d.ts +2 -0
  146. package/src/types/ui/Chat/Members/ChatMembersPreview.d.ts +2 -0
  147. package/src/types/ui/Chat/Members/index.d.ts +11 -0
  148. package/src/types/ui/Chat/index.d.ts +6 -0
  149. package/src/types/ui/ChatGroup/ChatGroupContext.d.ts +12 -0
  150. package/src/types/ui/ChatGroup/ChatGroupPanel.d.ts +15 -0
  151. package/src/types/ui/ChatGroup/Create/CreateChatButton.d.ts +2 -0
  152. package/src/types/ui/ChatGroup/Create/CreateChatForm.d.ts +11 -0
  153. package/src/types/ui/ChatGroup/Create/CreateChatMemberInput.d.ts +5 -0
  154. package/src/types/ui/ChatGroup/Create/CreateChatNameInput.d.ts +5 -0
  155. package/src/types/ui/ChatGroup/Create/CreateChatPanel.d.ts +2 -0
  156. package/src/types/ui/ChatGroup/Create/index.d.ts +17 -0
  157. package/src/types/ui/ChatGroup/Layout/ChatGroupAside.d.ts +2 -0
  158. package/src/types/ui/ChatGroup/Layout/ChatGroupBody.d.ts +2 -0
  159. package/src/types/ui/ChatGroup/Layout/ChatGroupFooter.d.ts +2 -0
  160. package/src/types/ui/ChatGroup/Layout/ChatGroupHeader.d.ts +2 -0
  161. package/src/types/ui/ChatGroup/Layout/ChatGroupMain.d.ts +2 -0
  162. package/src/types/ui/ChatGroup/Layout/index.d.ts +17 -0
  163. package/src/types/ui/ChatGroup/List/ChatList.d.ts +2 -0
  164. package/src/types/ui/ChatGroup/List/ChatListItemAvatar.d.ts +3 -0
  165. package/src/types/ui/ChatGroup/List/ChatListItemBox.d.ts +6 -0
  166. package/src/types/ui/ChatGroup/List/ChatListItemLastMessage.d.ts +3 -0
  167. package/src/types/ui/ChatGroup/List/ChatListItemLastMessageAuthor.d.ts +3 -0
  168. package/src/types/ui/ChatGroup/List/ChatListItemLastMessageContent.d.ts +3 -0
  169. package/src/types/ui/ChatGroup/List/ChatListItemLastMessageSentAt.d.ts +3 -0
  170. package/src/types/ui/ChatGroup/List/ChatListItemName.d.ts +3 -0
  171. package/src/types/ui/ChatGroup/List/ChatListItemUnreadCount.d.ts +3 -0
  172. package/src/types/ui/ChatGroup/List/index.d.ts +29 -0
  173. package/src/types/ui/ChatGroup/index.d.ts +5 -0
  174. package/src/types/ui/Chatify.d.ts +8 -0
  175. package/src/types/ui/Conversation/Conversation.d.ts +21 -0
  176. package/src/types/ui/Conversation/ConversationActions.d.ts +2 -0
  177. package/src/types/ui/Conversation/ConversationBody.d.ts +2 -0
  178. package/src/types/ui/Conversation/ConversationContext.d.ts +20 -0
  179. package/src/types/ui/Conversation/ConversationHeader.d.ts +2 -0
  180. package/src/types/ui/Conversation/ConversationName.d.ts +2 -0
  181. package/src/types/ui/Conversation/InputBox/InputBox.d.ts +2 -0
  182. package/src/types/ui/Conversation/InputBox/InputFilesBox.d.ts +2 -0
  183. package/src/types/ui/Conversation/InputBox/InputSubmitButtonBox.d.ts +5 -0
  184. package/src/types/ui/Conversation/InputBox/InputTextBox.d.ts +8 -0
  185. package/src/types/ui/Conversation/InputBox/index.d.ts +14 -0
  186. package/src/types/ui/Conversation/Message/MessageAuthor.d.ts +3 -0
  187. package/src/types/ui/Conversation/Message/MessageBox.d.ts +6 -0
  188. package/src/types/ui/Conversation/Message/MessageContent.d.ts +3 -0
  189. package/src/types/ui/Conversation/Message/MessageInfoBox.d.ts +3 -0
  190. package/src/types/ui/Conversation/Message/MessageRow.d.ts +6 -0
  191. package/src/types/ui/Conversation/Message/MessageText.d.ts +3 -0
  192. package/src/types/ui/Conversation/Message/index.d.ts +20 -0
  193. package/src/types/ui/Conversation/NextObserver/NextMessagesObserver.d.ts +5 -0
  194. package/src/types/ui/Conversation/NextObserver/index.d.ts +1 -0
  195. package/src/types/ui/Conversation/ReadObserver/MessageReadObserver.d.ts +6 -0
  196. package/src/types/ui/Conversation/ReadObserver/index.d.ts +1 -0
  197. package/src/types/ui/Conversation/SendingMessage/SendingMessageBox.d.ts +7 -0
  198. package/src/types/ui/Conversation/SendingMessage/SendingMessageContent.d.ts +3 -0
  199. package/src/types/ui/Conversation/SendingMessage/SendingMessageInfoBox.d.ts +3 -0
  200. package/{dist/esm/types/ui/SendingMessage/SendingMessageContent.d.ts → src/types/ui/Conversation/SendingMessage/SendingMessageText.d.ts} +1 -1
  201. package/src/types/ui/Conversation/SendingMessage/index.d.ts +14 -0
  202. package/src/types/ui/Conversation/SystemMessage/SystemMessageBox.d.ts +6 -0
  203. package/src/types/ui/Conversation/SystemMessage/SystemMessageRow.d.ts +9 -0
  204. package/src/types/ui/Conversation/SystemMessage/index.d.ts +8 -0
  205. package/src/types/ui/Conversation/index.d.ts +12 -0
  206. package/src/types/ui/Thread/ThreadActions.d.ts +2 -0
  207. package/src/types/ui/Thread/ThreadContext.d.ts +8 -0
  208. package/src/types/ui/Thread/ThreadPanel.d.ts +14 -0
  209. package/src/types/ui/Thread/index.d.ts +3 -0
  210. package/src/types/ui/color.d.ts +6 -0
  211. package/src/types/ui/common/Avatar.d.ts +6 -0
  212. package/src/types/ui/common/Icon.d.ts +20 -0
  213. package/src/types/ui/common/MessageSkeleton.d.ts +5 -0
  214. package/src/types/ui/common/index.d.ts +11 -0
  215. package/src/types/ui/customize.d.ts +9 -0
  216. package/src/types/ui/index.d.ts +11 -0
  217. package/src/types/ui/localizer.d.ts +35 -0
  218. package/src/ui/Chat/ChatContext.tsx +30 -0
  219. package/src/ui/Chat/ChatEditableHeaderName.tsx +63 -0
  220. package/src/ui/Chat/ChatHeaderActions.tsx +19 -0
  221. package/src/ui/Chat/ChatPanel.tsx +30 -0
  222. package/src/ui/Chat/ChatView.tsx +115 -0
  223. package/src/ui/Chat/Members/ChatMembersButton.tsx +9 -0
  224. package/src/ui/{ChatPanel → Chat/Members}/ChatMembersPanel.tsx +21 -26
  225. package/src/ui/Chat/Members/ChatMembersPreview.tsx +25 -0
  226. package/src/ui/Chat/Members/index.ts +13 -0
  227. package/src/ui/Chat/index.ts +6 -0
  228. package/src/ui/ChatGroup/ChatGroupContext.tsx +50 -0
  229. package/src/ui/ChatGroup/ChatGroupPanel.tsx +73 -0
  230. package/src/ui/ChatGroup/Create/CreateChatButton.tsx +15 -0
  231. package/src/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatForm.tsx +2 -2
  232. package/src/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatMemberInput.tsx +6 -7
  233. package/src/ui/{CreateChatPanel → ChatGroup/Create}/CreateChatNameInput.tsx +2 -2
  234. package/src/ui/ChatGroup/Create/CreateChatPanel.tsx +45 -0
  235. package/src/ui/ChatGroup/Create/index.ts +19 -0
  236. package/src/ui/ChatGroup/Layout/ChatGroupAside.tsx +12 -0
  237. package/src/ui/ChatGroup/Layout/ChatGroupBody.tsx +10 -0
  238. package/src/ui/ChatGroup/Layout/ChatGroupFooter.tsx +3 -0
  239. package/src/ui/ChatGroup/Layout/ChatGroupHeader.tsx +5 -0
  240. package/src/ui/ChatGroup/Layout/ChatGroupMain.tsx +17 -0
  241. package/src/ui/ChatGroup/Layout/index.ts +19 -0
  242. package/src/ui/{ChatList → ChatGroup/List}/ChatList.tsx +9 -9
  243. package/src/ui/ChatGroup/List/ChatListItemAvatar.tsx +22 -0
  244. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemBox.tsx +9 -5
  245. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessage.tsx +3 -1
  246. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessageAuthor.tsx +2 -7
  247. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemLastMessageContent.tsx +3 -3
  248. package/src/ui/ChatGroup/List/ChatListItemLastMessageSentAt.tsx +22 -0
  249. package/src/ui/ChatGroup/List/ChatListItemName.tsx +8 -0
  250. package/src/ui/{ChatList → ChatGroup/List}/ChatListItemUnreadCount.tsx +1 -1
  251. package/src/ui/ChatGroup/List/index.ts +31 -0
  252. package/src/ui/ChatGroup/index.ts +5 -0
  253. package/src/ui/Chatify.tsx +8 -147
  254. package/src/ui/Conversation/Conversation.tsx +76 -0
  255. package/src/ui/Conversation/ConversationActions.tsx +5 -0
  256. package/src/ui/Conversation/ConversationBody.tsx +28 -0
  257. package/src/ui/Conversation/ConversationContext.ts +27 -0
  258. package/src/ui/Conversation/ConversationHeader.tsx +23 -0
  259. package/src/ui/Conversation/ConversationName.tsx +7 -0
  260. package/src/ui/Conversation/InputBox/InputBox.tsx +40 -0
  261. package/src/ui/{InputBox → Conversation/InputBox}/InputFilesBox.tsx +2 -2
  262. package/src/ui/{InputBox → Conversation/InputBox}/InputSubmitButtonBox.tsx +2 -2
  263. package/src/ui/{InputBox → Conversation/InputBox}/InputTextBox.tsx +8 -5
  264. package/src/ui/Conversation/InputBox/index.ts +16 -0
  265. package/src/ui/{Message → Conversation/Message}/MessageAuthor.tsx +2 -2
  266. package/src/ui/{Message → Conversation/Message}/MessageBox.tsx +4 -4
  267. package/src/ui/{Message → Conversation/Message}/MessageContent.tsx +1 -3
  268. package/src/ui/{Message → Conversation/Message}/MessageInfoBox.tsx +10 -7
  269. package/src/ui/{Message → Conversation/Message}/MessageRow.tsx +8 -4
  270. package/src/ui/{Message → Conversation/Message}/MessageText.tsx +1 -1
  271. package/src/ui/Conversation/Message/index.ts +22 -0
  272. package/src/ui/{Next.tsx → Conversation/NextObserver/NextMessagesObserver.tsx} +11 -12
  273. package/src/ui/Conversation/NextObserver/index.ts +1 -0
  274. package/src/ui/{MessageReadObserver.tsx → Conversation/ReadObserver/MessageReadObserver.tsx} +17 -13
  275. package/src/ui/Conversation/ReadObserver/index.ts +1 -0
  276. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageBox.tsx +2 -2
  277. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageContent.tsx +1 -1
  278. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageInfoBox.tsx +2 -2
  279. package/src/ui/{SendingMessage → Conversation/SendingMessage}/SendingMessageText.tsx +1 -1
  280. package/src/ui/Conversation/SendingMessage/index.ts +16 -0
  281. package/src/ui/{SystemMessage → Conversation/SystemMessage}/SystemMessageBox.tsx +4 -4
  282. package/src/ui/Conversation/SystemMessage/SystemMessageRow.tsx +28 -0
  283. package/src/ui/Conversation/SystemMessage/index.ts +10 -0
  284. package/src/ui/Conversation/index.ts +13 -0
  285. package/src/ui/Thread/ThreadActions.tsx +22 -0
  286. package/src/ui/Thread/ThreadContext.ts +13 -0
  287. package/src/ui/Thread/ThreadPanel.tsx +127 -0
  288. package/src/ui/Thread/index.tsx +3 -0
  289. package/src/ui/color.ts +20 -0
  290. package/src/ui/common/Avatar.tsx +20 -0
  291. package/src/ui/{Icon.tsx → common/Icon.tsx} +13 -6
  292. package/src/ui/{MessageSkeleton.tsx → common/MessageSkeleton.tsx} +3 -2
  293. package/src/ui/common/index.ts +13 -0
  294. package/src/ui/customize.tsx +18 -10
  295. package/src/ui/index.ts +9 -9
  296. package/src/ui/localizer.tsx +11 -10
  297. package/dist/esm/types/ChatifyContext.d.ts +0 -11
  298. package/dist/esm/types/core/action.d.ts +0 -150
  299. package/dist/esm/types/core/models.d.ts +0 -70
  300. package/dist/esm/types/core/reducer.d.ts +0 -11
  301. package/dist/esm/types/core/state.d.ts +0 -55
  302. package/dist/esm/types/core/useAddChatMutation.d.ts +0 -2
  303. package/dist/esm/types/core/useAddMemberMutation.d.ts +0 -2
  304. package/dist/esm/types/core/useFetchNextMutation.d.ts +0 -3
  305. package/dist/esm/types/core/useGetAccountsQuery.d.ts +0 -3
  306. package/dist/esm/types/core/useGetChatListQuery.d.ts +0 -3
  307. package/dist/esm/types/core/useGetChatQuery.d.ts +0 -5
  308. package/dist/esm/types/core/useGetMessagesQuery.d.ts +0 -4
  309. package/dist/esm/types/core/useReadMonitor.d.ts +0 -1
  310. package/dist/esm/types/core/useRemoveMemberMutation.d.ts +0 -2
  311. package/dist/esm/types/core/useSendMutation.d.ts +0 -2
  312. package/dist/esm/types/core/useSignalRMonitor.d.ts +0 -2
  313. package/dist/esm/types/core/useUpdateChatNameMutation.d.ts +0 -2
  314. package/dist/esm/types/ui/AddChatButton.d.ts +0 -2
  315. package/dist/esm/types/ui/Avatar.d.ts +0 -6
  316. package/dist/esm/types/ui/ChatList/ChatList.d.ts +0 -2
  317. package/dist/esm/types/ui/ChatList/ChatListItemBox.d.ts +0 -6
  318. package/dist/esm/types/ui/ChatList/ChatListItemLastMessage.d.ts +0 -3
  319. package/dist/esm/types/ui/ChatList/ChatListItemLastMessageAuthor.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 -7
  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 -16
  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 -421
  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 -22
  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/styles/settings.scss +0 -5
  383. package/src/ui/AddChatButton.tsx +0 -15
  384. package/src/ui/Avatar.tsx +0 -18
  385. package/src/ui/ChatList/ChatListItemName.tsx +0 -13
  386. package/src/ui/ChatList/index.ts +0 -7
  387. package/src/ui/ChatName.tsx +0 -10
  388. package/src/ui/ChatPanel/ChatBody.tsx +0 -44
  389. package/src/ui/ChatPanel/ChatHeader.tsx +0 -33
  390. package/src/ui/ChatPanel/ChatHeaderMembers.tsx +0 -26
  391. package/src/ui/ChatPanel/ChatHeaderName.tsx +0 -67
  392. package/src/ui/ChatPanel/ChatMembersButton.tsx +0 -21
  393. package/src/ui/ChatPanel/ChatPanel.tsx +0 -27
  394. package/src/ui/ChatPanel/index.ts +0 -6
  395. package/src/ui/CreateChatPanel/CreateChatPanel.tsx +0 -33
  396. package/src/ui/CreateChatPanel/index.ts +0 -4
  397. package/src/ui/InputBox/InputBox.tsx +0 -38
  398. package/src/ui/InputBox/index.ts +0 -4
  399. package/src/ui/Layout/Aside.tsx +0 -10
  400. package/src/ui/Layout/Body.tsx +0 -10
  401. package/src/ui/Layout/Footer.tsx +0 -3
  402. package/src/ui/Layout/Header.tsx +0 -10
  403. package/src/ui/Layout/Main.tsx +0 -15
  404. package/src/ui/Layout/index.ts +0 -5
  405. package/src/ui/Message/index.ts +0 -6
  406. package/src/ui/SendingMessage/index.ts +0 -4
  407. package/src/ui/SystemMessage/SystemMessageRow.tsx +0 -43
  408. package/src/ui/SystemMessage/index.ts +0 -2
  409. package/src/util/index.ts +0 -2
  410. package/src/util/uniqBy.tsx +0 -17
  411. package/src/util/uniqId.tsx +0 -3
package/dist/index.d.ts CHANGED
@@ -1,50 +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
- timestamp: (value: string) => string;
10
- system: {
11
- chatCreated: () => string;
12
- memberAdded: () => string;
13
- memberRemoved: () => string;
14
- chatNameChanged: (newName: string) => string;
15
- };
16
- message: {
17
- read: () => react__default.ReactNode;
18
- reading: () => react__default.ReactNode;
19
- sending: () => react__default.ReactNode;
20
- };
21
- addChat: {
22
- title: () => react__default.ReactNode;
23
- name: {
24
- label: () => react__default.ReactNode;
25
- required: () => string;
26
- max250: () => string;
27
- };
28
- members: {
29
- label: () => react__default.ReactNode;
30
- required: () => string;
31
- };
32
- submitBtn: () => react__default.ReactNode;
33
- };
34
- input: {
35
- placeholder: () => string;
36
- };
37
- settings: {
38
- members: () => string;
39
- };
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;
40
22
  }
41
- declare const LocalizerContext: react__default.Context<Localizer>;
42
- declare function useLocalizer(): Localizer;
43
- declare const defaultLocalizer: Localizer;
23
+ declare function color(value: string, options?: ColorOptions): string;
44
24
 
45
25
  type Customizable<TComponent extends react__default.ComponentType<any>> = TComponent & {
46
26
  Component: TComponent;
27
+ key: string;
47
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";
48
88
 
49
89
  interface File {
50
90
  name: string;
@@ -56,29 +96,33 @@ interface Account {
56
96
  name: string;
57
97
  avatar: string;
58
98
  }
59
- interface Message {
99
+ interface MessageBase {
60
100
  id: string;
61
- chatId: string;
62
101
  text: string;
63
102
  files: File[];
64
103
  sentAt: string;
65
104
  sentBy: Account;
105
+ }
106
+ interface ChatMessage extends MessageBase {
107
+ chatId: string;
66
108
  requestId?: string;
67
109
  }
68
110
  interface Chat {
69
111
  id: string;
70
112
  name: string;
71
113
  members: Account[];
114
+ active: boolean;
115
+ lastReadMessageId: string | null;
72
116
  }
73
117
  interface ChatListItem {
74
118
  id: string;
75
119
  name: string;
76
- message: Message;
120
+ message: ChatMessage;
77
121
  totalUnreadCount: number;
78
122
  active: boolean;
79
123
  lastReadMessageId: string | null;
80
124
  }
81
- interface SendMessageRequest {
125
+ interface SendChatMessageRequest {
82
126
  chatId: string;
83
127
  text: string;
84
128
  files: File[];
@@ -94,20 +138,20 @@ interface AddChatRequest {
94
138
  message?: MessageBody;
95
139
  members: string[];
96
140
  }
97
- interface ReadRequest {
141
+ interface ReadChatMessageRequest {
98
142
  id: string;
99
143
  }
100
- interface ReadEvent {
144
+ interface ReadChatMessageEvent {
101
145
  chatId: string;
102
146
  newLastReadMessageId: string;
103
147
  readCount: number;
104
148
  }
105
- interface RemoveMemberRequest {
149
+ interface RemoveChatMemberRequest {
106
150
  chatId: string;
107
151
  accountId: string;
108
152
  deleteHistory: boolean;
109
153
  }
110
- interface AddMemberRequest {
154
+ interface AddChatMemberRequest {
111
155
  chatId: string;
112
156
  accountId: string;
113
157
  withHistory: boolean;
@@ -116,6 +160,37 @@ interface UpdateChatNameRequest {
116
160
  id: string;
117
161
  name: string;
118
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;
119
194
 
120
195
  interface ChatifySignalRConfig {
121
196
  hubUri?: string;
@@ -126,322 +201,2621 @@ interface ChatifyClientConfig {
126
201
  axios: AxiosInstance;
127
202
  signalR: ChatifySignalRConfig;
128
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
+ };
129
232
  declare class ChatifyClient {
130
233
  private _config;
131
234
  private _connection;
235
+ private _connectionPromise;
132
236
  private _subscribers;
133
237
  private _reconnectSubscribers;
238
+ private _threadConnectionByThreadId;
134
239
  constructor(config: ChatifyClientConfig);
135
- connect: () => Promise<void>;
136
- subscribe: <T extends any[]>(method: string, subscriber: (args: T) => void) => () => ((args: any[]) => void)[];
240
+ connect: () => Promise<SignalR.HubConnection | undefined>;
241
+ private createAndStartConnection;
242
+ 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)[];
137
243
  subscribeReconnect: (subscriber: () => any) => () => (() => void)[];
138
244
  private get axios();
139
245
  accounts: () => Promise<Account[]>;
140
246
  chats: () => Promise<ChatListItem[]>;
141
247
  chat: (id: string) => Promise<Chat>;
142
248
  addChat: (args: AddChatRequest) => Promise<string>;
143
- messages: (args: {
249
+ chatMessages: (args: {
144
250
  chatId: string;
145
251
  skip?: number;
146
252
  take?: number;
147
- }) => Promise<Message[]>;
148
- send: (request: SendMessageRequest) => Promise<void>;
149
- read: (request: ReadRequest) => Promise<void>;
150
- removeMember: (request: RemoveMemberRequest) => Promise<void>;
253
+ }) => Promise<ChatMessage[]>;
254
+ sendChatMessage: (request: SendChatMessageRequest) => Promise<void>;
255
+ readChatMessage: (request: ReadChatMessageRequest) => Promise<void>;
256
+ removeChatMember: (request: RemoveChatMemberRequest) => Promise<void>;
151
257
  updateChatName: (request: UpdateChatNameRequest) => Promise<void>;
152
- addMember: (request: AddMemberRequest) => Promise<void>;
258
+ addChatMember: (request: AddChatMemberRequest) => Promise<void>;
259
+ sendThreadMessage: ({ body, threadId }: SendThreadMessageRequest) => Promise<string>;
260
+ readThreadMessage: (id: string) => Promise<void>;
261
+ watchThreads: () => Promise<ThreadWatchListItem[]>;
262
+ thread: (id: string) => Promise<Thread>;
263
+ threadMessages: ({ threadId, skip, take, }: {
264
+ threadId: string;
265
+ skip: number;
266
+ take: number;
267
+ }) => Promise<ThreadMessage[]>;
268
+ watchThread: (id: string, watch: boolean) => Promise<void>;
269
+ connectToThread: (id: string) => Promise<void>;
270
+ disconnectFromThread: (id: string) => Promise<void>;
153
271
  }
154
-
155
- type MessageState = ({
156
- type: 'message';
157
- } & Message) | {
158
- type: 'next';
159
- } | {
160
- type: 'sending';
161
- text: string;
162
- files: File[];
163
- requestId: string;
272
+ declare function unsubscribe(...subscribers: Array<() => void>): {
273
+ (): void;
274
+ when(promise: Promise<any>): Promise<void>;
164
275
  };
165
- interface UIState {
166
- view?: 'chat' | 'new-chat';
167
- showMembers: boolean;
168
- chatId?: string;
276
+
277
+ interface DebounceInternalValue<T> {
278
+ value: T;
279
+ enqueueTime: number;
169
280
  }
170
- interface QueryState<TData> {
171
- uninitialized: boolean;
172
- isFetching: boolean;
173
- error?: any;
174
- data?: TData;
175
- requestId?: string;
281
+ interface DebounceValue<T> extends DebounceInternalValue<T> {
282
+ state: 'enqueued' | 'processing';
283
+ }
284
+
285
+ interface ChatifyApiSettings {
286
+ me: () => string;
287
+ client: ChatifyClient;
288
+ }
289
+
290
+ interface ChatMessageListResult {
291
+ messages: ChatMessage[];
292
+ hasMore: boolean;
293
+ }
294
+ interface ThreadMessageList {
295
+ messages: ThreadMessage[];
296
+ hasMore: boolean;
176
297
  }
177
- interface MutationState {
298
+ declare function useChatListItem(id: string | null): ChatListItem | null | undefined;
299
+ declare function useUnreadThreadMessageCount(): readonly [number | null, {
300
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
301
+ requestId?: undefined;
302
+ fulfilledTimeStamp?: undefined;
303
+ originalArgs?: undefined;
304
+ error?: undefined;
305
+ endpointName?: string | undefined;
306
+ startedTimeStamp?: undefined;
307
+ currentData?: ThreadWatchListItem[] | undefined;
308
+ isLoading: false;
309
+ isFetching: false;
310
+ isSuccess: false;
311
+ isError: false;
312
+ isUninitialized: true;
313
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
314
+ } | {
315
+ status: _reduxjs_toolkit_query.QueryStatus;
316
+ requestId?: string | undefined;
317
+ fulfilledTimeStamp?: number | undefined;
318
+ originalArgs?: void | undefined;
319
+ error?: unknown;
320
+ endpointName?: string | undefined;
321
+ startedTimeStamp?: number | undefined;
322
+ currentData?: ThreadWatchListItem[] | undefined;
323
+ isUninitialized: false;
324
+ isSuccess: false;
325
+ isError: false;
326
+ isLoading: true;
178
327
  isFetching: boolean;
179
- error?: any;
180
- }
181
- interface QueueState<TValue> {
182
- queued: TValue[];
183
- processing: TValue[];
184
- timestamp: number;
185
- }
186
- interface State {
187
- ui: UIState;
188
- query: {
189
- messages: Record<string, QueryState<MessageState[]>>;
190
- chats: Record<string, QueryState<Chat>>;
191
- chatList: QueryState<ChatListItem[]>;
192
- accounts: QueryState<Account[]>;
328
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
329
+ } | {
330
+ status: _reduxjs_toolkit_query.QueryStatus;
331
+ requestId?: string | undefined;
332
+ originalArgs?: void | undefined;
333
+ endpointName?: string | undefined;
334
+ startedTimeStamp?: number | undefined;
335
+ currentData?: ThreadWatchListItem[] | undefined;
336
+ isUninitialized: false;
337
+ isLoading: false;
338
+ isError: false;
339
+ isSuccess: true;
340
+ isFetching: true;
341
+ error: undefined;
342
+ fulfilledTimeStamp: number;
343
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
344
+ } | {
345
+ status: _reduxjs_toolkit_query.QueryStatus;
346
+ requestId?: string | undefined;
347
+ originalArgs?: void | undefined;
348
+ endpointName?: string | undefined;
349
+ startedTimeStamp?: number | undefined;
350
+ isUninitialized: false;
351
+ isLoading: false;
352
+ isError: false;
353
+ isSuccess: true;
354
+ isFetching: false;
355
+ error: undefined;
356
+ fulfilledTimeStamp: number;
357
+ currentData: ThreadWatchListItem[];
358
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
359
+ } | {
360
+ status: _reduxjs_toolkit_query.QueryStatus;
361
+ requestId?: string | undefined;
362
+ fulfilledTimeStamp?: number | undefined;
363
+ originalArgs?: void | undefined;
364
+ endpointName?: string | undefined;
365
+ startedTimeStamp?: number | undefined;
366
+ currentData?: ThreadWatchListItem[] | undefined;
367
+ isUninitialized: false;
368
+ isLoading: false;
369
+ isFetching: false;
370
+ isSuccess: false;
371
+ isError: true;
372
+ error: unknown;
373
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">>;
374
+ }];
375
+ declare const chatifyApi: {
376
+ reducerPath: "chatify";
377
+ internalActions: _reduxjs_toolkit_dist_query_core_module.InternalActions;
378
+ reducer: redux.Reducer<_reduxjs_toolkit_query.CombinedState<{
379
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
380
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
381
+ id: string;
382
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
383
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
384
+ name: string;
385
+ members: string[];
386
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
387
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
388
+ id: string;
389
+ name: string;
390
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
391
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
392
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
393
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
394
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
395
+ chatId: string;
396
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
397
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
398
+ chatId: string;
399
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
400
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
401
+ chatId: string;
402
+ text: string;
403
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
404
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
405
+ id: string;
406
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
407
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
408
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
409
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
410
+ id: string;
411
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
412
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
413
+ id: string;
414
+ watch: boolean;
415
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
416
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
417
+ threadId: string;
418
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
419
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
420
+ threadId: string;
421
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
422
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
423
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
424
+ id: string;
425
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
426
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
427
+ }, "chat" | "account" | "message" | "thread" | "thread-message", "chatify">, redux.UnknownAction>;
428
+ middleware: redux.Middleware<{}, _reduxjs_toolkit_query.RootState<{
429
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
430
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
431
+ id: string;
432
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
433
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
434
+ name: string;
435
+ members: string[];
436
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
437
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
438
+ id: string;
439
+ name: string;
440
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
441
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
442
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
443
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
444
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
445
+ chatId: string;
446
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
447
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
448
+ chatId: string;
449
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
450
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
451
+ chatId: string;
452
+ text: string;
453
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
454
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
455
+ id: string;
456
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
457
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
458
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
459
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
460
+ id: string;
461
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
462
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
463
+ id: string;
464
+ watch: boolean;
465
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
466
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
467
+ threadId: string;
468
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
469
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
470
+ threadId: string;
471
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
472
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
473
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
474
+ id: string;
475
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
476
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
477
+ }, string, "chatify">, redux_thunk.ThunkDispatch<any, any, redux.UnknownAction>>;
478
+ util: {
479
+ getRunningQueryThunk<EndpointName extends _reduxjs_toolkit_query.QueryKeys<{
480
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
481
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
482
+ id: string;
483
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
484
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
485
+ name: string;
486
+ members: string[];
487
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
488
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
489
+ id: string;
490
+ name: string;
491
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
492
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
493
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
494
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
495
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
496
+ chatId: string;
497
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
498
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
499
+ chatId: string;
500
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
501
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
502
+ chatId: string;
503
+ text: string;
504
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
505
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
506
+ id: string;
507
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
508
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
509
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
510
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
511
+ id: string;
512
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
513
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
514
+ id: string;
515
+ watch: boolean;
516
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
517
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
518
+ threadId: string;
519
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
520
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
521
+ threadId: string;
522
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
523
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
524
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
525
+ id: string;
526
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
527
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
528
+ }>>(endpointName: EndpointName, args: _reduxjs_toolkit_query.QueryArgFrom<{
529
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
530
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
531
+ id: string;
532
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
533
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
534
+ name: string;
535
+ members: string[];
536
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
537
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
538
+ id: string;
539
+ name: string;
540
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
541
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
542
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
543
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
544
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
545
+ chatId: string;
546
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
547
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
548
+ chatId: string;
549
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
550
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
551
+ chatId: string;
552
+ text: string;
553
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
554
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
555
+ id: string;
556
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
557
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
558
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
559
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
560
+ id: string;
561
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
562
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
563
+ id: string;
564
+ watch: boolean;
565
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
566
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
567
+ threadId: string;
568
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
569
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
570
+ threadId: string;
571
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
572
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
573
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
574
+ id: string;
575
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
576
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
577
+ }[EndpointName]>): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.QueryActionCreatorResult<never> | undefined>;
578
+ getRunningMutationThunk<EndpointName_1 extends _reduxjs_toolkit_dist_query_core_apiState.MutationKeys<{
579
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
580
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
581
+ id: string;
582
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
583
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
584
+ name: string;
585
+ members: string[];
586
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
587
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
588
+ id: string;
589
+ name: string;
590
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
591
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
592
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
593
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
594
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
595
+ chatId: string;
596
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
597
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
598
+ chatId: string;
599
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
600
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
601
+ chatId: string;
602
+ text: string;
603
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
604
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
605
+ id: string;
606
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
607
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
608
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
609
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
610
+ id: string;
611
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
612
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
613
+ id: string;
614
+ watch: boolean;
615
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
616
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
617
+ threadId: string;
618
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
619
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
620
+ threadId: string;
621
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
622
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
623
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
624
+ id: string;
625
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
626
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
627
+ }>>(endpointName: EndpointName_1, fixedCacheKeyOrRequestId: string): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.MutationActionCreatorResult<never> | undefined>;
628
+ getRunningQueriesThunk(): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.QueryActionCreatorResult<any>[]>;
629
+ getRunningMutationsThunk(): _reduxjs_toolkit_dist_query_core_module.ThunkWithReturnValue<_reduxjs_toolkit_query.MutationActionCreatorResult<any>[]>;
630
+ prefetch<EndpointName_2 extends _reduxjs_toolkit_query.QueryKeys<{
631
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
632
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
633
+ id: string;
634
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
635
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
636
+ name: string;
637
+ members: string[];
638
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
639
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
640
+ id: string;
641
+ name: string;
642
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
643
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
644
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
645
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
646
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
647
+ chatId: string;
648
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
649
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
650
+ chatId: string;
651
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
652
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
653
+ chatId: string;
654
+ text: string;
655
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
656
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
657
+ id: string;
658
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
659
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
660
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
661
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
662
+ id: string;
663
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
664
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
665
+ id: string;
666
+ watch: boolean;
667
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
668
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
669
+ threadId: string;
670
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
671
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
672
+ threadId: string;
673
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
674
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
675
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
676
+ id: string;
677
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
678
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
679
+ }>>(endpointName: EndpointName_2, arg: _reduxjs_toolkit_query.QueryArgFrom<{
680
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
681
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
682
+ id: string;
683
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
684
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
685
+ name: string;
686
+ members: string[];
687
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
688
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
689
+ id: string;
690
+ name: string;
691
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
692
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
693
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
694
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
695
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
696
+ chatId: string;
697
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
698
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
699
+ chatId: string;
700
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
701
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
702
+ chatId: string;
703
+ text: string;
704
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
705
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
706
+ id: string;
707
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
708
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
709
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
710
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
711
+ id: string;
712
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
713
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
714
+ id: string;
715
+ watch: boolean;
716
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
717
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
718
+ threadId: string;
719
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
720
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
721
+ threadId: string;
722
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
723
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
724
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
725
+ id: string;
726
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
727
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
728
+ }[EndpointName_2]>, options: _reduxjs_toolkit_query.PrefetchOptions): redux_thunk.ThunkAction<void, any, any, redux.UnknownAction>;
729
+ updateQueryData: _reduxjs_toolkit_dist_query_core_buildThunks.UpdateQueryDataThunk<{
730
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
731
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
732
+ id: string;
733
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
734
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
735
+ name: string;
736
+ members: string[];
737
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
738
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
739
+ id: string;
740
+ name: string;
741
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
742
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
743
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
744
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
745
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
746
+ chatId: string;
747
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
748
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
749
+ chatId: string;
750
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
751
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
752
+ chatId: string;
753
+ text: string;
754
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
755
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
756
+ id: string;
757
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
758
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
759
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
760
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
761
+ id: string;
762
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
763
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
764
+ id: string;
765
+ watch: boolean;
766
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
767
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
768
+ threadId: string;
769
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
770
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
771
+ threadId: string;
772
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
773
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
774
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
775
+ id: string;
776
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
777
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
778
+ }, _reduxjs_toolkit_query.RootState<{
779
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
780
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
781
+ id: string;
782
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
783
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
784
+ name: string;
785
+ members: string[];
786
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
787
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
788
+ id: string;
789
+ name: string;
790
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
791
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
792
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
793
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
794
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
795
+ chatId: string;
796
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
797
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
798
+ chatId: string;
799
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
800
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
801
+ chatId: string;
802
+ text: string;
803
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
804
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
805
+ id: string;
806
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
807
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
808
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
809
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
810
+ id: string;
811
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
812
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
813
+ id: string;
814
+ watch: boolean;
815
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
816
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
817
+ threadId: string;
818
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
819
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
820
+ threadId: string;
821
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
822
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
823
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
824
+ id: string;
825
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
826
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
827
+ }, string, "chatify">>;
828
+ upsertQueryData: _reduxjs_toolkit_dist_query_core_buildThunks.UpsertQueryDataThunk<{
829
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
830
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
831
+ id: string;
832
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
833
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
834
+ name: string;
835
+ members: string[];
836
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
837
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
838
+ id: string;
839
+ name: string;
840
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
841
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
842
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
843
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
844
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
845
+ chatId: string;
846
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
847
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
848
+ chatId: string;
849
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
850
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
851
+ chatId: string;
852
+ text: string;
853
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
854
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
855
+ id: string;
856
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
857
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
858
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
859
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
860
+ id: string;
861
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
862
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
863
+ id: string;
864
+ watch: boolean;
865
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
866
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
867
+ threadId: string;
868
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
869
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
870
+ threadId: string;
871
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
872
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
873
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
874
+ id: string;
875
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
876
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
877
+ }, _reduxjs_toolkit_query.RootState<{
878
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
879
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
880
+ id: string;
881
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
882
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
883
+ name: string;
884
+ members: string[];
885
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
886
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
887
+ id: string;
888
+ name: string;
889
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
890
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
891
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
892
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
893
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
894
+ chatId: string;
895
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
896
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
897
+ chatId: string;
898
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
899
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
900
+ chatId: string;
901
+ text: string;
902
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
903
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
904
+ id: string;
905
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
906
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
907
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
908
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
909
+ id: string;
910
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
911
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
912
+ id: string;
913
+ watch: boolean;
914
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
915
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
916
+ threadId: string;
917
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
918
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
919
+ threadId: string;
920
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
921
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
922
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
923
+ id: string;
924
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
925
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
926
+ }, string, "chatify">>;
927
+ patchQueryData: _reduxjs_toolkit_dist_query_core_buildThunks.PatchQueryDataThunk<{
928
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
929
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
930
+ id: string;
931
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
932
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
933
+ name: string;
934
+ members: string[];
935
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
936
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
937
+ id: string;
938
+ name: string;
939
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
940
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
941
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
942
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
943
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
944
+ chatId: string;
945
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
946
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
947
+ chatId: string;
948
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
949
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
950
+ chatId: string;
951
+ text: string;
952
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
953
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
954
+ id: string;
955
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
956
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
957
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
958
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
959
+ id: string;
960
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
961
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
962
+ id: string;
963
+ watch: boolean;
964
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
965
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
966
+ threadId: string;
967
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
968
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
969
+ threadId: string;
970
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
971
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
972
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
973
+ id: string;
974
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
975
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
976
+ }, _reduxjs_toolkit_query.RootState<{
977
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
978
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
979
+ id: string;
980
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
981
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
982
+ name: string;
983
+ members: string[];
984
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
985
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
986
+ id: string;
987
+ name: string;
988
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
989
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
990
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
991
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
992
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
993
+ chatId: string;
994
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
995
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
996
+ chatId: string;
997
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
998
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
999
+ chatId: string;
1000
+ text: string;
1001
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1002
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1003
+ id: string;
1004
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1005
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1006
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1007
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1008
+ id: string;
1009
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1010
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1011
+ id: string;
1012
+ watch: boolean;
1013
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1014
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1015
+ threadId: string;
1016
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1017
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1018
+ threadId: string;
1019
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1020
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1021
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1022
+ id: string;
1023
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1024
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1025
+ }, string, "chatify">>;
1026
+ resetApiState: _reduxjs_toolkit.ActionCreatorWithoutPayload<`${string}/resetApiState`>;
1027
+ invalidateTags: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit_query.TagDescription<"chat" | "account" | "message" | "thread" | "thread-message">[], string>;
1028
+ selectInvalidatedBy: (state: _reduxjs_toolkit_query.RootState<{
1029
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1030
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1031
+ id: string;
1032
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1033
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1034
+ name: string;
1035
+ members: string[];
1036
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1037
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1038
+ id: string;
1039
+ name: string;
1040
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1041
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1042
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1043
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1044
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1045
+ chatId: string;
1046
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1047
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1048
+ chatId: string;
1049
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1050
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1051
+ chatId: string;
1052
+ text: string;
1053
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1054
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1055
+ id: string;
1056
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1057
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1058
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1059
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1060
+ id: string;
1061
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1062
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1063
+ id: string;
1064
+ watch: boolean;
1065
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1066
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1067
+ threadId: string;
1068
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1069
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1070
+ threadId: string;
1071
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1072
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1073
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1074
+ id: string;
1075
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1076
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1077
+ }, string, "chatify">, tags: readonly _reduxjs_toolkit_query.TagDescription<"chat" | "account" | "message" | "thread" | "thread-message">[]) => {
1078
+ endpointName: string;
1079
+ originalArgs: any;
1080
+ queryCacheKey: string;
1081
+ }[];
1082
+ selectCachedArgsForQuery: <QueryName extends _reduxjs_toolkit_query.QueryKeys<{
1083
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1084
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1085
+ id: string;
1086
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1087
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1088
+ name: string;
1089
+ members: string[];
1090
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1091
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1092
+ id: string;
1093
+ name: string;
1094
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1095
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1096
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1097
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1098
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1099
+ chatId: string;
1100
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1101
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1102
+ chatId: string;
1103
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1104
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1105
+ chatId: string;
1106
+ text: string;
1107
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1108
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1109
+ id: string;
1110
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1111
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1112
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1113
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1114
+ id: string;
1115
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1116
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1117
+ id: string;
1118
+ watch: boolean;
1119
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1120
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1121
+ threadId: string;
1122
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1123
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1124
+ threadId: string;
1125
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1126
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1127
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1128
+ id: string;
1129
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1130
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1131
+ }>>(state: _reduxjs_toolkit_query.RootState<{
1132
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1133
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1134
+ id: string;
1135
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1136
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1137
+ name: string;
1138
+ members: string[];
1139
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1140
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1141
+ id: string;
1142
+ name: string;
1143
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1144
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1145
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1146
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1147
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1148
+ chatId: string;
1149
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1150
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1151
+ chatId: string;
1152
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1153
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1154
+ chatId: string;
1155
+ text: string;
1156
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1157
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1158
+ id: string;
1159
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1160
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1161
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1162
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1163
+ id: string;
1164
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1165
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1166
+ id: string;
1167
+ watch: boolean;
1168
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1169
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1170
+ threadId: string;
1171
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1172
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1173
+ threadId: string;
1174
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1175
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1176
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1177
+ id: string;
1178
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1179
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1180
+ }, string, "chatify">, queryName: QueryName) => _reduxjs_toolkit_query.QueryArgFrom<{
1181
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1182
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1183
+ id: string;
1184
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1185
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1186
+ name: string;
1187
+ members: string[];
1188
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1189
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1190
+ id: string;
1191
+ name: string;
1192
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1193
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1194
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1195
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1196
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1197
+ chatId: string;
1198
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1199
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1200
+ chatId: string;
1201
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1202
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1203
+ chatId: string;
1204
+ text: string;
1205
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1206
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1207
+ id: string;
1208
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1209
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1210
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1211
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1212
+ id: string;
1213
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1214
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1215
+ id: string;
1216
+ watch: boolean;
1217
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1218
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1219
+ threadId: string;
1220
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1221
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1222
+ threadId: string;
1223
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1224
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1225
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1226
+ id: string;
1227
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1228
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1229
+ }[QueryName]>[];
193
1230
  };
194
- mutation: {
195
- fetchNext: MutationState;
196
- removeMember: MutationState;
197
- addMember: MutationState;
198
- updateChatName: MutationState;
199
- addChat: MutationState;
200
- send: MutationState;
1231
+ endpoints: {
1232
+ getAccountList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">, {
1233
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1234
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1235
+ id: string;
1236
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1237
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1238
+ name: string;
1239
+ members: string[];
1240
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1241
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1242
+ id: string;
1243
+ name: string;
1244
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1245
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1246
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1247
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1248
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1249
+ chatId: string;
1250
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1251
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1252
+ chatId: string;
1253
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1254
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1255
+ chatId: string;
1256
+ text: string;
1257
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1258
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1259
+ id: string;
1260
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1261
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1262
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1263
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1264
+ id: string;
1265
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1266
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1267
+ id: string;
1268
+ watch: boolean;
1269
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1270
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1271
+ threadId: string;
1272
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1273
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1274
+ threadId: string;
1275
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1276
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1277
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1278
+ id: string;
1279
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1280
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1281
+ }>;
1282
+ getChat: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
1283
+ id: string;
1284
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">, {
1285
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1286
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1287
+ id: string;
1288
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1289
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1290
+ name: string;
1291
+ members: string[];
1292
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1293
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1294
+ id: string;
1295
+ name: string;
1296
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1297
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1298
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1299
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1300
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1301
+ chatId: string;
1302
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1303
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1304
+ chatId: string;
1305
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1306
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1307
+ chatId: string;
1308
+ text: string;
1309
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1310
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1311
+ id: string;
1312
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1313
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1314
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1315
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1316
+ id: string;
1317
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1318
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1319
+ id: string;
1320
+ watch: boolean;
1321
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1322
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1323
+ threadId: string;
1324
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1325
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1326
+ threadId: string;
1327
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1328
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1329
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1330
+ id: string;
1331
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1332
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1333
+ }>;
1334
+ addChat: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1335
+ name: string;
1336
+ members: string[];
1337
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">, {
1338
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1339
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1340
+ id: string;
1341
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1342
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1343
+ name: string;
1344
+ members: string[];
1345
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1346
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1347
+ id: string;
1348
+ name: string;
1349
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1350
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1351
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1352
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1353
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1354
+ chatId: string;
1355
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1356
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1357
+ chatId: string;
1358
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1359
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1360
+ chatId: string;
1361
+ text: string;
1362
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1363
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1364
+ id: string;
1365
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1366
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1367
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1368
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1369
+ id: string;
1370
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1371
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1372
+ id: string;
1373
+ watch: boolean;
1374
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1375
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1376
+ threadId: string;
1377
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1378
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1379
+ threadId: string;
1380
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1381
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1382
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1383
+ id: string;
1384
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1385
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1386
+ }>;
1387
+ updateChatName: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1388
+ id: string;
1389
+ name: string;
1390
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1391
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1392
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1393
+ id: string;
1394
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1395
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1396
+ name: string;
1397
+ members: string[];
1398
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1399
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1400
+ id: string;
1401
+ name: string;
1402
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1403
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1404
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1405
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1406
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1407
+ chatId: string;
1408
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1409
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1410
+ chatId: string;
1411
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1412
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1413
+ chatId: string;
1414
+ text: string;
1415
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1416
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1417
+ id: string;
1418
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1419
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1420
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1421
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1422
+ id: string;
1423
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1424
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1425
+ id: string;
1426
+ watch: boolean;
1427
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1428
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1429
+ threadId: string;
1430
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1431
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1432
+ threadId: string;
1433
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1434
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1435
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1436
+ id: string;
1437
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1438
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1439
+ }>;
1440
+ getChatList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">, {
1441
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1442
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1443
+ id: string;
1444
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1445
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1446
+ name: string;
1447
+ members: string[];
1448
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1449
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1450
+ id: string;
1451
+ name: string;
1452
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1453
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1454
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1455
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1456
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1457
+ chatId: string;
1458
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1459
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1460
+ chatId: string;
1461
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1462
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1463
+ chatId: string;
1464
+ text: string;
1465
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1466
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1467
+ id: string;
1468
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1469
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1470
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1471
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1472
+ id: string;
1473
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1474
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1475
+ id: string;
1476
+ watch: boolean;
1477
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1478
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1479
+ threadId: string;
1480
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1481
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1482
+ threadId: string;
1483
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1484
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1485
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1486
+ id: string;
1487
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1488
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1489
+ }>;
1490
+ removeChatMember: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1491
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1492
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1493
+ id: string;
1494
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1495
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1496
+ name: string;
1497
+ members: string[];
1498
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1499
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1500
+ id: string;
1501
+ name: string;
1502
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1503
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1504
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1505
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1506
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1507
+ chatId: string;
1508
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1509
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1510
+ chatId: string;
1511
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1512
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1513
+ chatId: string;
1514
+ text: string;
1515
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1516
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1517
+ id: string;
1518
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1519
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1520
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1521
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1522
+ id: string;
1523
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1524
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1525
+ id: string;
1526
+ watch: boolean;
1527
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1528
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1529
+ threadId: string;
1530
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1531
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1532
+ threadId: string;
1533
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1534
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1535
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1536
+ id: string;
1537
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1538
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1539
+ }>;
1540
+ addChatMember: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1541
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1542
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1543
+ id: string;
1544
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1545
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1546
+ name: string;
1547
+ members: string[];
1548
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1549
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1550
+ id: string;
1551
+ name: string;
1552
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1553
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1554
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1555
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1556
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1557
+ chatId: string;
1558
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1559
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1560
+ chatId: string;
1561
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1562
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1563
+ chatId: string;
1564
+ text: string;
1565
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1566
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1567
+ id: string;
1568
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1569
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1570
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1571
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1572
+ id: string;
1573
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1574
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1575
+ id: string;
1576
+ watch: boolean;
1577
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1578
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1579
+ threadId: string;
1580
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1581
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1582
+ threadId: string;
1583
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1584
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1585
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1586
+ id: string;
1587
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1588
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1589
+ }>;
1590
+ getChatMessageList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
1591
+ chatId: string;
1592
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">, {
1593
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1594
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1595
+ id: string;
1596
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1597
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1598
+ name: string;
1599
+ members: string[];
1600
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1601
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1602
+ id: string;
1603
+ name: string;
1604
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1605
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1606
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1607
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1608
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1609
+ chatId: string;
1610
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1611
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1612
+ chatId: string;
1613
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1614
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1615
+ chatId: string;
1616
+ text: string;
1617
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1618
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1619
+ id: string;
1620
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1621
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1622
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1623
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1624
+ id: string;
1625
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1626
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1627
+ id: string;
1628
+ watch: boolean;
1629
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1630
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1631
+ threadId: string;
1632
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1633
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1634
+ threadId: string;
1635
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1636
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1637
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1638
+ id: string;
1639
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1640
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1641
+ }>;
1642
+ fetchNextChatMessageList: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1643
+ chatId: string;
1644
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1645
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1646
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1647
+ id: string;
1648
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1649
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1650
+ name: string;
1651
+ members: string[];
1652
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1653
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1654
+ id: string;
1655
+ name: string;
1656
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1657
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1658
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1659
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1660
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1661
+ chatId: string;
1662
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1663
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1664
+ chatId: string;
1665
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1666
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1667
+ chatId: string;
1668
+ text: string;
1669
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1670
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1671
+ id: string;
1672
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1673
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1674
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1675
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1676
+ id: string;
1677
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1678
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1679
+ id: string;
1680
+ watch: boolean;
1681
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1682
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1683
+ threadId: string;
1684
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1685
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1686
+ threadId: string;
1687
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1688
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1689
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1690
+ id: string;
1691
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1692
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1693
+ }>;
1694
+ sendChatMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1695
+ chatId: string;
1696
+ text: string;
1697
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1698
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1699
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1700
+ id: string;
1701
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1702
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1703
+ name: string;
1704
+ members: string[];
1705
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1706
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1707
+ id: string;
1708
+ name: string;
1709
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1710
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1711
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1712
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1713
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1714
+ chatId: string;
1715
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1716
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1717
+ chatId: string;
1718
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1719
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1720
+ chatId: string;
1721
+ text: string;
1722
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1723
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1724
+ id: string;
1725
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1726
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1727
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1728
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1729
+ id: string;
1730
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1731
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1732
+ id: string;
1733
+ watch: boolean;
1734
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1735
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1736
+ threadId: string;
1737
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1738
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1739
+ threadId: string;
1740
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1741
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1742
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1743
+ id: string;
1744
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1745
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1746
+ }>;
1747
+ readChatMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1748
+ id: string;
1749
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1750
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1751
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1752
+ id: string;
1753
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1754
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1755
+ name: string;
1756
+ members: string[];
1757
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1758
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1759
+ id: string;
1760
+ name: string;
1761
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1762
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1763
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1764
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1765
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1766
+ chatId: string;
1767
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1768
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1769
+ chatId: string;
1770
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1771
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1772
+ chatId: string;
1773
+ text: string;
1774
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1775
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1776
+ id: string;
1777
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1778
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1779
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1780
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1781
+ id: string;
1782
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1783
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1784
+ id: string;
1785
+ watch: boolean;
1786
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1787
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1788
+ threadId: string;
1789
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1790
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1791
+ threadId: string;
1792
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1793
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1794
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1795
+ id: string;
1796
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1797
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1798
+ }>;
1799
+ getChatMessageReadQueue: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">, {
1800
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1801
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1802
+ id: string;
1803
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1804
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1805
+ name: string;
1806
+ members: string[];
1807
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1808
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1809
+ id: string;
1810
+ name: string;
1811
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1812
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1813
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1814
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1815
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1816
+ chatId: string;
1817
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1818
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1819
+ chatId: string;
1820
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1821
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1822
+ chatId: string;
1823
+ text: string;
1824
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1825
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1826
+ id: string;
1827
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1828
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1829
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1830
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1831
+ id: string;
1832
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1833
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1834
+ id: string;
1835
+ watch: boolean;
1836
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1837
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1838
+ threadId: string;
1839
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1840
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1841
+ threadId: string;
1842
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1843
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1844
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1845
+ id: string;
1846
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1847
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1848
+ }>;
1849
+ getWatchThreadList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">, {
1850
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1851
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1852
+ id: string;
1853
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1854
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1855
+ name: string;
1856
+ members: string[];
1857
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1858
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1859
+ id: string;
1860
+ name: string;
1861
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1862
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1863
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1864
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1865
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1866
+ chatId: string;
1867
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1868
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1869
+ chatId: string;
1870
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1871
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1872
+ chatId: string;
1873
+ text: string;
1874
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1875
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1876
+ id: string;
1877
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1878
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1879
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1880
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1881
+ id: string;
1882
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1883
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1884
+ id: string;
1885
+ watch: boolean;
1886
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1887
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1888
+ threadId: string;
1889
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1890
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1891
+ threadId: string;
1892
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1893
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1894
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1895
+ id: string;
1896
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1897
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1898
+ }>;
1899
+ getThread: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
1900
+ id: string;
1901
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">, {
1902
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1903
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1904
+ id: string;
1905
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1906
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1907
+ name: string;
1908
+ members: string[];
1909
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1910
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1911
+ id: string;
1912
+ name: string;
1913
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1914
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1915
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1916
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1917
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1918
+ chatId: string;
1919
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1920
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1921
+ chatId: string;
1922
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1923
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1924
+ chatId: string;
1925
+ text: string;
1926
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1927
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1928
+ id: string;
1929
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1930
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1931
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1932
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1933
+ id: string;
1934
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1935
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1936
+ id: string;
1937
+ watch: boolean;
1938
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1939
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1940
+ threadId: string;
1941
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1942
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1943
+ threadId: string;
1944
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1945
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1946
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
1947
+ id: string;
1948
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1949
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1950
+ }>;
1951
+ watchThread: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
1952
+ id: string;
1953
+ watch: boolean;
1954
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
1955
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
1956
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
1957
+ id: string;
1958
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
1959
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
1960
+ name: string;
1961
+ members: string[];
1962
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1963
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
1964
+ id: string;
1965
+ name: string;
1966
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1967
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
1968
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1969
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1970
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1971
+ chatId: string;
1972
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
1973
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1974
+ chatId: string;
1975
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1976
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1977
+ chatId: string;
1978
+ text: string;
1979
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1980
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
1981
+ id: string;
1982
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1983
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
1984
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
1985
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
1986
+ id: string;
1987
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
1988
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
1989
+ id: string;
1990
+ watch: boolean;
1991
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1992
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
1993
+ threadId: string;
1994
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
1995
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
1996
+ threadId: string;
1997
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
1998
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
1999
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2000
+ id: string;
2001
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2002
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2003
+ }>;
2004
+ getThreadMessageList: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<{
2005
+ threadId: string;
2006
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">, {
2007
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2008
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2009
+ id: string;
2010
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2011
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2012
+ name: string;
2013
+ members: string[];
2014
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2015
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2016
+ id: string;
2017
+ name: string;
2018
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2019
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2020
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2021
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2022
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2023
+ chatId: string;
2024
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2025
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2026
+ chatId: string;
2027
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2028
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2029
+ chatId: string;
2030
+ text: string;
2031
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2032
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2033
+ id: string;
2034
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2035
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2036
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2037
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2038
+ id: string;
2039
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2040
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2041
+ id: string;
2042
+ watch: boolean;
2043
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2044
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2045
+ threadId: string;
2046
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2047
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2048
+ threadId: string;
2049
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2050
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2051
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2052
+ id: string;
2053
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2054
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2055
+ }>;
2056
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
2057
+ threadId: string;
2058
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
2059
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2060
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2061
+ id: string;
2062
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2063
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2064
+ name: string;
2065
+ members: string[];
2066
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2067
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2068
+ id: string;
2069
+ name: string;
2070
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2071
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2072
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2073
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2074
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2075
+ chatId: string;
2076
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2077
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2078
+ chatId: string;
2079
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2080
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2081
+ chatId: string;
2082
+ text: string;
2083
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2084
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2085
+ id: string;
2086
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2087
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2088
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2089
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2090
+ id: string;
2091
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2092
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2093
+ id: string;
2094
+ watch: boolean;
2095
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2096
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2097
+ threadId: string;
2098
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2099
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2100
+ threadId: string;
2101
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2102
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2103
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2104
+ id: string;
2105
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2106
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2107
+ }>;
2108
+ sendThreadMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">, {
2109
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2110
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2111
+ id: string;
2112
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2113
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2114
+ name: string;
2115
+ members: string[];
2116
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2117
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2118
+ id: string;
2119
+ name: string;
2120
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2121
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2122
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2123
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2124
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2125
+ chatId: string;
2126
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2127
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2128
+ chatId: string;
2129
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2130
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2131
+ chatId: string;
2132
+ text: string;
2133
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2134
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2135
+ id: string;
2136
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2137
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2138
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2139
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2140
+ id: string;
2141
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2142
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2143
+ id: string;
2144
+ watch: boolean;
2145
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2146
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2147
+ threadId: string;
2148
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2149
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2150
+ threadId: string;
2151
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2152
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2153
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2154
+ id: string;
2155
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2156
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2157
+ }>;
2158
+ readThreadMessage: _reduxjs_toolkit_query.ApiEndpointMutation<_reduxjs_toolkit_query.MutationDefinition<{
2159
+ id: string;
2160
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">, {
2161
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2162
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2163
+ id: string;
2164
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2165
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2166
+ name: string;
2167
+ members: string[];
2168
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2169
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2170
+ id: string;
2171
+ name: string;
2172
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2173
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2174
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2175
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2176
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2177
+ chatId: string;
2178
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2179
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2180
+ chatId: string;
2181
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2182
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2183
+ chatId: string;
2184
+ text: string;
2185
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2186
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2187
+ id: string;
2188
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2189
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2190
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2191
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2192
+ id: string;
2193
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2194
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2195
+ id: string;
2196
+ watch: boolean;
2197
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2198
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2199
+ threadId: string;
2200
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2201
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2202
+ threadId: string;
2203
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2204
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2205
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2206
+ id: string;
2207
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2208
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2209
+ }>;
2210
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.ApiEndpointQuery<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">, {
2211
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2212
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2213
+ id: string;
2214
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2215
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2216
+ name: string;
2217
+ members: string[];
2218
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2219
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2220
+ id: string;
2221
+ name: string;
2222
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2223
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2224
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2225
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2226
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2227
+ chatId: string;
2228
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2229
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2230
+ chatId: string;
2231
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2232
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2233
+ chatId: string;
2234
+ text: string;
2235
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2236
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2237
+ id: string;
2238
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2239
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2240
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2241
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2242
+ id: string;
2243
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2244
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2245
+ id: string;
2246
+ watch: boolean;
2247
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2248
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2249
+ threadId: string;
2250
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2251
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2252
+ threadId: string;
2253
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2254
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2255
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2256
+ id: string;
2257
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2258
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2259
+ }>;
201
2260
  };
202
- queue: {
203
- read: QueueState<string>;
204
- send: QueueState<SendMessageRequest>;
2261
+ } & {
2262
+ endpoints: {
2263
+ 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">>;
2264
+ getChat: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2265
+ id: string;
2266
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">>;
2267
+ addChat: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2268
+ name: string;
2269
+ members: string[];
2270
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">>;
2271
+ updateChatName: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2272
+ id: string;
2273
+ name: string;
2274
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2275
+ 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">>;
2276
+ 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">>;
2277
+ 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">>;
2278
+ getChatMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2279
+ chatId: string;
2280
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">>;
2281
+ fetchNextChatMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2282
+ chatId: string;
2283
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2284
+ sendChatMessage: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2285
+ chatId: string;
2286
+ text: string;
2287
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2288
+ readChatMessage: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2289
+ id: string;
2290
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2291
+ 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">>;
2292
+ 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">>;
2293
+ getThread: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2294
+ id: string;
2295
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">>;
2296
+ watchThread: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2297
+ id: string;
2298
+ watch: boolean;
2299
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2300
+ getThreadMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.QueryHooks<_reduxjs_toolkit_query.QueryDefinition<{
2301
+ threadId: string;
2302
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">>;
2303
+ fetchNextThreadMessageList: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2304
+ threadId: string;
2305
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2306
+ 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">>;
2307
+ readThreadMessage: _reduxjs_toolkit_dist_query_react_buildHooks.MutationHooks<_reduxjs_toolkit_query.MutationDefinition<{
2308
+ id: string;
2309
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2310
+ 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">>;
205
2311
  };
206
- }
207
- declare const FETCH_QUERY_STATE: QueryState<any>;
208
- declare const INITIAL_STATE: State;
209
-
210
- declare const ACTIONS: {
211
- update: (state: State, { mutation }: {
212
- mutation: (state: State) => State;
213
- }) => void;
214
- messages_fetch: (state: State, { chatId, requestId }: {
215
- chatId: string;
216
- requestId: string;
217
- }) => void;
218
- messages_fulfilled: (state: State, { chatId, messages, hasMore }: {
219
- chatId: string;
220
- messages: Message[];
221
- hasMore: boolean;
222
- }) => void;
223
- messages_rejected: (state: State, { chatId, error }: {
224
- chatId: string;
225
- error: any;
226
- }) => void;
227
- fetchNext_fetch: (state: State, { chatId }: {
228
- chatId: string;
229
- }) => void;
230
- fetchNext_fulfilled: (state: State, { chatId, messages, hasMore }: {
231
- chatId: string;
232
- messages: Message[];
233
- hasMore: boolean;
234
- }) => void;
235
- fetchNext_rejected: (state: State, { chatId, error }: {
236
- chatId: string;
237
- error: any;
238
- }) => void;
239
- chatList_fetch: (state: State, { requestId }: {
240
- requestId: string;
241
- }) => void;
242
- chatList_fulfilled: (state: State, { chats }: {
243
- chats: ChatListItem[];
244
- }) => void;
245
- chatList_rejected: (state: State, { error }: {
246
- error: any;
247
- }) => void;
248
- removeMember_fetch: (state: State) => void;
249
- removeMember_fulfilled: (state: State) => void;
250
- removeMember_rejected: (state: State, { error }: {
251
- error: any;
252
- }) => void;
253
- addMember_fetch: (state: State) => void;
254
- addMember_fulfilled: (state: State) => void;
255
- addMember_rejected: (state: State, { error }: {
256
- error: any;
257
- }) => void;
258
- updateChatName_fetch: (state: State) => void;
259
- updateChatName_fulfilled: (state: State) => void;
260
- updateChatName_rejected: (state: State, { error }: {
261
- error: any;
262
- }) => void;
263
- addChat_fetch: (state: State) => void;
264
- addChat_fulfilled: (state: State) => void;
265
- addChat_rejected: (state: State, { error }: {
266
- error: any;
267
- }) => void;
268
- accounts_fetch: (state: State, { requestId }: {
269
- requestId: string;
270
- }) => void;
271
- accounts_fulfilled: (state: State, { accounts }: {
272
- accounts: Account[];
273
- }) => void;
274
- accounts_rejected: (state: State, { error }: {
275
- error: any;
276
- }) => void;
277
- chat_open: (state: State, { chatId }: {
278
- chatId: string;
279
- }) => void;
280
- new_chat_open: (state: State) => void;
281
- toggle_members_view: (state: State) => void;
282
- message_received: (state: State, { message, requestId, me }: {
283
- message: Message;
284
- requestId: string;
285
- me: string;
286
- }) => void;
287
- chat_created: (state: State, { chat }: {
288
- chat: ChatListItem;
289
- requestId?: string | undefined;
290
- }) => void;
291
- read: (state: State, { id, timestamp }: {
2312
+ usePrefetch<EndpointName_3 extends _reduxjs_toolkit_query.QueryKeys<{
2313
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2314
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2315
+ id: string;
2316
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2317
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2318
+ name: string;
2319
+ members: string[];
2320
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2321
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2322
+ id: string;
2323
+ name: string;
2324
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2325
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2326
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2327
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2328
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2329
+ chatId: string;
2330
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2331
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2332
+ chatId: string;
2333
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2334
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2335
+ chatId: string;
2336
+ text: string;
2337
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2338
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2339
+ id: string;
2340
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2341
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2342
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2343
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2344
+ id: string;
2345
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2346
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2347
+ id: string;
2348
+ watch: boolean;
2349
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2350
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2351
+ threadId: string;
2352
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2353
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2354
+ threadId: string;
2355
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2356
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2357
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2358
+ id: string;
2359
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2360
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2361
+ }>>(endpointName: EndpointName_3, options?: _reduxjs_toolkit_query.PrefetchOptions | undefined): (arg: _reduxjs_toolkit_query.QueryArgFrom<{
2362
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2363
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2364
+ id: string;
2365
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2366
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2367
+ name: string;
2368
+ members: string[];
2369
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2370
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2371
+ id: string;
2372
+ name: string;
2373
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2374
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2375
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2376
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2377
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2378
+ chatId: string;
2379
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2380
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2381
+ chatId: string;
2382
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2383
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2384
+ chatId: string;
2385
+ text: string;
2386
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2387
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2388
+ id: string;
2389
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2390
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2391
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2392
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2393
+ id: string;
2394
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2395
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2396
+ id: string;
2397
+ watch: boolean;
2398
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2399
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2400
+ threadId: string;
2401
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2402
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2403
+ threadId: string;
2404
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2405
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2406
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2407
+ id: string;
2408
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2409
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2410
+ }[EndpointName_3]>, options?: _reduxjs_toolkit_query.PrefetchOptions | undefined) => void;
2411
+ } & {
2412
+ 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">>;
2413
+ useGetChatQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
292
2414
  id: string;
293
- timestamp: number;
294
- }) => void;
295
- read_send: (state: State, { id }: {
2415
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">>;
2416
+ 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">>;
2417
+ useGetChatMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
2418
+ chatId: string;
2419
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">>;
2420
+ 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">>;
2421
+ 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">>;
2422
+ useGetThreadQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
296
2423
  id: string;
297
- }) => void;
298
- read_reject: (state: State, { id, timestamp }: {
2424
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">>;
2425
+ useGetThreadMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
2426
+ threadId: string;
2427
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">>;
2428
+ 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">>;
2429
+ } & {
2430
+ 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">>;
2431
+ useLazyGetChatQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
299
2432
  id: string;
300
- timestamp: number;
301
- }) => void;
302
- read_received: (state: State, { events }: {
303
- events: ReadEvent[];
304
- }) => void;
305
- member_added: (state: State, { chatId, chatName, account, me, message, withHistory, }: {
2433
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">>;
2434
+ 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">>;
2435
+ useLazyGetChatMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
306
2436
  chatId: string;
307
- chatName: string;
308
- account: Account;
309
- me: string;
310
- message: Message;
311
- withHistory: boolean;
312
- }) => State;
313
- member_removed: (state: State, { chatId, accountId, deleteHistory, me, message, }: {
314
- chatId: string;
315
- accountId: string;
316
- deleteHistory: boolean;
317
- me: string;
318
- message: Message;
319
- }) => void;
320
- chat_fetch: (state: State, { chatId, requestId }: {
321
- chatId: string;
322
- requestId: string;
323
- }) => void;
324
- chat_fulfilled: (state: State, { chat }: {
325
- chat: Chat;
326
- }) => void;
327
- chat_rejected: (state: State, { chatId, error }: {
2437
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">>;
2438
+ 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">>;
2439
+ 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">>;
2440
+ useLazyGetThreadQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
2441
+ id: string;
2442
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">>;
2443
+ useLazyGetThreadMessageListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<{
2444
+ threadId: string;
2445
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">>;
2446
+ 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">>;
2447
+ } & {
2448
+ useAddChatMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2449
+ name: string;
2450
+ members: string[];
2451
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">>;
2452
+ useUpdateChatNameMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2453
+ id: string;
2454
+ name: string;
2455
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2456
+ 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">>;
2457
+ 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">>;
2458
+ useFetchNextChatMessageListMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
328
2459
  chatId: string;
329
- error: any;
330
- }) => void;
331
- send_fetch: (state: State, { chatId, text, files, requestId, }: {
2460
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2461
+ useSendChatMessageMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
332
2462
  chatId: string;
333
2463
  text: string;
334
- files: File[];
335
- requestId: string;
336
- }) => void;
337
- send_fulfilled: (state: State, { chatId, requestId }: {
338
- chatId: string;
339
- requestId: string;
340
- }) => void;
341
- send_rejected: (state: State, { chatId, requestId, error }: {
342
- chatId: string;
343
- requestId: string;
344
- error: any;
345
- }) => void;
346
- chatNameChanged_received: (state: State, { chatId, newName, message }: {
347
- chatId: string;
348
- newName: string;
349
- message: Message;
350
- }) => void;
2464
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2465
+ useReadChatMessageMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2466
+ id: string;
2467
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2468
+ useWatchThreadMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2469
+ id: string;
2470
+ watch: boolean;
2471
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2472
+ useFetchNextThreadMessageListMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2473
+ threadId: string;
2474
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2475
+ 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">>;
2476
+ useReadThreadMessageMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
2477
+ id: string;
2478
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">>;
2479
+ } & {
2480
+ injectEndpoints<NewDefinitions extends _reduxjs_toolkit_query.EndpointDefinitions>(_: {
2481
+ endpoints: (build: _reduxjs_toolkit_query.EndpointBuilder<_reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", "chatify">) => NewDefinitions;
2482
+ overrideExisting?: boolean | "throw" | undefined;
2483
+ }): _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.BaseQueryFn, {
2484
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2485
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2486
+ id: string;
2487
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2488
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2489
+ name: string;
2490
+ members: string[];
2491
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2492
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2493
+ id: string;
2494
+ name: string;
2495
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2496
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2497
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2498
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2499
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2500
+ chatId: string;
2501
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2502
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2503
+ chatId: string;
2504
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2505
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2506
+ chatId: string;
2507
+ text: string;
2508
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2509
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2510
+ id: string;
2511
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2512
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2513
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2514
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2515
+ id: string;
2516
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2517
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2518
+ id: string;
2519
+ watch: boolean;
2520
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2521
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2522
+ threadId: string;
2523
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2524
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2525
+ threadId: string;
2526
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2527
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2528
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2529
+ id: string;
2530
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2531
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2532
+ } & NewDefinitions, "chatify", "chat" | "account" | "message" | "thread" | "thread-message", typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_dist_query_react.reactHooksModuleName>;
2533
+ enhanceEndpoints<NewTagTypes extends string = never, NewDefinitions_1 extends _reduxjs_toolkit_query.EndpointDefinitions = never>(_: {
2534
+ addTagTypes?: readonly NewTagTypes[] | undefined;
2535
+ endpoints?: {
2536
+ 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;
2537
+ getChat?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2538
+ id: string;
2539
+ }, _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<{
2540
+ id: string;
2541
+ }, _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;
2542
+ addChat?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2543
+ name: string;
2544
+ members: string[];
2545
+ }, _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<{
2546
+ name: string;
2547
+ members: string[];
2548
+ }, _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;
2549
+ updateChatName?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2550
+ id: string;
2551
+ name: string;
2552
+ }, _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<{
2553
+ id: string;
2554
+ name: string;
2555
+ }, _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;
2556
+ 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;
2557
+ 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;
2558
+ 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;
2559
+ getChatMessageList?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2560
+ chatId: string;
2561
+ }, _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<{
2562
+ chatId: string;
2563
+ }, _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;
2564
+ fetchNextChatMessageList?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2565
+ chatId: string;
2566
+ }, _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<{
2567
+ chatId: string;
2568
+ }, _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;
2569
+ sendChatMessage?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2570
+ chatId: string;
2571
+ text: string;
2572
+ }, _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<{
2573
+ chatId: string;
2574
+ text: string;
2575
+ }, _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;
2576
+ readChatMessage?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2577
+ id: string;
2578
+ }, _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<{
2579
+ id: string;
2580
+ }, _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;
2581
+ 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;
2582
+ 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;
2583
+ getThread?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2584
+ id: string;
2585
+ }, _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<{
2586
+ id: string;
2587
+ }, _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;
2588
+ watchThread?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2589
+ id: string;
2590
+ watch: boolean;
2591
+ }, _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<{
2592
+ id: string;
2593
+ watch: boolean;
2594
+ }, _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;
2595
+ getThreadMessageList?: Partial<_reduxjs_toolkit_query.QueryDefinition<{
2596
+ threadId: string;
2597
+ }, _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<{
2598
+ threadId: string;
2599
+ }, _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;
2600
+ fetchNextThreadMessageList?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2601
+ threadId: string;
2602
+ }, _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<{
2603
+ threadId: string;
2604
+ }, _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;
2605
+ 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;
2606
+ readThreadMessage?: Partial<_reduxjs_toolkit_query.MutationDefinition<{
2607
+ id: string;
2608
+ }, _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<{
2609
+ id: string;
2610
+ }, _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;
2611
+ 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;
2612
+ } | undefined;
2613
+ }): _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.BaseQueryFn, _reduxjs_toolkit_dist_query_endpointDefinitions.UpdateDefinitions<{
2614
+ getAccountList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Account[], "chatify">;
2615
+ getChat: _reduxjs_toolkit_query.QueryDefinition<{
2616
+ id: string;
2617
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Chat, "chatify">;
2618
+ addChat: _reduxjs_toolkit_query.MutationDefinition<{
2619
+ name: string;
2620
+ members: string[];
2621
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2622
+ updateChatName: _reduxjs_toolkit_query.MutationDefinition<{
2623
+ id: string;
2624
+ name: string;
2625
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2626
+ getChatList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatListItem[], "chatify">;
2627
+ removeChatMember: _reduxjs_toolkit_query.MutationDefinition<RemoveChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2628
+ addChatMember: _reduxjs_toolkit_query.MutationDefinition<AddChatMemberRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2629
+ getChatMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2630
+ chatId: string;
2631
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ChatMessageListResult, "chatify">;
2632
+ fetchNextChatMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2633
+ chatId: string;
2634
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2635
+ sendChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2636
+ chatId: string;
2637
+ text: string;
2638
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2639
+ readChatMessage: _reduxjs_toolkit_query.MutationDefinition<{
2640
+ id: string;
2641
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2642
+ getChatMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2643
+ getWatchThreadList: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadWatchListItem[], "chatify">;
2644
+ getThread: _reduxjs_toolkit_query.QueryDefinition<{
2645
+ id: string;
2646
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", Thread, "chatify">;
2647
+ watchThread: _reduxjs_toolkit_query.MutationDefinition<{
2648
+ id: string;
2649
+ watch: boolean;
2650
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2651
+ getThreadMessageList: _reduxjs_toolkit_query.QueryDefinition<{
2652
+ threadId: string;
2653
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", ThreadMessageList, "chatify">;
2654
+ fetchNextThreadMessageList: _reduxjs_toolkit_query.MutationDefinition<{
2655
+ threadId: string;
2656
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2657
+ sendThreadMessage: _reduxjs_toolkit_query.MutationDefinition<SendThreadMessageRequest, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", string, "chatify">;
2658
+ readThreadMessage: _reduxjs_toolkit_query.MutationDefinition<{
2659
+ id: string;
2660
+ }, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", void, "chatify">;
2661
+ getThreadMessageReadQueue: _reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn, "chat" | "account" | "message" | "thread" | "thread-message", DebounceValue<string>[], "chatify">;
2662
+ }, "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>;
2663
+ } & {
2664
+ settings: ChatifyApiSettings;
2665
+ useChatListItem: typeof useChatListItem;
2666
+ useUnreadThreadMessageCount: typeof useUnreadThreadMessageCount;
351
2667
  };
352
- type Action = {
353
- [K in keyof typeof ACTIONS]: {
354
- type: K;
355
- data: Parameters<(typeof ACTIONS)[K]>[1];
356
- };
357
- }[keyof typeof ACTIONS];
358
2668
 
359
- type Reducer = ReturnType<typeof useReducer>;
360
- type Subscriber = (state: State) => void;
361
- declare function useReducer(): readonly [react__default.MutableRefObject<State>, (action: Action) => void, (subscriber: Subscriber) => () => void];
362
- declare function ReducerProvider({ children }: PropsWithChildren<{}>): react_jsx_runtime.JSX.Element;
363
- declare function useDispatch(): (action: Action) => void;
364
- declare function useStateRef(): react__default.MutableRefObject<State>;
365
- declare function useSelect<TResult>(select: (state: State) => TResult, deps: any[]): TResult;
2669
+ interface ChatListItemBoxProps {
2670
+ chat: ChatListItem;
2671
+ }
2672
+ declare const ChatListItemBox: Customizable<react.ComponentType<ChatListItemBoxProps>>;
366
2673
 
367
- declare function useGetChatQuery(args: {
368
- chatId: string;
369
- }): QueryState<Chat>;
2674
+ declare const ChatListItemAvatar: Customizable<react.ComponentType<ChatListItemBoxProps>>;
370
2675
 
371
- declare function useGetChatListQuery(): QueryState<ChatListItem[]>;
2676
+ declare const ChatListItemLastMessage: Customizable<react.ComponentType<ChatListItemBoxProps>>;
372
2677
 
373
- declare function useFetchNextMutation({ chatId }: {
374
- chatId: string;
375
- }): readonly [() => void, MutationState];
2678
+ declare const ChatListItemLastMessageAuthor: Customizable<react.ComponentType<ChatListItemBoxProps>>;
376
2679
 
377
- declare function useGetMessagesQuery(args: {
378
- chatId: string;
379
- }): QueryState<MessageState[]>;
2680
+ declare const ChatListItemLastMessageContent: Customizable<react.ComponentType<ChatListItemBoxProps>>;
380
2681
 
381
- declare function useSignalRMonitor(me: string, client: ChatifyClient): void;
2682
+ declare const ChatListItemLastMessageSentAt: Customizable<react.ComponentType<ChatListItemBoxProps>>;
382
2683
 
383
- declare function useGetAccountsQuery(): QueryState<Account[]>;
2684
+ declare const ChatListItemName: Customizable<react.ComponentType<ChatListItemBoxProps>>;
384
2685
 
385
- declare function useAddChatMutation(): readonly [(args: AddChatRequest) => void, MutationState];
2686
+ declare const ChatListItemUnreadCount: Customizable<react.ComponentType<ChatListItemBoxProps>>;
386
2687
 
387
- declare function useReadMonitor(): void;
2688
+ interface ChatListCustomizeValue {
2689
+ ChatList?: typeof ChatList.Component | null;
2690
+ ChatListItemAvatar?: typeof ChatListItemAvatar.Component | null;
2691
+ ChatListItemBox?: typeof ChatListItemBox.Component | null;
2692
+ ChatListItemLastMessage?: typeof ChatListItemLastMessage.Component | null;
2693
+ ChatListItemLastMessageAuthor?: typeof ChatListItemLastMessageAuthor.Component | null;
2694
+ ChatListItemLastMessageContent?: typeof ChatListItemLastMessageContent.Component | null;
2695
+ ChatListItemLastMessageSentAt?: typeof ChatListItemLastMessageSentAt.Component | null;
2696
+ ChatListItemName?: typeof ChatListItemName.Component | null;
2697
+ ChatListItemUnreadCount?: typeof ChatListItemUnreadCount.Component | null;
2698
+ }
388
2699
 
389
- declare function useAddMemberMutation(): readonly [(args: AddMemberRequest) => void, MutationState];
2700
+ declare function useChatGroupContext(): ChatGroupContext;
2701
+ interface ChatGroupContext {
2702
+ view: 'chat' | 'new-chat' | null;
2703
+ chatId: string | null;
2704
+ showMembers: boolean;
2705
+ none(): void;
2706
+ openChat(chatId: string): void;
2707
+ toggleNewChat(): void;
2708
+ toggleMembers(): void;
2709
+ }
2710
+ declare function ChatGroupContext(props: PropsWithChildren<{}>): react_jsx_runtime.JSX.Element;
390
2711
 
391
- declare function useRemoveMemberMutation(): readonly [(args: RemoveMemberRequest) => void, MutationState];
2712
+ interface Localizer {
2713
+ isToday: (value: string) => boolean;
2714
+ timestamp: (value: string) => string;
2715
+ dateTime: (value: string) => string;
2716
+ system: Record<SystemMessageText, (key: SystemMessageText, payload: any | null) => string>;
2717
+ message: {
2718
+ read: () => react__default.ReactNode;
2719
+ reading: () => react__default.ReactNode;
2720
+ sending: () => react__default.ReactNode;
2721
+ };
2722
+ addChat: {
2723
+ title: () => react__default.ReactNode;
2724
+ name: {
2725
+ label: () => react__default.ReactNode;
2726
+ required: () => string;
2727
+ max250: () => string;
2728
+ };
2729
+ members: {
2730
+ label: () => react__default.ReactNode;
2731
+ required: () => string;
2732
+ };
2733
+ submitBtn: () => react__default.ReactNode;
2734
+ };
2735
+ input: {
2736
+ placeholder: () => string;
2737
+ };
2738
+ settings: {
2739
+ members: () => string;
2740
+ };
2741
+ }
2742
+ declare const LocalizerContext: react__default.Context<Localizer>;
2743
+ declare function useLocalizer(): Localizer;
2744
+ declare const defaultLocalizer: Localizer;
392
2745
 
393
- declare function useSendMutation(): readonly [(args: SendMessageRequest) => void, MutationState];
2746
+ declare const ChatMembersButton: Customizable<react.ComponentType<unknown>>;
394
2747
 
395
- declare function useUpdateChatNameMutation(): readonly [(args: UpdateChatNameRequest) => void, MutationState];
2748
+ declare const ChatMembersPanel: Customizable<react.ComponentType<unknown>>;
396
2749
 
397
- interface AvatarProps {
398
- account: Account;
399
- }
400
- declare const Avatar: Customizable<react.ComponentType<AvatarProps>>;
2750
+ declare const ChatMembersPreview: Customizable<react.ComponentType<unknown>>;
401
2751
 
402
- interface ChatHeaderMembersProps {
403
- id: string;
2752
+ interface ChatMembersCustomizeValue {
2753
+ ChatMembersButton?: typeof ChatMembersButton.Component | null;
2754
+ ChatMembersPanel?: typeof ChatMembersPanel.Component | null;
2755
+ ChatMembersPreview?: typeof ChatMembersPreview.Component | null;
404
2756
  }
405
- declare const ChatHeaderMembers: Customizable<react.ComponentType<ChatHeaderMembersProps>>;
406
2757
 
407
- interface ChatMembersButtonProps {
408
- id: string;
409
- }
410
- declare const ChatMembersButton: Customizable<react.ComponentType<ChatMembersButtonProps>>;
2758
+ declare const InputBox: Customizable<react.ComponentType<unknown>>;
411
2759
 
412
- declare const AddChatButton: Customizable<react.ComponentType<unknown>>;
2760
+ declare const InputFilesBox: Customizable<react.ComponentType<unknown>>;
413
2761
 
414
- interface ChatNameProps {
415
- name: string;
2762
+ interface InputSubmitButtonBoxProps {
2763
+ onSubmit: () => void;
416
2764
  }
417
- declare const ChatName: Customizable<react.ComponentType<ChatNameProps>>;
2765
+ declare const InputSubmitButtonBox: Customizable<react.ComponentType<InputSubmitButtonBoxProps>>;
418
2766
 
419
- declare const Aside: Customizable<react.ComponentType<unknown>>;
2767
+ interface TextInputBoxProps {
2768
+ value: string;
2769
+ onChange: (value: string) => void;
2770
+ onSend: (value: string) => void;
2771
+ inputRef?: RefObject<HTMLTextAreaElement>;
2772
+ }
2773
+ declare const InputTextBox: Customizable<react.ComponentType<TextInputBoxProps>>;
420
2774
 
421
- declare const Header: Customizable<react.ComponentType<unknown>>;
2775
+ interface InputBoxCustomizeValue {
2776
+ InputBox?: typeof InputBox.Component | null;
2777
+ InputTextBox?: typeof InputTextBox.Component | null;
2778
+ InputFilesBox?: typeof InputFilesBox.Component | null;
2779
+ InputSubmitButtonBox?: typeof InputSubmitButtonBox.Component | null;
2780
+ }
422
2781
 
423
- declare const Footer: Customizable<react.ComponentType<unknown>>;
2782
+ interface MessageBoxProps {
2783
+ message: MessageBase;
2784
+ }
2785
+ declare const MessageBox: Customizable<react.ComponentType<MessageBoxProps>>;
424
2786
 
425
- declare const Main: Customizable<react.ComponentType<unknown>>;
2787
+ declare const MessageAuthor: Customizable<react.ComponentType<MessageBoxProps>>;
426
2788
 
427
- declare const Body: Customizable<react.ComponentType<unknown>>;
2789
+ declare const MessageContent: Customizable<react.ComponentType<MessageBoxProps>>;
428
2790
 
429
- declare const ChatList: Customizable<react.ComponentType<unknown>>;
2791
+ declare const MessageInfoBox: Customizable<react.ComponentType<MessageBoxProps>>;
430
2792
 
431
- interface ChatListItemBoxProps {
432
- chat: ChatListItem;
2793
+ interface MessageRowProps extends MessageBoxProps {
2794
+ containerRef?: Ref<HTMLDivElement>;
433
2795
  }
434
- declare const ChatListItemBox: Customizable<react.ComponentType<ChatListItemBoxProps>>;
435
-
436
- declare const ChatListItemLastMessage: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2796
+ declare const MessageRow: Customizable<react.ComponentType<MessageRowProps>>;
437
2797
 
438
- declare const ChatListItemLastMessageAuthor: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2798
+ declare const MessageText: Customizable<react.ComponentType<MessageBoxProps>>;
439
2799
 
440
- declare const ChatListItemLastMessageContent: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2800
+ interface MessageCustomizeValue {
2801
+ MessageAuthor?: typeof MessageAuthor.Component | null;
2802
+ MessageBox?: typeof MessageBox.Component | null;
2803
+ MessageContent?: typeof MessageContent.Component | null;
2804
+ MessageInfoBox?: typeof MessageInfoBox.Component | null;
2805
+ MessageRow?: typeof MessageRow.Component | null;
2806
+ MessageText?: typeof MessageText.Component | null;
2807
+ }
441
2808
 
442
- declare const ChatListItemName: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2809
+ interface NextMessagesObserverProps {
2810
+ onLoad: () => void;
2811
+ loading: boolean;
2812
+ }
2813
+ declare function NextMessagesObserver(props: NextMessagesObserverProps): react_jsx_runtime.JSX.Element;
443
2814
 
444
- declare const ChatListItemUnreadCount: Customizable<react.ComponentType<ChatListItemBoxProps>>;
2815
+ interface MessageReadObserverProps extends MessageBoxProps {
2816
+ messageRef: RefObject<HTMLDivElement | null>;
2817
+ }
2818
+ declare function MessageReadObserver(props: MessageReadObserverProps): react_jsx_runtime.JSX.Element | null;
445
2819
 
446
2820
  interface SendingMessageBoxProps {
447
2821
  text: string;
@@ -455,176 +2829,177 @@ declare const SendingMessageInfoBox: Customizable<react.ComponentType<SendingMes
455
2829
 
456
2830
  declare const SendingMessageText: Customizable<react.ComponentType<SendingMessageBoxProps>>;
457
2831
 
458
- interface MessageBoxProps {
459
- message: Message;
2832
+ interface SendingMessageCustomizeValue {
2833
+ SendingMessageBox?: typeof SendingMessageBox.Component | null;
2834
+ SendingMessageContent?: typeof SendingMessageContent.Component | null;
2835
+ SendingMessageInfoBox?: typeof SendingMessageInfoBox.Component | null;
2836
+ SendingMessageText?: typeof SendingMessageText.Component | null;
460
2837
  }
461
- declare const MessageBox: Customizable<react.ComponentType<MessageBoxProps>>;
462
-
463
- declare const MessageAuthor: Customizable<react.ComponentType<MessageBoxProps>>;
464
2838
 
465
- declare const MessageContent: Customizable<react.ComponentType<MessageBoxProps>>;
466
-
467
- declare const MessageInfoBox: Customizable<react.ComponentType<MessageBoxProps>>;
2839
+ interface SystemMessageBoxProps {
2840
+ message: MessageBase;
2841
+ }
2842
+ declare const SystemMessageBox: Customizable<react.ComponentType<SystemMessageBoxProps>>;
468
2843
 
469
- interface MessageRowProps extends MessageBoxProps {
2844
+ interface SystemMessageRowProps {
2845
+ message: MessageBase;
470
2846
  containerRef?: Ref<HTMLDivElement>;
471
2847
  }
472
- declare const MessageRow: Customizable<react.ComponentType<MessageRowProps>>;
2848
+ declare function formatSystemMessage(localizer: Localizer, text: string): React.ReactNode;
2849
+ declare const SystemMessageRow: Customizable<react.ComponentType<SystemMessageRowProps>>;
473
2850
 
474
- declare const MessageText: Customizable<react.ComponentType<MessageBoxProps>>;
2851
+ interface SystemMessageCustomizeValue {
2852
+ SystemMessageBox?: typeof SystemMessageBox.Component | null;
2853
+ SystemMessageRow?: typeof SystemMessageRow.Component | null;
2854
+ }
475
2855
 
476
- interface MessageReadObserverProps extends MessageBoxProps {
477
- messageRef: RefObject<HTMLDivElement | null>;
2856
+ declare const ConversationActions: Customizable<react.ComponentType<unknown>>;
2857
+
2858
+ declare const ConversationBody: Customizable<react.ComponentType<unknown>>;
2859
+
2860
+ declare const ConversationHeader: Customizable<react.ComponentType<unknown>>;
2861
+
2862
+ declare const ConversationName: Customizable<react.ComponentType<unknown>>;
2863
+
2864
+ interface ConversationValue {
2865
+ id: string;
2866
+ name: string;
2867
+ active: boolean;
2868
+ lastReadMessageId: string | null;
2869
+ }
2870
+ interface ConversationContextValue extends ConversationValue {
2871
+ messages?: MessageBase[];
2872
+ hasMore?: boolean;
2873
+ nextLoading: boolean;
2874
+ noReadTracking?: boolean;
2875
+ isReading: (id: string) => boolean;
2876
+ onNext: () => void;
2877
+ onSend: (message: MessageBody) => void;
2878
+ onRead: (id: string) => void;
478
2879
  }
479
- declare const MessageReadObserver: Customizable<react.ComponentType<MessageReadObserverProps>>;
2880
+ declare const ConversationContext: react__default.Context<ConversationContextValue>;
2881
+ declare function useConversation(): ConversationContextValue;
2882
+
2883
+ interface AvatarProps {
2884
+ account: Account;
2885
+ }
2886
+ declare const Avatar: Customizable<react.ComponentType<AvatarProps>>;
480
2887
 
481
2888
  type IconType = keyof typeof ICONS;
482
2889
  interface IconProps {
483
2890
  type: IconType;
484
2891
  }
485
2892
  declare const ICONS: {
486
- 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>>;
487
- 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>>;
488
- remove: 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>>;
489
- remove_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>>;
490
- add: 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>>;
491
- add_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>>;
492
- team: 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
- 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>>;
2893
+ 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>>;
2894
+ 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>>;
2895
+ '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>>;
2896
+ '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>>;
2897
+ '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>>;
2898
+ '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>>;
2899
+ 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>>;
2900
+ 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>>;
2901
+ 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>>;
2902
+ 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>>;
2903
+ 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>>;
2904
+ 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>>;
494
2905
  };
495
2906
  declare const Icon: Customizable<react.ComponentType<IconProps>>;
496
2907
 
497
- interface SystemMessageRowProps {
498
- message: Message;
499
- containerRef?: Ref<HTMLDivElement>;
500
- }
501
- declare const SystemMessageRow: Customizable<react.ComponentType<SystemMessageRowProps>>;
502
-
503
- interface ChatBodyProps {
504
- id: string;
2908
+ interface MessageSkeletonProps {
2909
+ count?: number;
505
2910
  }
506
- declare const ChatBody: Customizable<react.ComponentType<ChatBodyProps>>;
2911
+ declare const MessageSkeleton: Customizable<react.ComponentType<MessageSkeletonProps>>;
507
2912
 
508
- interface ChatHeaderProps {
509
- id: string;
2913
+ interface CommonCustomizeValue {
2914
+ Avatar?: typeof Avatar.Component | null;
2915
+ Icon?: typeof Icon.Component | null;
2916
+ MessageSkeleton?: typeof MessageSkeleton.Component | null;
510
2917
  }
511
- declare const ChatHeader: Customizable<react.ComponentType<ChatHeaderProps>>;
512
2918
 
513
- interface ChatHeaderNameProps {
514
- id: string;
2919
+ interface ConversationProps extends Omit<ConversationContextValue, keyof ConversationValue> {
2920
+ value: ConversationValue;
515
2921
  }
516
- declare const ChatHeaderName: Customizable<react.ComponentType<ChatHeaderNameProps>>;
517
-
518
- interface ChatPanelProps {
519
- id: string;
2922
+ interface ConversationCustomizeValue extends InputBoxCustomizeValue, MessageCustomizeValue, SendingMessageCustomizeValue, SystemMessageCustomizeValue, CommonCustomizeValue {
2923
+ ConversationActions?: typeof ConversationActions.Component | null;
2924
+ ConversationBody?: typeof ConversationBody.Component | null;
2925
+ ConversationHeader?: typeof ConversationHeader.Component | null;
2926
+ ConversationName?: typeof ConversationName.Component | null;
520
2927
  }
521
- declare const ChatPanel: Customizable<react.ComponentType<ChatPanelProps>>;
2928
+ declare const Conversation: Customizable<react.ComponentType<ConversationProps>>;
522
2929
 
523
- declare const InputBox: Customizable<react.ComponentType<unknown>>;
2930
+ declare const ChatEditableHeaderName: Customizable<react.ComponentType<unknown>>;
524
2931
 
525
- declare const InputFilesBox: Customizable<react.ComponentType<unknown>>;
2932
+ declare const ChatHeaderActions: Customizable<react.ComponentType<unknown>>;
526
2933
 
527
- interface InputSubmitButtonBoxProps {
528
- onSubmit: () => void;
2934
+ interface ChatProps {
2935
+ value: ChatValue;
529
2936
  }
530
- declare const InputSubmitButtonBox: Customizable<react.ComponentType<InputSubmitButtonBoxProps>>;
531
-
532
- interface TextInputBoxProps {
533
- value: string;
534
- onChange: (value: string) => void;
535
- onSend: (value: string) => void;
2937
+ interface ChatValue extends ConversationValue {
536
2938
  }
537
- declare const InputTextBox: Customizable<react.ComponentType<TextInputBoxProps>>;
2939
+ interface ChatViewCustomizeValue extends ConversationCustomizeValue, ChatMembersCustomizeValue {
2940
+ ChatEditableHeaderName?: typeof ChatEditableHeaderName.Component | null;
2941
+ ChatHeaderActions?: typeof ChatHeaderActions.Component | null;
2942
+ ChatView?: typeof ChatView.Component | null;
2943
+ }
2944
+ declare const DEFAULT_CHAT_VIEW_CUSTOMIZE_VALUE: ConversationCustomizeValue;
2945
+ declare const ChatView: Customizable<react.ComponentType<ChatProps>>;
538
2946
 
539
- interface SystemMessageBoxProps {
540
- message: Message;
2947
+ declare function useChatContext(): ChatContext;
2948
+ interface ChatContext {
2949
+ id: string;
2950
+ showMembers: boolean;
2951
+ onShowMembers: (value: boolean) => void;
541
2952
  }
542
- declare const SystemMessageBox: Customizable<react.ComponentType<SystemMessageBoxProps>>;
2953
+ declare function ChatContext(props: PropsWithChildren<{
2954
+ id: string;
2955
+ }>): react_jsx_runtime.JSX.Element;
543
2956
 
544
- interface CreateChatFormValue {
545
- name: string;
546
- members: string[];
2957
+ interface ChatPanelCustomizeValue extends ChatViewCustomizeValue {
547
2958
  }
548
- interface CreateChatFormProps {
549
- value?: CreateChatFormValue;
550
- onSubmit: (value: CreateChatFormValue) => void;
551
- busy?: boolean;
2959
+ interface ChatPanelProps {
2960
+ id: string;
2961
+ className?: string;
2962
+ style?: CSSProperties;
2963
+ localizer?: Localizer;
2964
+ customize?: ChatPanelCustomizeValue;
552
2965
  }
553
- declare const CreateChatForm: Customizable<react.ComponentType<CreateChatFormProps>>;
2966
+ declare function ChatPanel(props: ChatPanelProps): react_jsx_runtime.JSX.Element;
554
2967
 
555
- interface CreateChatMemberInputProps {
556
- name: string;
2968
+ interface ChatGroupCustomizeValue extends ChatViewCustomizeValue, CreateChatPanelCustomizeValue, ChatListCustomizeValue, ChatGroupLayoutCustomizeValue {
557
2969
  }
558
- declare const CreateChatMemberInput: Customizable<react.ComponentType<CreateChatMemberInputProps>>;
559
-
560
- interface CreateChatNameInputProps {
561
- name: string;
2970
+ interface ChatifyProps {
2971
+ className?: string;
2972
+ style?: CSSProperties;
2973
+ localizer?: Localizer;
2974
+ customize?: ChatGroupCustomizeValue;
562
2975
  }
563
- declare const CreateChatNameInput: Customizable<react.ComponentType<CreateChatNameInputProps>>;
2976
+ declare const ChatGroupPanel: FC<ChatifyProps>;
564
2977
 
565
- declare const CreateChatPanel: Customizable<react.ComponentType<unknown>>;
2978
+ declare const ThreadActions: Customizable<react.ComponentType<unknown>>;
566
2979
 
567
- interface ChatifyCustomizeValue {
568
- ChatList?: typeof ChatList.Component | null;
569
- ChatListItemBox?: typeof ChatListItemBox.Component | null;
570
- ChatListItemName?: typeof ChatListItemName.Component | null;
571
- ChatListItemUnreadCount?: typeof ChatListItemUnreadCount.Component | null;
572
- ChatListItemLastMessage?: typeof ChatListItemLastMessage.Component | null;
573
- ChatListItemLastMessageAuthor?: typeof ChatListItemLastMessageAuthor.Component | null;
574
- ChatListItemLastMessageContent?: typeof ChatListItemLastMessageContent.Component | null;
575
- Header?: typeof Header.Component | null;
576
- Footer?: typeof Footer.Component | null;
577
- Body?: typeof Body.Component | null;
578
- Main?: typeof Main.Component | null;
579
- Aside?: typeof Aside.Component | null;
580
- MessageAuthor?: typeof MessageAuthor.Component | null;
581
- MessageBox?: typeof MessageBox.Component | null;
582
- MessageContent?: typeof MessageContent.Component | null;
583
- MessageInfoBox?: typeof MessageInfoBox.Component | null;
584
- MessageRow?: typeof MessageRow.Component | null;
585
- MessageText?: typeof MessageText.Component | null;
586
- SendingMessageBox?: typeof SendingMessageBox.Component | null;
587
- SendingMessageContent?: typeof SendingMessageContent.Component | null;
588
- SendingMessageInfoBox?: typeof SendingMessageInfoBox.Component | null;
589
- SendingMessageText?: typeof SendingMessageText.Component | null;
590
- ChatBody?: typeof ChatBody.Component | null;
591
- ChatHeader?: typeof ChatHeader.Component | null;
592
- ChatHeaderMembers?: typeof ChatHeaderMembers.Component | null;
593
- ChatHeaderName?: typeof ChatHeaderName.Component | null;
594
- ChatPanel?: typeof ChatPanel.Component | null;
595
- ChatMembersButton?: typeof ChatMembersButton.Component | null;
596
- InputBox?: typeof InputBox.Component | null;
597
- InputFilesBox?: typeof InputFilesBox.Component | null;
598
- InputSubmitButtonBox?: typeof InputSubmitButtonBox.Component | null;
599
- InputTextBox?: typeof InputTextBox.Component | null;
600
- SystemMessageBox?: typeof SystemMessageBox.Component | null;
601
- SystemMessageRow?: typeof SystemMessageRow.Component | null;
602
- CreateChatForm?: typeof CreateChatForm.Component | null;
603
- CreateChatMemberInput?: typeof CreateChatMemberInput.Component | null;
604
- CreateChatNameInput?: typeof CreateChatNameInput.Component | null;
605
- CreateChatPanel?: typeof CreateChatPanel.Component | null;
606
- MessageReadObserver?: typeof MessageReadObserver.Component | null;
607
- Avatar?: typeof Avatar.Component | null;
608
- AddChatButton?: typeof AddChatButton.Component | null;
609
- ChatName?: typeof ChatName.Component | null;
610
- Icon?: typeof Icon.Component | null;
2980
+ interface ThreadCustomizeValue extends ConversationCustomizeValue, CommonCustomizeValue {
2981
+ ThreadActions?: typeof ThreadActions.Component | null;
611
2982
  }
612
- interface ChatifyProps {
2983
+ interface ThreadPanelProps {
2984
+ threadId: string;
613
2985
  className?: string;
614
- style?: CSSProperties;
2986
+ customize?: ThreadCustomizeValue;
615
2987
  localizer?: Localizer;
616
- customize?: ChatifyCustomizeValue;
617
2988
  }
618
- declare const Chatify: FC<ChatifyProps>;
2989
+ declare function ThreadPanel(props: ThreadPanelProps): react_jsx_runtime.JSX.Element | null;
619
2990
 
620
- declare function useClient(): ChatifyClient;
621
- declare function useMe(): string;
622
- interface ChatifyContextValue {
623
- me: string;
624
- client: ChatifyClient;
2991
+ interface ThreadContextValue {
2992
+ id: string;
2993
+ watch: boolean;
2994
+ onWatch: (value: boolean) => void;
625
2995
  }
626
- declare function ChatifyContext({ value, children }: PropsWithChildren<{
627
- value: ChatifyContextValue;
628
- }>): react_jsx_runtime.JSX.Element;
2996
+ declare const ThreadContext: react__default.Context<ThreadContextValue>;
2997
+ declare function useThreadContext(): ThreadContextValue;
2998
+
2999
+ declare const Chatify: {
3000
+ Thread: typeof ThreadPanel;
3001
+ ChatGroup: react.FC<ChatifyProps>;
3002
+ Chat: typeof ChatPanel;
3003
+ };
629
3004
 
630
- 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 };
3005
+ 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 };