fix: align signature review and admin operations

This commit is contained in:
hectorzhao
2026-07-27 22:07:51 +08:00
parent 9891ffee23
commit df70b336a0
22 changed files with 326 additions and 57 deletions
+5
View File
@@ -346,6 +346,7 @@ export type DashboardResponse = {
alertCount: number;
};
accounts: Array<{ id: string; tenantId: string; balanceCents: number; creditCents: number; status: string; tenant?: TenantOption }>;
enterpriseSpendRanks: Array<{ tenantId: string; tenantName: string; todaySpendCents: number; balanceCents: number; creditCents: number }>;
recentTasks: Array<Record<string, unknown>>;
recentRecharges: Array<RechargeOrder>;
};
@@ -374,6 +375,8 @@ export type SignatureQualityStat = {
tenantName: string;
hasDrainage: boolean;
total: number;
acceptedCount: number;
submitFailureCount: number;
successCount: number;
unknownCount: number;
failureCount: number;
@@ -639,6 +642,7 @@ export type SmsMessageRecord = {
export type SmsSubmitRecord = {
id: string;
channelId: string;
channelGroupName?: string | null;
submitId: string;
sequenceId?: number | null;
gatewayMessageId?: string | null;
@@ -648,6 +652,7 @@ export type SmsSubmitRecord = {
submittedAt?: string | null;
createdAt: string;
channel?: AdminChannel | null;
channelGroup?: { id: string; name: string } | null;
};
export type SmsReceiptRecord = {