@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zerodev/wallet-core",
3
- "version": "0.0.1-alpha.16",
3
+ "version": "0.0.1-alpha.17",
4
4
  "description": "ZeroDev Wallet SDK built on Turnkey",
5
5
  "main": "./dist/_cjs/index.js",
6
6
  "module": "./dist/_esm/index.js",
@@ -9,31 +9,31 @@ export type GetAuthenticatorsParameters = {
9
9
  token: string
10
10
  }
11
11
 
12
- /** An OAuth authenticator linked to the user (PascalCase from Go default marshaling) */
12
+ /** An OAuth authenticator linked to the user */
13
13
  export type OAuthAuthenticator = {
14
- Provider?: string
15
- ClientId?: string
16
- Subject?: string
14
+ provider?: string
15
+ clientId?: string
16
+ subject?: string
17
17
  [key: string]: unknown
18
18
  }
19
19
 
20
- /** A passkey (WebAuthn) authenticator (PascalCase from Go default marshaling) */
20
+ /** A passkey (WebAuthn) authenticator */
21
21
  export type PasskeyAuthenticator = {
22
- RpId?: string
23
- PublicKey?: string
24
- CredentialId?: string
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 (PascalCase from Go default marshaling) */
28
+ /** An email contact linked to the user */
29
29
  export type EmailContact = {
30
- Email?: string
30
+ email?: string
31
31
  [key: string]: unknown
32
32
  }
33
33
 
34
- /** An API key authenticator (PascalCase from Go default marshaling) */
34
+ /** An API key authenticator */
35
35
  export type ApiKeyAuthenticator = {
36
- ApiKey?: string
36
+ apiKey?: string
37
37
  [key: string]: unknown
38
38
  }
39
39