()
| 104 | }; |
| 105 | |
| 106 | export const resetSettings = async () => { |
| 107 | const response = await apiclient.post("/users/@self/settings/reset"); |
| 108 | return fromJson(ResetSettingsResponseSchema, response); |
| 109 | }; |
| 110 | |
| 111 | export const listConversations = async (data: PlainMessage<ListConversationsRequest>) => { |
| 112 | const response = await apiclientV2.get("/chats/conversations", data); |
no test coverage detected