This commit is contained in:
2026-08-14 15:26:21 +08:00
14 changed files with 835 additions and 234 deletions
+15 -15
View File
@@ -1645,14 +1645,14 @@ export interface InvoiceDetail {
export interface BankAccount {
id: string;
account_name: string;
bank_name: string;
account_no: string;
is_active: boolean;
is_default: boolean;
accountName: string;
bankName: string;
accountNo: string;
isActive: boolean;
isDefault: boolean;
description?: string | null;
created_at?: string | null;
updated_at?: string | null;
createdAt?: string | null;
updatedAt?: string | null;
}
// ── Scheduled Task ─────────────────────────────────────
@@ -1660,14 +1660,14 @@ export interface BankAccount {
export interface ScheduledTask {
id: string;
name: string;
task_type: 'external_api' | 'internal_method';
taskType: 'external_api' | 'internal_method';
schedule: string;
config?: string | null;
is_active: boolean;
last_run_at?: string | null;
last_status?: string | null;
last_error?: string | null;
created_by?: string | null;
created_at?: string | null;
updated_at?: string | null;
isActive: boolean;
lastRunAt?: string | null;
lastStatus?: string | null;
lastError?: string | null;
createdBy?: string | null;
createdAt?: string | null;
updatedAt?: string | null;
}