merge: integrate upstream main with local Makelore changes

This commit is contained in:
inman
2026-08-31 10:55:48 +08:00
128 changed files with 8278 additions and 3030 deletions

View File

@@ -86,16 +86,6 @@ export async function removeCodingProject(projectId: string): Promise<void> {
});
}
export async function acknowledgeLegacyCodingConversationNotice(
projectId: string,
): Promise<CodingProjectConfigSnapshot> {
const response = await hostApiFetch<{ snapshot: CodingProjectConfigSnapshot }>(
'/api/coding/projects/legacy-conversation-notice/acknowledge',
{ method: 'POST', body: JSON.stringify({ projectId }) },
);
return response.snapshot;
}
export async function getCodingProjectConfig(
projectId: string,
): Promise<CodingProjectConfigSnapshot> {