You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/gravatar/src/gravatar-client.ts
+59-1
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,8 @@ export namespace gravatar {
34
34
hash: string
35
35
/** The user’s display name that appears on their profile. */
36
36
display_name: string
37
+
first_name?: string
38
+
last_name?: string
37
39
/** The full URL to the user’s Gravatar profile. */
38
40
profile_url: string
39
41
/** The URL to the user’s avatar image, if set. */
@@ -49,12 +51,21 @@ export namespace gravatar {
49
51
/** The name of the company where the user is employed. */
50
52
company: string
51
53
/** An array of verified accounts the user has added to their profile. The number of verified accounts displayed is limited to a maximum of 4 in unauthenticated requests. */
52
-
verified_accounts: any[]
54
+
verified_accounts: Account[]
53
55
/** A phonetic guide to pronouncing the user’s name. */
54
56
pronunciation: string
55
57
/** The pronouns the user prefers to use. */
56
58
pronouns: string
57
59
60
+
is_organization?: boolean
61
+
links?: Link[]
62
+
interests?: any[]
63
+
gallery?: Image[]
64
+
payments?: {
65
+
links?: any[]
66
+
crypto_wallets?: CryptoWallet[]
67
+
}
68
+
58
69
/** The total number of verified accounts the user has added to their profile, including those not displayed on their profile. This property is only provided in authenticated API requests. */
59
70
number_verified_accounts?: number
60
71
@@ -63,6 +74,40 @@ export namespace gravatar {
63
74
64
75
/** The date the user registered their account. This property is only provided in authenticated API requests. Example: "2021-10-01" */
65
76
registration_date?: string
77
+
78
+
contact_info?: ContactInfo
79
+
}
80
+
81
+
exportinterfaceAccount{
82
+
service_type: string
83
+
service_label: string
84
+
service_icon: string
85
+
url: string
86
+
is_hidden: boolean
87
+
}
88
+
89
+
exportinterfaceLink{
90
+
label: string
91
+
url: string
92
+
}
93
+
94
+
exportinterfaceImage{
95
+
url: string
96
+
alt_text: string
97
+
}
98
+
99
+
exportinterfaceCryptoWallet{
100
+
label: string
101
+
address: string
102
+
}
103
+
104
+
exportinterfaceContactInfo{
105
+
home_phone: string
106
+
work_phone: string
107
+
cell_phone: string
108
+
email: string
109
+
contact_form: string
110
+
calendar: string
66
111
}
67
112
}
68
113
@@ -145,4 +190,17 @@ export class GravatarClient extends AIFunctionsProvider {
0 commit comments