@dynamic-labs/wallet-connector-core 2.0.0-alpha.16 → 2.0.0-alpha.18
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/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## [2.0.0-alpha.18](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.17...v2.0.0-alpha.18) (2024-03-15)
|
|
3
|
+
|
|
4
|
+
## [2.0.0-alpha.17](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.16...v2.0.0-alpha.17) (2024-03-15)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* rename prop canConnectViaEmail to requiresNonDynamicEmailOtp (#4991)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* allow creating embedded wallet with phone number without email ([#4953](https://github.com/dynamic-labs/DynamicAuth/issues/4953)) ([39d31cb](https://github.com/dynamic-labs/DynamicAuth/commit/39d31cbc969fff7acf53c0b6c5e5093ff846f3ea))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
* rename prop canConnectViaEmail to requiresNonDynamicEmailOtp ([#4991](https://github.com/dynamic-labs/DynamicAuth/issues/4991)) ([e83a365](https://github.com/dynamic-labs/DynamicAuth/commit/e83a3658d4f5cf0630fc8f15be66f2d3db84ab98))
|
|
17
|
+
|
|
2
18
|
## [2.0.0-alpha.16](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.15...v2.0.0-alpha.16) (2024-03-15)
|
|
3
19
|
|
|
4
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-connector-core",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.18",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dynamic-labs/DynamicAuth.git",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"@dynamic-labs/sdk-api": "0.0.389"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@dynamic-labs/logger": "2.0.0-alpha.
|
|
33
|
-
"@dynamic-labs/rpc-providers": "2.0.0-alpha.
|
|
34
|
-
"@dynamic-labs/types": "2.0.0-alpha.
|
|
35
|
-
"@dynamic-labs/utils": "2.0.0-alpha.
|
|
36
|
-
"@dynamic-labs/wallet-book": "2.0.0-alpha.
|
|
32
|
+
"@dynamic-labs/logger": "2.0.0-alpha.18",
|
|
33
|
+
"@dynamic-labs/rpc-providers": "2.0.0-alpha.18",
|
|
34
|
+
"@dynamic-labs/types": "2.0.0-alpha.18",
|
|
35
|
+
"@dynamic-labs/utils": "2.0.0-alpha.18",
|
|
36
|
+
"@dynamic-labs/wallet-book": "2.0.0-alpha.18",
|
|
37
37
|
"eventemitter3": "5.0.1"
|
|
38
38
|
}
|
|
39
39
|
}
|
|
@@ -54,9 +54,10 @@ class WalletConnectorBase extends EventEmitter__default["default"] {
|
|
|
54
54
|
_WalletConnectorBase_registeredExtensions.set(this, []);
|
|
55
55
|
this.didSetup = false;
|
|
56
56
|
/**
|
|
57
|
+
* This flag corresponds to whether this wallet connector also requires its own email otp outside dynamic
|
|
57
58
|
* @default false
|
|
58
59
|
*/
|
|
59
|
-
this.
|
|
60
|
+
this.requiresNonDynamicEmailOtp = false;
|
|
60
61
|
/**
|
|
61
62
|
* IF the wallet needs to be connected via a custodial service
|
|
62
63
|
* such as Blocto, this will be true.
|
|
@@ -70,9 +70,10 @@ export declare abstract class WalletConnectorBase extends EventEmitter<WalletCon
|
|
|
70
70
|
get walletBook(): WalletBookSchema;
|
|
71
71
|
filter(): boolean;
|
|
72
72
|
/**
|
|
73
|
+
* This flag corresponds to whether this wallet connector also requires its own email otp outside dynamic
|
|
73
74
|
* @default false
|
|
74
75
|
*/
|
|
75
|
-
|
|
76
|
+
requiresNonDynamicEmailOtp: boolean;
|
|
76
77
|
/**
|
|
77
78
|
* IF the wallet needs to be connected via a custodial service
|
|
78
79
|
* such as Blocto, this will be true.
|
|
@@ -46,9 +46,10 @@ class WalletConnectorBase extends EventEmitter {
|
|
|
46
46
|
_WalletConnectorBase_registeredExtensions.set(this, []);
|
|
47
47
|
this.didSetup = false;
|
|
48
48
|
/**
|
|
49
|
+
* This flag corresponds to whether this wallet connector also requires its own email otp outside dynamic
|
|
49
50
|
* @default false
|
|
50
51
|
*/
|
|
51
|
-
this.
|
|
52
|
+
this.requiresNonDynamicEmailOtp = false;
|
|
52
53
|
/**
|
|
53
54
|
* IF the wallet needs to be connected via a custodial service
|
|
54
55
|
* such as Blocto, this will be true.
|
package/src/lib/index.d.ts
CHANGED