@farcaster/frame-sdk 0.0.54 → 0.0.55
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/index.min.js +2 -2
- package/dist/index.min.js.map +2 -2
- package/dist/sdk.js +5 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types.d.ts +6 -6
- package/package.json +2 -2
- package/src/sdk.ts +5 -5
- package/src/types.ts +8 -6
package/dist/sdk.js
CHANGED
|
@@ -110,11 +110,6 @@ export const sdk = {
|
|
|
110
110
|
viewToken: frameHost.viewToken.bind(frameHost),
|
|
111
111
|
sendToken: frameHost.sendToken.bind(frameHost),
|
|
112
112
|
swapToken: frameHost.swapToken.bind(frameHost),
|
|
113
|
-
haptics: {
|
|
114
|
-
impactOccurred: frameHost.impactOccurred.bind(frameHost),
|
|
115
|
-
notificationOccurred: frameHost.notificationOccurred.bind(frameHost),
|
|
116
|
-
selectionChanged: frameHost.selectionChanged.bind(frameHost),
|
|
117
|
-
},
|
|
118
113
|
},
|
|
119
114
|
experimental: {
|
|
120
115
|
getSolanaProvider,
|
|
@@ -151,6 +146,11 @@ export const sdk = {
|
|
|
151
146
|
getEthereumProvider,
|
|
152
147
|
getSolanaProvider,
|
|
153
148
|
},
|
|
149
|
+
haptics: {
|
|
150
|
+
impactOccurred: frameHost.impactOccurred.bind(frameHost),
|
|
151
|
+
notificationOccurred: frameHost.notificationOccurred.bind(frameHost),
|
|
152
|
+
selectionChanged: frameHost.selectionChanged.bind(frameHost),
|
|
153
|
+
},
|
|
154
154
|
};
|
|
155
155
|
// Required to pass SSR
|
|
156
156
|
if (typeof document !== 'undefined') {
|