@@ -7,33 +7,33 @@ export type ProfileImage = {
77} ;
88
99export type UserAccount = {
10- account_privacy : string ;
11- profile_image : ProfileImage ;
10+ accountPrivacy : string ;
11+ profileImage : ProfileImage ;
1212 username : string ;
1313 bio : string | null ;
14- course_certificates : unknown | null ; // Type unclear from data
14+ courseCertificates : unknown | null ; // Type unclear from data
1515 country : string | null ;
16- date_joined : string ; // ISO date string
17- language_proficiencies : unknown [ ] ; // Array type unclear from empty data
18- level_of_education : string | null ;
19- social_links : unknown [ ] ; // Array type unclear from empty data
20- time_zone : string | null ;
16+ dateJoined : string ; // ISO date string
17+ languageProficiencies : unknown [ ] ; // Array type unclear from empty data
18+ levelOfEducation : string | null ;
19+ socialLinks : unknown [ ] ; // Array type unclear from empty data
20+ timeZone : string | null ;
2121 name : string ;
2222 email : string ;
2323 id : number ;
24- verified_name : string | null ;
25- extended_profile : unknown [ ] ; // Array type unclear from empty data
24+ verifiedName : string | null ;
25+ extendedProfile : unknown [ ] ; // Array type unclear from empty data
2626 gender : string | null ;
2727 state : string | null ;
2828 goals : string ;
29- is_active : boolean ;
30- last_login : string ; // ISO date string
31- mailing_address : string ;
32- requires_parental_consent : boolean ;
33- secondary_email : string | null ;
34- secondary_email_enabled : boolean | null ;
35- year_of_birth : number | null ;
36- phone_number : string | null ;
37- activation_key : string ;
38- pending_name_change : string | null ;
29+ isActive : boolean ;
30+ lastLogin : string ; // ISO date string
31+ mailingAddress : string ;
32+ requiresParentalConsent : boolean ;
33+ secondaryEmail : string | null ;
34+ secondaryEmailEnabled : boolean | null ;
35+ yearOfBirth : number | null ;
36+ phoneNumber : string | null ;
37+ activationKey : string ;
38+ pendingNameChange : string | null ;
3939} ;
0 commit comments