Add conversation package manifest download

This commit is contained in:
john
2026-07-02 21:58:14 +08:00
parent b4ae4a870c
commit 49127d8675
5 changed files with 127 additions and 1 deletions
+4
View File
@@ -649,6 +649,10 @@ export async function getMindSpaceConversationPackage(
return result.data;
}
export function buildMindSpaceConversationPackageManifestDownloadUrl(sessionId: string): string {
return `${API}/mindspace/v1/conversation-packages/${encodeURIComponent(sessionId)}/manifest.json`;
}
export async function ignoreMindSpaceScheduleReminder(reminderId: string) {
const result = await apiFetch<{ data: MindSpaceScheduleReminder }>(
`/mindspace/v1/schedule/reminders/${encodeURIComponent(reminderId)}/ignore`,