@volr/react 0.1.99 → 0.1.100
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/dist/index.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -114,9 +114,8 @@ interface UserDto {
|
|
|
114
114
|
projectId: string;
|
|
115
115
|
projectName: string;
|
|
116
116
|
email: string;
|
|
117
|
-
|
|
117
|
+
authWallet?: string;
|
|
118
118
|
evmAddress?: `0x${string}`;
|
|
119
|
-
authWalletAddress?: string;
|
|
120
119
|
keyStorageType?: KeyStorageType$1;
|
|
121
120
|
signerType?: 'passkey' | 'external_wallet' | 'mpc';
|
|
122
121
|
walletConnector?: string;
|
|
@@ -206,9 +205,8 @@ interface VolrUser {
|
|
|
206
205
|
projectId?: string;
|
|
207
206
|
projectName?: string;
|
|
208
207
|
email?: string;
|
|
209
|
-
|
|
208
|
+
authWallet?: string;
|
|
210
209
|
evmAddress?: `0x${string}`;
|
|
211
|
-
authWalletAddress?: string;
|
|
212
210
|
keyStorageType?: KeyStorageType;
|
|
213
211
|
signerType?: SignerType;
|
|
214
212
|
walletConnector?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -114,9 +114,8 @@ interface UserDto {
|
|
|
114
114
|
projectId: string;
|
|
115
115
|
projectName: string;
|
|
116
116
|
email: string;
|
|
117
|
-
|
|
117
|
+
authWallet?: string;
|
|
118
118
|
evmAddress?: `0x${string}`;
|
|
119
|
-
authWalletAddress?: string;
|
|
120
119
|
keyStorageType?: KeyStorageType$1;
|
|
121
120
|
signerType?: 'passkey' | 'external_wallet' | 'mpc';
|
|
122
121
|
walletConnector?: string;
|
|
@@ -206,9 +205,8 @@ interface VolrUser {
|
|
|
206
205
|
projectId?: string;
|
|
207
206
|
projectName?: string;
|
|
208
207
|
email?: string;
|
|
209
|
-
|
|
208
|
+
authWallet?: string;
|
|
210
209
|
evmAddress?: `0x${string}`;
|
|
211
|
-
authWalletAddress?: string;
|
|
212
210
|
keyStorageType?: KeyStorageType;
|
|
213
211
|
signerType?: SignerType;
|
|
214
212
|
walletConnector?: string;
|
package/dist/index.js
CHANGED
|
@@ -18686,9 +18686,8 @@ function useVolrLogin() {
|
|
|
18686
18686
|
projectId: u.projectId,
|
|
18687
18687
|
projectName: u.projectName,
|
|
18688
18688
|
email: u.email,
|
|
18689
|
-
|
|
18689
|
+
authWallet: u.authWallet ?? void 0,
|
|
18690
18690
|
evmAddress: u.evmAddress,
|
|
18691
|
-
authWalletAddress: u.authWalletAddress ?? void 0,
|
|
18692
18691
|
keyStorageType: u.keyStorageType ?? void 0,
|
|
18693
18692
|
signerType: u.signerType ?? void 0,
|
|
18694
18693
|
walletConnector: u.walletConnector ?? void 0,
|
|
@@ -18904,7 +18903,7 @@ function useVolrAuthCallback(options = {}) {
|
|
|
18904
18903
|
projectId: u.projectId,
|
|
18905
18904
|
projectName: u.projectName,
|
|
18906
18905
|
email: u.email,
|
|
18907
|
-
|
|
18906
|
+
authWallet: u.authWallet ?? void 0,
|
|
18908
18907
|
evmAddress: u.evmAddress,
|
|
18909
18908
|
keyStorageType: u.keyStorageType ?? void 0,
|
|
18910
18909
|
signerType: u.signerType ?? void 0,
|