@farcaster/miniapp-sdk 0.0.0-canary-20250905164304 → 0.0.0-canary-20251016150758

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farcaster/miniapp-sdk",
3
- "version": "0.0.0-canary-20250905164304",
3
+ "version": "0.0.0-canary-20251016150758",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,7 +23,7 @@
23
23
  "comlink": "^4.4.2",
24
24
  "eventemitter3": "^5.0.1",
25
25
  "ox": "^0.4.4",
26
- "@farcaster/miniapp-core": "0.0.0-canary-20250905164304"
26
+ "@farcaster/miniapp-core": "0.0.0-canary-20251016150758"
27
27
  },
28
28
  "scripts": {
29
29
  "clean": "rm -rf dist",
package/src/sdk.ts CHANGED
@@ -92,7 +92,10 @@ export const sdk: MiniAppSDK = {
92
92
  viewProfile: miniAppHost.viewProfile.bind(miniAppHost),
93
93
  openMiniApp: miniAppHost.openMiniApp.bind(miniAppHost),
94
94
  signIn: async (options) => {
95
- const response = await miniAppHost.signIn(options)
95
+ const response = await miniAppHost.signIn({
96
+ ...options,
97
+ acceptAuthAddress: options.acceptAuthAddress ?? true,
98
+ })
96
99
  if (response.result) {
97
100
  return response.result
98
101
  }