@funkit/connect 7.1.0-next.3 → 7.1.0-next.5
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/CHANGELOG.md +14 -0
- package/dist/consts/customers.d.ts +1 -1
- package/dist/index.js +890 -874
- package/dist/wallets/walletConnectors/index.js +15 -15
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 7.1.0-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d3322be: chore: updated labels
|
|
8
|
+
|
|
9
|
+
## 7.1.0-next.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 92eb741: Fix input normalization re-attachment when used with Framer Motion DOM swapping
|
|
14
|
+
- f3c3431: feat(connect): add custom processing message for lighter native flow
|
|
15
|
+
- a94f293: do not over-fetching bridge account
|
|
16
|
+
|
|
3
17
|
## 7.1.0-next.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -15,4 +15,4 @@ export declare function isAvantisCustomer(apiKey: string): apiKey is "6TUi99Tq3O
|
|
|
15
15
|
export declare function isPerplCustomer(apiKey: string): apiKey is "wQDLu86Qab61vbtru7thf8Yj0xaeqVUH4ohoXESu";
|
|
16
16
|
export declare function isLighterxyzCustomer(apiKey: string): apiKey is "i6e1I8cfX625TTwRJlD2DshKyAoaUtO8aeoaR4i2";
|
|
17
17
|
export declare function isLighterEthSpot(apiKey: string, checkoutConfig: FunkitCheckoutConfig | undefined): boolean | undefined;
|
|
18
|
-
export declare function isLighterNativeFlow(apiKey: string, checkoutConfig: FunkitCheckoutConfig | undefined): boolean;
|
|
18
|
+
export declare function isLighterNativeFlow(apiKey: string, checkoutConfig: Pick<FunkitCheckoutConfig, 'targetChain'> | undefined): boolean;
|