mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 11:36:42 +00:00
Go-live runtime sync and control plane hardening (#1)
* Implement Mika runtime sync and go-live controls * Add CI validation workflow * Align CI with validated runtime checks * Fix Mika CI install workflow
This commit is contained in:
parent
cb54fa4666
commit
d87ea2657c
31 changed files with 4019 additions and 95 deletions
|
|
@ -475,6 +475,11 @@ export type Database = {
|
|||
natural_language_input: string
|
||||
next_run_at: string | null
|
||||
required_mcp_slugs: Json
|
||||
runtime_last_delivery_error: string | null
|
||||
runtime_last_error: string | null
|
||||
runtime_last_status: string | null
|
||||
runtime_state: string | null
|
||||
runtime_synced_at: string | null
|
||||
status: string
|
||||
timezone: string
|
||||
updated_at: string
|
||||
|
|
@ -494,6 +499,11 @@ export type Database = {
|
|||
natural_language_input: string
|
||||
next_run_at?: string | null
|
||||
required_mcp_slugs?: Json
|
||||
runtime_last_delivery_error?: string | null
|
||||
runtime_last_error?: string | null
|
||||
runtime_last_status?: string | null
|
||||
runtime_state?: string | null
|
||||
runtime_synced_at?: string | null
|
||||
status?: string
|
||||
timezone?: string
|
||||
updated_at?: string
|
||||
|
|
@ -513,6 +523,11 @@ export type Database = {
|
|||
natural_language_input?: string
|
||||
next_run_at?: string | null
|
||||
required_mcp_slugs?: Json
|
||||
runtime_last_delivery_error?: string | null
|
||||
runtime_last_error?: string | null
|
||||
runtime_last_status?: string | null
|
||||
runtime_state?: string | null
|
||||
runtime_synced_at?: string | null
|
||||
status?: string
|
||||
timezone?: string
|
||||
updated_at?: string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue