@dynamic-labs/multi-wallet 1.1.0-alpha.23 → 1.1.0-alpha.25

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,24 @@
1
1
 
2
+ ## [1.1.0-alpha.25](https://github.com/dynamic-labs/DynamicAuth/compare/v1.1.0-alpha.24...v1.1.0-alpha.25) (2024-02-05)
3
+
4
+
5
+ ### Features
6
+
7
+ * add signin with coinbase to sdk ([#4581](https://github.com/dynamic-labs/DynamicAuth/issues/4581)) ([08a31ed](https://github.com/dynamic-labs/DynamicAuth/commit/08a31ed3552c48645b398881f184440800af21ec))
8
+ * exposing hook for creating either one-time code or passkeys authenticators ([#4591](https://github.com/dynamic-labs/DynamicAuth/issues/4591)) ([864d755](https://github.com/dynamic-labs/DynamicAuth/commit/864d75576152a10f73f5901bc06e2d66892b63ab))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * solana wallet sign message with one-time code session ([#4588](https://github.com/dynamic-labs/DynamicAuth/issues/4588)) ([a738d10](https://github.com/dynamic-labs/DynamicAuth/commit/a738d10814dc5058158b9c0c59a399a375c69c10))
14
+
15
+ ## [1.1.0-alpha.24](https://github.com/dynamic-labs/DynamicAuth/compare/v1.1.0-alpha.23...v1.1.0-alpha.24) (2024-02-02)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * remove isFullyConnected when unable to restore wallet ([#4575](https://github.com/dynamic-labs/DynamicAuth/issues/4575)) ([4504ff0](https://github.com/dynamic-labs/DynamicAuth/commit/4504ff03f594cd9a60055e6f52b7ea8001542bbe))
21
+
2
22
  ## [1.1.0-alpha.23](https://github.com/dynamic-labs/DynamicAuth/compare/v1.1.0-alpha.22...v1.1.0-alpha.23) (2024-02-01)
3
23
 
4
24
 
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@dynamic-labs/multi-wallet",
3
- "version": "1.1.0-alpha.23",
3
+ "version": "1.1.0-alpha.25",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
7
7
  "directory": "packages/multi-wallet"
8
8
  },
9
9
  "dependencies": {
10
- "@dynamic-labs/sdk-api": "0.0.356",
10
+ "@dynamic-labs/sdk-api": "0.0.363",
11
11
  "tslib": "2.4.1",
12
- "@dynamic-labs/rpc-providers": "1.1.0-alpha.23",
13
- "@dynamic-labs/types": "1.1.0-alpha.23",
14
- "@dynamic-labs/utils": "1.1.0-alpha.23",
15
- "@dynamic-labs/wallet-book": "1.1.0-alpha.23",
16
- "@dynamic-labs/wallet-connector-core": "1.1.0-alpha.23"
12
+ "@dynamic-labs/rpc-providers": "1.1.0-alpha.25",
13
+ "@dynamic-labs/types": "1.1.0-alpha.25",
14
+ "@dynamic-labs/utils": "1.1.0-alpha.25",
15
+ "@dynamic-labs/wallet-book": "1.1.0-alpha.25",
16
+ "@dynamic-labs/wallet-connector-core": "1.1.0-alpha.25"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@walletconnect/types": "2.10.6"
@@ -4,6 +4,7 @@ export declare const getApiProviders: (providers: Provider[]) => {
4
4
  magicLink?: Provider | undefined;
5
5
  apple?: Provider | undefined;
6
6
  bitbucket?: Provider | undefined;
7
+ coinbasesocial?: Provider | undefined;
7
8
  discord?: Provider | undefined;
8
9
  facebook?: Provider | undefined;
9
10
  github?: Provider | undefined;
@@ -20,4 +21,6 @@ export declare const getApiProviders: (providers: Provider[]) => {
20
21
  alchemy?: Provider | undefined;
21
22
  zerodev?: Provider | undefined;
22
23
  turnkey?: Provider | undefined;
24
+ coinbaseWaas?: Provider | undefined;
25
+ sms?: Provider | undefined;
23
26
  };