diff --git a/src/app/api/export-csv/route.ts b/src/app/api/export-csv/route.ts index 34de3b4..0dbaf92 100644 --- a/src/app/api/export-csv/route.ts +++ b/src/app/api/export-csv/route.ts @@ -43,7 +43,17 @@ tablesToExport = ['users', 'serif', 'tests']; } - const results: { tableName: string; status: string; rowCount?: number; filePath?: string; error?: string }[] = []; + const results: { + tableName: string; + status: string; + insertedCount?: number; + error?: string; + details?: any; + hint?: any; + code?: any; + rowCount?: Number; + filePath?: string; + }[] = []; try { // export フォルダが存在しない場合は作成