frontend 2026-06-10 bontva a 2 felület

This commit is contained in:
Roo
2026-06-10 08:06:07 +00:00
parent b84b1bab41
commit 90e3173fbc
59 changed files with 8616 additions and 1412 deletions

View File

@@ -0,0 +1,24 @@
/**
* Organization item returned from GET /api/v1/organizations/my
* Maps to the backend Organization model fields.
*/
export interface OrganizationItem {
organization_id: number
status: string
name: string
full_name: string
display_name: string | null
tax_number: string | null
country_code: string
is_active: boolean
is_deleted: boolean
subscription_plan: string
/** org_type is not in the current /my response but we keep it for future use */
org_type?: string
/**
* JSONB visual settings for white-labeling / dynamic theming.
* Contains keys like: primary_color, secondary_color, bg_color, wall_logo_url, etc.
* Set via PATCH /organizations/{org_id}/visual-settings.
*/
visual_settings?: Record<string, any> | null
}