@dynamic-labs/message-transport 4.20.6 → 4.20.8
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,18 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.20.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.7...v4.20.8) (2025-06-23)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* add log level to react-native ([#8993](https://github.com/dynamic-labs/dynamic-auth/issues/8993)) ([261e5d7](https://github.com/dynamic-labs/dynamic-auth/commit/261e5d74e66c3cf7b0dff75cd2a838a521888dd3))
|
|
8
|
+
* sui connector types ([#8995](https://github.com/dynamic-labs/dynamic-auth/issues/8995)) ([d41ad4a](https://github.com/dynamic-labs/dynamic-auth/commit/d41ad4ad98f7dd6139fbace142ac8852484cf098))
|
|
9
|
+
|
|
10
|
+
### [4.20.7](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.6...v4.20.7) (2025-06-20)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* re export sui-core exports from sui package ([#8989](https://github.com/dynamic-labs/dynamic-auth/issues/8989)) ([d0369df](https://github.com/dynamic-labs/dynamic-auth/commit/d0369dfda3cc5bb026222cf1524694a4ba817797))
|
|
15
|
+
|
|
2
16
|
### [4.20.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.5...v4.20.6) (2025-06-18)
|
|
3
17
|
|
|
4
18
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/message-transport",
|
|
3
|
-
"version": "4.20.
|
|
3
|
+
"version": "4.20.8",
|
|
4
4
|
"description": "Defines the interface to communicate with dynamic's webview",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.688",
|
|
22
22
|
"@vue/reactivity": "^3.4.21",
|
|
23
|
-
"@dynamic-labs/types": "4.20.
|
|
23
|
+
"@dynamic-labs/types": "4.20.8",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
|
-
"@dynamic-labs/assert-package-version": "4.20.
|
|
26
|
-
"@dynamic-labs/logger": "4.20.
|
|
27
|
-
"@dynamic-labs/utils": "4.20.
|
|
28
|
-
"@dynamic-labs/webauthn": "4.20.
|
|
25
|
+
"@dynamic-labs/assert-package-version": "4.20.8",
|
|
26
|
+
"@dynamic-labs/logger": "4.20.8",
|
|
27
|
+
"@dynamic-labs/utils": "4.20.8",
|
|
28
|
+
"@dynamic-labs/webauthn": "4.20.8"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {}
|
|
31
31
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { LogLevel } from '@dynamic-labs/logger';
|
|
1
2
|
import { SerializedError } from '../utils/serializeErrorForTransport';
|
|
2
3
|
export type ConsoleMessages = {
|
|
3
4
|
error: (serializedError: SerializedError, props: {
|
|
@@ -8,4 +9,5 @@ export type ConsoleMessages = {
|
|
|
8
9
|
*/
|
|
9
10
|
severity: 'fatal' | 'log-only';
|
|
10
11
|
}) => void;
|
|
12
|
+
log: (level: LogLevel, message: string) => void;
|
|
11
13
|
};
|
|
@@ -12,6 +12,7 @@ export type ClientManifest = {
|
|
|
12
12
|
environmentId: string;
|
|
13
13
|
platform: 'browser' | 'react-native' | 'flutter' | 'swift';
|
|
14
14
|
redirectUrl: string;
|
|
15
|
+
debugWebview?: boolean;
|
|
15
16
|
};
|
|
16
17
|
export type SdkModuleState = {
|
|
17
18
|
/** Indicates the SDK is set up and ready for requests */
|