MCPcopy Create free account
hub / github.com/PaperDebugger/paperdebugger / deleteConversation

Function deleteConversation

webapp/_webapp/src/query/api.ts:142–145  ·  view source on GitHub ↗
(data: PlainMessage<DeleteConversationRequest>)

Source from the content-addressed store, hash-verified

140};
141
142export const deleteConversation = async (data: PlainMessage<DeleteConversationRequest>) => {
143 const response = await apiclientV2.delete(`/chats/conversations/${data.conversationId}`);
144 return fromJson(DeleteConversationResponseSchema, response);
145};
146
147export const updateConversation = async (data: PlainMessage<UpdateConversationRequest>) => {
148 const response = await apiclientV2.patch(`/chats/conversations/${data.conversationId}`, data);

Callers

nothing calls this directly

Calls 2

fromJsonFunction · 0.90
deleteMethod · 0.80

Tested by

no test coverage detected