fix: remove truncated management totals

This commit is contained in:
hectorzhao
2026-07-12 10:56:00 +08:00
parent 24cb632a45
commit 390b970032
19 changed files with 107 additions and 80 deletions
+8
View File
@@ -330,6 +330,14 @@ export type SmsBatchTask = {
application?: { id: string; name: string };
template?: { id: string; name: string; content: string; billingUnits?: number };
messages?: SmsMessageRecord[];
messageStats?: Array<{
batchTaskId?: string | null;
carrier?: string | null;
province?: string | null;
status: string;
_count: { _all: number };
_sum: { billingUnits?: number | null };
}>;
};
export type ImportPreviewResponse = {