@openfort/react-native 1.0.6 → 1.0.7
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/dist/core/provider.js
CHANGED
|
@@ -125,6 +125,7 @@ export const OpenfortProvider = ({ children, publishableKey, supportedChains, wa
|
|
|
125
125
|
shieldDebug: walletConfig.debug,
|
|
126
126
|
passkeyRpId: walletConfig.passkeyRpId,
|
|
127
127
|
passkeyRpName: walletConfig.passkeyRpName,
|
|
128
|
+
passkeyDisplayName: walletConfig.passkeyDisplayName,
|
|
128
129
|
})
|
|
129
130
|
: undefined,
|
|
130
131
|
overrides: {
|
|
@@ -14,6 +14,8 @@ export type CommonEmbeddedWalletConfiguration = {
|
|
|
14
14
|
passkeyRpId?: string;
|
|
15
15
|
/** Passkey Relying Party Name for passkey-based recovery */
|
|
16
16
|
passkeyRpName?: string;
|
|
17
|
+
/** Display name shown next to the passkey credential in passkey dialogs. Defaults to "Openfort - Embedded Wallet". */
|
|
18
|
+
passkeyDisplayName?: string;
|
|
17
19
|
};
|
|
18
20
|
/**
|
|
19
21
|
* Parameters passed to the encryption session callback
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfort/react-native",
|
|
3
3
|
"main": "dist/index.js",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.7",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "React Native SDK for Openfort platform integration",
|
|
7
7
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@openfort/openfort-js": "^1.1.
|
|
27
|
+
"@openfort/openfort-js": "^1.1.7",
|
|
28
28
|
"react-native-passkeys": "0.4.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|