feat: refine client status and review views
This commit is contained in:
@@ -29,6 +29,7 @@ export type RiskReviewTask = {
|
||||
reviewedBy?: { id: string; username: string; displayName: string } | null;
|
||||
riskHits?: Array<{ id: string; ruleName: string; reason: string }>;
|
||||
_count?: { messageRecords: number };
|
||||
batchTask?: { id: string; taskNo: string } | null;
|
||||
};
|
||||
|
||||
export type RiskRuleItem = {
|
||||
|
||||
@@ -247,7 +247,7 @@ export type ClientSmsSignature = {
|
||||
};
|
||||
|
||||
export type ClientSmsSignatureView = Pick<ClientSmsSignature,
|
||||
'id' | 'tenantId' | 'applicationId' | 'name' | 'purpose' | 'auditStatus' | 'reportStatus' | 'rejectReason' | 'createdAt' | 'updatedAt' | 'materials'
|
||||
'id' | 'tenantId' | 'applicationId' | 'name' | 'purpose' | 'auditStatus' | 'reportStatus' | 'rejectReason' | 'createdAt' | 'updatedAt' | 'materials' | 'carrierReportSummary' | 'drainageCarrierReportSummary'
|
||||
> & {
|
||||
pendingReport?: boolean;
|
||||
reportChangedAt?: string;
|
||||
@@ -333,6 +333,7 @@ export type SmsBatchTask = {
|
||||
auditStatus?: string | null;
|
||||
reviewReason?: string | null;
|
||||
rejectReason?: string | null;
|
||||
riskTaskId?: string | null;
|
||||
progressTotal: number;
|
||||
progressSent?: number;
|
||||
progressDelivered?: number;
|
||||
|
||||
Reference in New Issue
Block a user