Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-25 12:00:56 +00:00
parent a57325a7c1
commit 6498030a98
2 changed files with 13 additions and 0 deletions

View file

@ -16,11 +16,13 @@ export type Database = {
Tables: {
agent_instances: {
Row: {
agent_name: string | null
container_name: string | null
created_at: string
id: string
last_health_check_at: string | null
model_config: Json
onboarding_completed: boolean
provisioned_at: string | null
railway_service_id: string | null
status: string
@ -38,13 +40,16 @@ export type Database = {
uuid_tenant: string
vps_host: string | null
vps_pool_id: string | null
welcome_message_sent_at: string | null
}
Insert: {
agent_name?: string | null
container_name?: string | null
created_at?: string
id?: string
last_health_check_at?: string | null
model_config?: Json
onboarding_completed?: boolean
provisioned_at?: string | null
railway_service_id?: string | null
status?: string
@ -62,13 +67,16 @@ export type Database = {
uuid_tenant?: string
vps_host?: string | null
vps_pool_id?: string | null
welcome_message_sent_at?: string | null
}
Update: {
agent_name?: string | null
container_name?: string | null
created_at?: string
id?: string
last_health_check_at?: string | null
model_config?: Json
onboarding_completed?: boolean
provisioned_at?: string | null
railway_service_id?: string | null
status?: string
@ -86,6 +94,7 @@ export type Database = {
uuid_tenant?: string
vps_host?: string | null
vps_pool_id?: string | null
welcome_message_sent_at?: string | null
}
Relationships: [
{