@dynamic-labs/flow 3.3.0 → 3.4.1
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 +17 -0
- package/package.cjs +8 -0
- package/package.js +4 -0
- package/package.json +5 -4
- package/src/index.cjs +3 -0
- package/src/index.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
|
|
2
|
+
### [3.4.1](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.0...v3.4.1) (2024-10-17)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* bug where embeddedWalletCreated event was fired before listener was attached ([#7154](https://github.com/dynamic-labs/DynamicAuth/issues/7154)) ([c782de2](https://github.com/dynamic-labs/DynamicAuth/commit/c782de2900097c389f8e388807b63820827ca430)), closes [#7151](https://github.com/dynamic-labs/DynamicAuth/issues/7151)
|
|
8
|
+
|
|
9
|
+
## [3.4.0](https://github.com/dynamic-labs/DynamicAuth/compare/v3.3.0...v3.4.0) (2024-10-16)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add support for add Oyl Wallet ([#7140](https://github.com/dynamic-labs/DynamicAuth/issues/7140)) ([f683f10](https://github.com/dynamic-labs/DynamicAuth/commit/f683f108098a2effac0f3b78c35bf2be73c1263c))
|
|
15
|
+
* add support for xverse account change event ([#7131](https://github.com/dynamic-labs/DynamicAuth/issues/7131)) ([bc34105](https://github.com/dynamic-labs/DynamicAuth/commit/bc341059903dc4d494f8d3ab127fa1adbec69c3a))
|
|
16
|
+
* embedded wallet signAllTransaction headless functionality for solana ([#7134](https://github.com/dynamic-labs/DynamicAuth/issues/7134)) ([15fa689](https://github.com/dynamic-labs/DynamicAuth/commit/15fa689f1f3bd591f10b19875d53f7cc3ffe1ebd))
|
|
17
|
+
* support ability to define additional oauth scopes ([#7113](https://github.com/dynamic-labs/DynamicAuth/issues/7113)) ([75c7f90](https://github.com/dynamic-labs/DynamicAuth/commit/75c7f9091b936153597b081d261e15cd1186623a))
|
|
18
|
+
|
|
2
19
|
## [3.3.0](https://github.com/dynamic-labs/DynamicAuth/compare/v3.2.0...v3.3.0) (2024-10-08)
|
|
3
20
|
|
|
4
21
|
|
package/package.cjs
ADDED
package/package.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/flow",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -27,9 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@onflow/fcl": "1.10.0",
|
|
30
|
-
"@dynamic-labs/
|
|
31
|
-
"@dynamic-labs/
|
|
32
|
-
"@dynamic-labs/wallet-
|
|
30
|
+
"@dynamic-labs/assert-package-version": "3.4.1",
|
|
31
|
+
"@dynamic-labs/utils": "3.4.1",
|
|
32
|
+
"@dynamic-labs/wallet-book": "3.4.1",
|
|
33
|
+
"@dynamic-labs/wallet-connector-core": "3.4.1"
|
|
33
34
|
},
|
|
34
35
|
"peerDependencies": {}
|
|
35
36
|
}
|
package/src/index.cjs
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
5
|
|
|
6
|
+
var assertPackageVersion = require('@dynamic-labs/assert-package-version');
|
|
7
|
+
var _package = require('../package.cjs');
|
|
6
8
|
var blocto = require('./blocto.cjs');
|
|
7
9
|
var dapper = require('./dapper.cjs');
|
|
8
10
|
var lilico = require('./lilico.cjs');
|
|
@@ -11,6 +13,7 @@ var FlowWallet = require('./wallet/FlowWallet.cjs');
|
|
|
11
13
|
var isFlowWallet = require('./wallet/isFlowWallet/isFlowWallet.cjs');
|
|
12
14
|
|
|
13
15
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
16
|
+
assertPackageVersion.assertPackageVersion('@dynamic-labs/flow', _package.version);
|
|
14
17
|
const FlowWalletConnectors = (props) => [blocto, dapper, lilico];
|
|
15
18
|
|
|
16
19
|
exports.FlowWalletConnector = FlowWalletConnector.FlowWalletConnector;
|
package/src/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
'use client'
|
|
2
|
+
import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
|
|
3
|
+
import { version } from '../package.js';
|
|
2
4
|
import Blocto from './blocto.js';
|
|
3
5
|
import Dapper from './dapper.js';
|
|
4
6
|
import Lilico from './lilico.js';
|
|
@@ -7,6 +9,7 @@ export { FlowWallet } from './wallet/FlowWallet.js';
|
|
|
7
9
|
export { isFlowWallet } from './wallet/isFlowWallet/isFlowWallet.js';
|
|
8
10
|
|
|
9
11
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
12
|
+
assertPackageVersion('@dynamic-labs/flow', version);
|
|
10
13
|
const FlowWalletConnectors = (props) => [Blocto, Dapper, Lilico];
|
|
11
14
|
|
|
12
15
|
export { FlowWalletConnectors };
|