Add action_type to submission items

This commit is contained in:
gpt-engineer-app[bot]
2025-10-13 18:31:29 +00:00
parent a66bf59a55
commit fc9ba92e74
4 changed files with 38 additions and 2 deletions

View File

@@ -2399,6 +2399,7 @@ export type Database = {
}
submission_items: {
Row: {
action_type: string | null
approved_entity_id: string | null
created_at: string
depends_on: string | null
@@ -2413,6 +2414,7 @@ export type Database = {
updated_at: string
}
Insert: {
action_type?: string | null
approved_entity_id?: string | null
created_at?: string
depends_on?: string | null
@@ -2427,6 +2429,7 @@ export type Database = {
updated_at?: string
}
Update: {
action_type?: string | null
approved_entity_id?: string | null
created_at?: string
depends_on?: string | null