@zerodev/wallet-core 0.0.1-alpha.16 → 0.0.1-alpha.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -9,31 +9,31 @@ export type GetAuthenticatorsParameters = {
|
|
|
9
9
|
token: string
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
/** An OAuth authenticator linked to the user
|
|
12
|
+
/** An OAuth authenticator linked to the user */
|
|
13
13
|
export type OAuthAuthenticator = {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
provider?: string
|
|
15
|
+
clientId?: string
|
|
16
|
+
subject?: string
|
|
17
17
|
[key: string]: unknown
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
/** A passkey (WebAuthn) authenticator
|
|
20
|
+
/** A passkey (WebAuthn) authenticator */
|
|
21
21
|
export type PasskeyAuthenticator = {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
rpId?: string
|
|
23
|
+
publicKey?: string
|
|
24
|
+
credentialId?: string
|
|
25
25
|
[key: string]: unknown
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
/** An email contact linked to the user
|
|
28
|
+
/** An email contact linked to the user */
|
|
29
29
|
export type EmailContact = {
|
|
30
|
-
|
|
30
|
+
email?: string
|
|
31
31
|
[key: string]: unknown
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
/** An API key authenticator
|
|
34
|
+
/** An API key authenticator */
|
|
35
35
|
export type ApiKeyAuthenticator = {
|
|
36
|
-
|
|
36
|
+
apiKey?: string
|
|
37
37
|
[key: string]: unknown
|
|
38
38
|
}
|
|
39
39
|
|