async updateProfile()

in src/lib/service/custos-service/custos-service-users.js [170:182]


    async updateProfile({clientId, username, firstName, lastName, email}) {
        const axiosInstance = await this.custosService.axiosInstance;
        return axiosInstance.put(
            `${CustosService.ENDPOINTS.USERS}/user/profile`,
            {
                username: username,
                first_name: firstName,
                last_name: lastName,
                email: email,
                client_id: clientId
            }
        ).then(({data}) => data);
    }