feat(06-01): add setup_completed boolean to Profile TypeScript interface

- Added setup_completed: boolean after currency field in Profile interface
This commit is contained in:
2026-04-20 17:48:37 +02:00
parent 0f441b6041
commit 39840ca5af

View File

@@ -13,6 +13,7 @@ export interface Profile {
display_name: string | null display_name: string | null
locale: string locale: string
currency: string currency: string
setup_completed: boolean
created_at: string created_at: string
updated_at: string updated_at: string
} }