@dynamic-labs/flow 3.4.4 → 3.4.5
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 +12 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +5 -5
- package/src/FlowWalletConnector.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
|
|
2
|
+
### [3.4.5](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.4...v3.4.5) (2024-10-30)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add support for epicgames social ([#7222](https://github.com/dynamic-labs/DynamicAuth/issues/7222)) ([f34f027](https://github.com/dynamic-labs/DynamicAuth/commit/f34f02738a4d163792ff457dfe053335a4d57328))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* show connect view when user selects a wallet to connect with ([#7211](https://github.com/dynamic-labs/DynamicAuth/issues/7211)) ([c7d3ab0](https://github.com/dynamic-labs/DynamicAuth/commit/c7d3ab00d4ced00128e0e7bde908165707a15a5c))
|
|
13
|
+
|
|
2
14
|
### [3.4.4](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.3...v3.4.4) (2024-10-24)
|
|
3
15
|
|
|
4
16
|
### [3.4.3](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.2...v3.4.3) (2024-10-23)
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/flow",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@onflow/fcl": "1.10.0",
|
|
30
|
-
"@dynamic-labs/assert-package-version": "3.4.
|
|
31
|
-
"@dynamic-labs/utils": "3.4.
|
|
32
|
-
"@dynamic-labs/wallet-book": "3.4.
|
|
33
|
-
"@dynamic-labs/wallet-connector-core": "3.4.
|
|
30
|
+
"@dynamic-labs/assert-package-version": "3.4.5",
|
|
31
|
+
"@dynamic-labs/utils": "3.4.5",
|
|
32
|
+
"@dynamic-labs/wallet-book": "3.4.5",
|
|
33
|
+
"@dynamic-labs/wallet-connector-core": "3.4.5"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {}
|
|
36
36
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Chain, WalletConnectorBase } from '@dynamic-labs/wallet-connector-core';
|
|
1
|
+
import { Chain, WalletConnectorBase, WalletMetadata } from '@dynamic-labs/wallet-connector-core';
|
|
2
2
|
import { WalletBookSchema } from '@dynamic-labs/wallet-book';
|
|
3
3
|
import { FlowWallet } from './wallet';
|
|
4
4
|
export declare abstract class FlowWalletConnector extends WalletConnectorBase<typeof FlowWallet> {
|
|
@@ -15,6 +15,7 @@ export declare abstract class FlowWalletConnector extends WalletConnectorBase<ty
|
|
|
15
15
|
appName?: string;
|
|
16
16
|
flowNetwork?: 'mainnet' | 'testnet';
|
|
17
17
|
walletBook: WalletBookSchema;
|
|
18
|
+
metadata?: WalletMetadata;
|
|
18
19
|
});
|
|
19
20
|
connect(): Promise<void>;
|
|
20
21
|
getNetwork(): Promise<string>;
|