@multiplatform.one/gpg 6.7.0 → 7.0.0
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/package.json +4 -4
- package/src/GpgContext.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multiplatform.one/gpg",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Sign-In With GPG (SIWG) screen + GpgProvider for the connectkit modal — no viem",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"connectkit",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@multiplatform.one/connectkit": "
|
|
58
|
+
"@multiplatform.one/connectkit": "7.0.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@tamagui/build": "2.
|
|
61
|
+
"@tamagui/build": "2.7.6",
|
|
62
62
|
"@types/react": "~19.2.14",
|
|
63
63
|
"react": "19.2.5",
|
|
64
64
|
"typescript": "~5.9.3",
|
|
65
|
-
"@multiplatform.one/config": "
|
|
65
|
+
"@multiplatform.one/config": "7.0.0"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"@tanstack/react-query": "^5.62.0",
|
package/src/GpgContext.tsx
CHANGED
|
@@ -14,7 +14,7 @@ export enum GpgStatusState {
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
export type GpgConfig = {
|
|
17
|
-
// Required: fetch a fresh nonce from the backend (e.g. keycloak /realms/<realm>/
|
|
17
|
+
// Required: fetch a fresh nonce from the backend (e.g. keycloak /realms/<realm>/wallet/nonce).
|
|
18
18
|
getNonce: () => Promise<string>;
|
|
19
19
|
// Required: submit the signed credential. The screen produces
|
|
20
20
|
// username = base64(armoredSignature + armoredPublicKey)
|