@dynamic-labs/client
Advanced tools
Comparing version 3.0.0-alpha.31 to 3.0.0-alpha.32
'use client' | ||
var version = "3.0.0-alpha.31"; | ||
var version = "3.0.0-alpha.32"; | ||
export { version }; |
{ | ||
"name": "@dynamic-labs/client", | ||
"version": "3.0.0-alpha.31", | ||
"version": "3.0.0-alpha.32", | ||
"repository": { | ||
@@ -29,10 +29,10 @@ "type": "git", | ||
"dependencies": { | ||
"@dynamic-labs/message-transport": "3.0.0-alpha.31", | ||
"@dynamic-labs/message-transport": "3.0.0-alpha.32", | ||
"@vue/reactivity": "3.4.21" | ||
}, | ||
"peerDependencies": { | ||
"@dynamic-labs/logger": "3.0.0-alpha.31", | ||
"@dynamic-labs/types": "3.0.0-alpha.31", | ||
"@dynamic-labs/logger": "3.0.0-alpha.32", | ||
"@dynamic-labs/types": "3.0.0-alpha.32", | ||
"eventemitter3": "5.0.1" | ||
} | ||
} |
@@ -25,3 +25,4 @@ import { ClientProps } from '../client'; | ||
setAppOrigin: (appOrigin: string) => string; | ||
setPlatform: (platform: "browser" | "react-native") => "browser" | "react-native"; | ||
setPlatform: (platform: "browser" | "react-native" | "flutter") => "browser" | "react-native" | "flutter"; | ||
setRedirectUrl: (redirectUrl: string) => string; | ||
}; | ||
@@ -28,0 +29,0 @@ /** |
@@ -9,3 +9,4 @@ import { ClientManifest, MessageTransportWithDefaultOrigin } from '@dynamic-labs/message-transport'; | ||
setAppOrigin: (appOrigin: string) => string; | ||
setPlatform: (platform: ClientManifest['platform']) => "browser" | "react-native"; | ||
setPlatform: (platform: ClientManifest['platform']) => "browser" | "react-native" | "flutter"; | ||
setRedirectUrl: (redirectUrl: string) => string; | ||
}; |
@@ -28,2 +28,3 @@ 'use client' | ||
setPlatform: (platform) => (manifest.platform = platform), | ||
setRedirectUrl: (redirectUrl) => (manifest.redirectUrl = redirectUrl), | ||
}; | ||
@@ -30,0 +31,0 @@ }; |
@@ -10,2 +10,3 @@ 'use client' | ||
platform: 'Missing platform specific extension, like BrowserExtension or ReactNativeExtension. See how to setup Dynamic Client in our docs for help.', | ||
redirectUrl: 'Missing platform specific extension, like BrowserExtension or ReactNativeExtension. See how to setup Dynamic Client in our docs for help.', | ||
}; | ||
@@ -12,0 +13,0 @@ const validateManifest = (partialManifest) => { |
@@ -6,3 +6,3 @@ 'use client' | ||
const requestChannel = createRequestChannel(core.messageTransport); | ||
const connect = ({ provider, }) => requestChannel.request('connectWithSocial', { provider }); | ||
const connect = (props) => requestChannel.request('connectWithSocial', props); | ||
return { connect }; | ||
@@ -9,0 +9,0 @@ }; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
376517
1253
+ Added@dynamic-labs/logger@3.0.0-alpha.32(transitive)
+ Added@dynamic-labs/message-transport@3.0.0-alpha.32(transitive)
+ Added@dynamic-labs/types@3.0.0-alpha.32(transitive)
- Removed@dynamic-labs/logger@3.0.0-alpha.31(transitive)
- Removed@dynamic-labs/message-transport@3.0.0-alpha.31(transitive)
- Removed@dynamic-labs/types@3.0.0-alpha.31(transitive)