@dynamic-labs/client 3.0.0-alpha.33 → 3.0.0-alpha.35
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 +9 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +4 -4
- package/src/modules/userInterfaceModule/userInterfaceModule.cjs +1 -1
- package/src/modules/userInterfaceModule/userInterfaceModule.d.ts +2 -1
- package/src/modules/userInterfaceModule/userInterfaceModule.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
|
|
2
|
+
## [3.0.0-alpha.35](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.34...v3.0.0-alpha.35) (2024-08-06)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* allow mfa sync to rerun after logout ([#6503](https://github.com/dynamic-labs/DynamicAuth/issues/6503)) ([74377e8](https://github.com/dynamic-labs/DynamicAuth/commit/74377e844a84da422173289a10561eb7acf4f8b9))
|
|
8
|
+
|
|
9
|
+
## [3.0.0-alpha.34](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.33...v3.0.0-alpha.34) (2024-08-02)
|
|
10
|
+
|
|
2
11
|
## [3.0.0-alpha.33](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.32...v3.0.0-alpha.33) (2024-08-02)
|
|
3
12
|
|
|
4
13
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/client",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.35",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@dynamic-labs/message-transport": "3.0.0-alpha.
|
|
29
|
+
"@dynamic-labs/message-transport": "3.0.0-alpha.35",
|
|
30
30
|
"@vue/reactivity": "3.4.21"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@dynamic-labs/logger": "3.0.0-alpha.
|
|
34
|
-
"@dynamic-labs/types": "3.0.0-alpha.
|
|
33
|
+
"@dynamic-labs/logger": "3.0.0-alpha.35",
|
|
34
|
+
"@dynamic-labs/types": "3.0.0-alpha.35",
|
|
35
35
|
"eventemitter3": "5.0.1"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -15,7 +15,7 @@ const createUserInterfaceModule = (core) => {
|
|
|
15
15
|
show: () => userInterfaceRequestChannel.emit('openUserProfile'),
|
|
16
16
|
},
|
|
17
17
|
wallets: {
|
|
18
|
-
revealEmbeddedWalletKey: () => userInterfaceRequestChannel.emit('revealEmbeddedWalletKey'),
|
|
18
|
+
revealEmbeddedWalletKey: (params) => userInterfaceRequestChannel.emit('revealEmbeddedWalletKey', params),
|
|
19
19
|
},
|
|
20
20
|
};
|
|
21
21
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { UserInterfaceModuleMessages } from '@dynamic-labs/message-transport';
|
|
1
2
|
import { Core } from '../../client/core';
|
|
2
3
|
export type UserInterfaceModule = {
|
|
3
4
|
auth: {
|
|
@@ -7,7 +8,7 @@ export type UserInterfaceModule = {
|
|
|
7
8
|
show: VoidFunction;
|
|
8
9
|
};
|
|
9
10
|
wallets: {
|
|
10
|
-
revealEmbeddedWalletKey:
|
|
11
|
+
revealEmbeddedWalletKey: UserInterfaceModuleMessages['revealEmbeddedWalletKey'];
|
|
11
12
|
};
|
|
12
13
|
};
|
|
13
14
|
export declare const createUserInterfaceModule: (core: Core) => UserInterfaceModule;
|
|
@@ -11,7 +11,7 @@ const createUserInterfaceModule = (core) => {
|
|
|
11
11
|
show: () => userInterfaceRequestChannel.emit('openUserProfile'),
|
|
12
12
|
},
|
|
13
13
|
wallets: {
|
|
14
|
-
revealEmbeddedWalletKey: () => userInterfaceRequestChannel.emit('revealEmbeddedWalletKey'),
|
|
14
|
+
revealEmbeddedWalletKey: (params) => userInterfaceRequestChannel.emit('revealEmbeddedWalletKey', params),
|
|
15
15
|
},
|
|
16
16
|
};
|
|
17
17
|
};
|