Fix Jumpstart Dashboard, API, and Fetchers to support real-time generation

This commit is contained in:
cawcenter
2025-12-13 08:52:02 -05:00
parent ad1e1705b7
commit 5380476d07
17 changed files with 911 additions and 134 deletions

View File

@@ -56,6 +56,7 @@ async function main() {
{ collection: 'article_templates', schema: { name: 'article_templates' }, meta: { note: 'Article structure definitions' } },
{ collection: 'generation_jobs', schema: { name: 'generation_jobs' }, meta: { note: 'Queued generation tasks' } },
{ collection: 'generated_articles', schema: { name: 'generated_articles' }, meta: { note: 'Final HTML output' } },
{ collection: 'work_log', schema: { name: 'work_log' }, meta: { note: 'System event logs' } },
];
for (const col of collections) {
@@ -129,6 +130,14 @@ async function main() {
await createFieldSafe('generated_articles', 'generation_hash', 'string');
await createFieldSafe('generated_articles', 'site_id', 'integer');
// Work Log
await createFieldSafe('work_log', 'site', 'string'); // ID or relation
await createFieldSafe('work_log', 'action', 'string');
await createFieldSafe('work_log', 'entity_type', 'string');
await createFieldSafe('work_log', 'entity_id', 'string');
await createFieldSafe('work_log', 'details', 'text');
await createFieldSafe('work_log', 'status', 'string');
// --- 3. Import Data ---
console.log('--- Importing Data (Full Sync) ---');