@funkit/connect 7.1.0-next.7 → 7.1.0-next.8
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 +20 -0
- package/dist/domains/quote.d.ts +1 -1
- package/dist/{modals/CheckoutModal → hooks}/useWalletAssetHoldings.d.ts +1 -1
- package/dist/index.js +1257 -1132
- package/dist/modals/CheckoutModal/ConfirmationStep/ConfirmationStep.d.ts +0 -7
- package/dist/modals/CheckoutModal/ConfirmationStep/usePostCheckout.d.ts +0 -6
- package/dist/modals/CheckoutModal/{useSourceAssetConfirm.d.ts → ConfirmationStep/useSourceAssetConfirm.d.ts} +0 -2
- package/dist/providers/FunkitQuoteContext.d.ts +1 -2
- package/dist/wallets/walletConnectors/index.js +9 -9
- package/package.json +4 -4
- package/dist/modals/CheckoutModal/useNewCheckoutQuote.d.ts +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 7.1.0-next.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 40bf6f4: reorganize file location
|
|
8
|
+
- c289ca6: feat(fun-relay): require api key for relay to prevent rate limiting
|
|
9
|
+
feat(connect): pass pseudo api key to fun-relay
|
|
10
|
+
- 18ce29c: deprecate some unused code
|
|
11
|
+
- 437a9f2: refactor(connect): swap out 2FA input for fun 2FA component on brokerage flow
|
|
12
|
+
- 62a8860: remove unused data
|
|
13
|
+
- 5a8fe96: fix(connect): normalize feebreakdown response
|
|
14
|
+
- ae172d8: move file around
|
|
15
|
+
- Updated dependencies [c289ca6]
|
|
16
|
+
- Updated dependencies [fd5fe29]
|
|
17
|
+
- Updated dependencies [c463492]
|
|
18
|
+
- Updated dependencies [aa767b0]
|
|
19
|
+
- @funkit/fun-relay@2.2.0-next.3
|
|
20
|
+
- @funkit/utils@1.1.22-next.1
|
|
21
|
+
- @funkit/api-base@1.12.22-next.2
|
|
22
|
+
|
|
3
23
|
## 7.1.0-next.7
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/domains/quote.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface CheckedAssetAmount {
|
|
|
22
22
|
maxTargetAssetAmount?: number;
|
|
23
23
|
minTargetAssetAmount?: number;
|
|
24
24
|
}
|
|
25
|
-
export declare function checkAssetAmount(checkoutItem: FunkitActiveCheckoutItem,
|
|
25
|
+
export declare function checkAssetAmount(checkoutItem: FunkitActiveCheckoutItem, finalEstimation: FunkitCheckoutQuoteResult, wagmiConfig: Config, walletAddress: Address, brokerage?: BrokerageDetails): Promise<CheckedAssetAmount>;
|
|
26
26
|
export interface CheckoutQuoteParams {
|
|
27
27
|
checkoutItem: FunkitActiveCheckoutItem;
|
|
28
28
|
userId: string;
|