fix: keep Telegram AI extract result on metadata errors (#1045)

This commit is contained in:
Dream Hunter
2026-05-29 01:48:02 +08:00
committed by GitHub
parent 308fbe2f9a
commit cfb31807f1
7 changed files with 134 additions and 70 deletions
+6
View File
@@ -208,3 +208,9 @@ export type RawMailRow = {
metadata?: string;
created_at?: string;
}
export type ExtractResult = {
type: 'auth_code' | 'auth_link' | 'service_link' | 'subscription_link' | 'other_link' | 'none';
result: string;
result_text: string;
}