/** * Profile service for @ollaid/native-sso * Updates the authenticated profile fields via IAM. * * @version 2.7.9 */ import type { UserInfos } from '../types/native'; export interface ProfileUpdateRequest { name?: string; ccphone?: string; phone?: string; email?: string; address?: string; town?: string; country?: string; } export interface ProfileUpdateResponse { message?: string; user?: UserInfos; user_infos?: UserInfos; } export interface ProfileFetchResponse { message?: string; user?: UserInfos; user_infos?: UserInfos; } export declare const profileService: { getProfile(): Promise; updateProfile(data: ProfileUpdateRequest): Promise; }; export default profileService;