fix: align signature review and admin operations
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user