feat: add desktop bug report collection

This commit is contained in:
2026-05-31 21:55:29 +08:00
parent 0a9dcec70f
commit e490a267ff
27 changed files with 2938 additions and 3 deletions
+11
View File
@@ -417,6 +417,17 @@ export interface DesktopRuntimeSessionSyncRequest {
desktop_client: DesktopClientInfo | null
}
export interface DesktopBugReportSubmitRequest {
title?: string
description?: string
severity?: 'low' | 'medium' | 'high' | 'critical'
}
export interface DesktopBugReportSubmitResponse {
id: string
dump_object_key?: string | null
}
export interface CreatePublishJobAccountRequest {
account_id: string
}