@dynamic-labs/message-transport 4.0.0-alpha.4 → 4.0.0-alpha.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
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.0.0-alpha.5](https://github.com/dynamic-labs/DynamicAuth/compare/v4.0.0-alpha.4...v4.0.0-alpha.5) (2024-09-25)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add isInstalledOnBrowser prop to wallet options in useWalletOptions ([#6976](https://github.com/dynamic-labs/DynamicAuth/issues/6976)) ([0fda409](https://github.com/dynamic-labs/DynamicAuth/commit/0fda409b293c83d73869d791c3d38ac421dcdecb))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **client:** return user profile when using sign in with external jwt ([#7004](https://github.com/dynamic-labs/DynamicAuth/issues/7004)) ([927cfb6](https://github.com/dynamic-labs/DynamicAuth/commit/927cfb69f3dd7f8b00e3f0f975277a84c99c830b))
|
|
13
|
+
* react-native-extension to include esm ([#6965](https://github.com/dynamic-labs/DynamicAuth/issues/6965)) ([336825b](https://github.com/dynamic-labs/DynamicAuth/commit/336825b50142002bbc67c6f8850bd63030bf384b))
|
|
14
|
+
|
|
2
15
|
## [4.0.0-alpha.4](https://github.com/dynamic-labs/DynamicAuth/compare/v4.0.0-alpha.3...v4.0.0-alpha.4) (2024-09-23)
|
|
3
16
|
|
|
4
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/message-transport",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.5",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@dynamic-labs/sdk-api-core": "0.0.535",
|
|
30
30
|
"@vue/reactivity": "3.4.21",
|
|
31
|
-
"@dynamic-labs/types": "4.0.0-alpha.
|
|
31
|
+
"@dynamic-labs/types": "4.0.0-alpha.5",
|
|
32
32
|
"eventemitter3": "5.0.1"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@dynamic-labs/logger": "4.0.0-alpha.
|
|
36
|
-
"@dynamic-labs/utils": "4.0.0-alpha.
|
|
35
|
+
"@dynamic-labs/logger": "4.0.0-alpha.5",
|
|
36
|
+
"@dynamic-labs/utils": "4.0.0-alpha.5"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { UserProfile } from '@dynamic-labs/types';
|
|
1
2
|
export type SignInWithExternalJwtParams = {
|
|
2
3
|
externalUserId: string;
|
|
3
4
|
externalJwt: string;
|
|
@@ -10,9 +11,9 @@ export type ExternalAuthMessages = {
|
|
|
10
11
|
/**
|
|
11
12
|
* Initiates sign in with an externally provided JWT
|
|
12
13
|
*/
|
|
13
|
-
signInWithExternalJwt: (props: SignInWithExternalJwtParams) => Promise<
|
|
14
|
+
signInWithExternalJwt: (props: SignInWithExternalJwtParams) => Promise<UserProfile | null>;
|
|
14
15
|
/**
|
|
15
16
|
* Initiates verification with an externally provided JWT
|
|
16
17
|
*/
|
|
17
|
-
verifyWithExternalJwt: (props: VerifyWithExternalJwtParams) => Promise<
|
|
18
|
+
verifyWithExternalJwt: (props: VerifyWithExternalJwtParams) => Promise<UserProfile | null>;
|
|
18
19
|
};
|