mirror of
https://github.com/rappleit/yeego-linkedin-prototype.git
synced 2026-01-12 15:33:54 +08:00
29 lines
641 B
TypeScript
29 lines
641 B
TypeScript
export interface Profile {
|
|
id: string
|
|
updated_at?: string | null
|
|
username?: string | null
|
|
email?: string | null
|
|
display_name?: string | null
|
|
linkedin_connected?: boolean | null
|
|
linkedin_profile_id?: string | null
|
|
unipile_id?: string | null
|
|
}
|
|
|
|
export interface CreateProfileData {
|
|
id: string
|
|
username?: string
|
|
email?: string
|
|
display_name?: string
|
|
linkedin_connected?: boolean
|
|
linkedin_profile_id?: string
|
|
unipile_id?: string
|
|
}
|
|
|
|
export interface UpdateProfileData {
|
|
username?: string
|
|
email?: string
|
|
display_name?: string
|
|
linkedin_connected?: boolean
|
|
linkedin_profile_id?: string
|
|
unipile_id?: string
|
|
}
|