export type SimpleTaxpayerResponse = { city?: string houseNumber?: string name: string orientationNumber?: string postalCode?: string street?: string } export type RegistrationDetails = { taxpayerId: string email: string roles: string[] language: string accountCreatedAt?: string } export type RegistrationVerify = { code: string email: string language: string password: string passwordConfirm: string } export type VerifyResponse = { uid: string email: string }