@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 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
@@ -22,7 +22,7 @@ export interface CheckedAssetAmount {
22
22
  maxTargetAssetAmount?: number;
23
23
  minTargetAssetAmount?: number;
24
24
  }
25
- export declare function checkAssetAmount(checkoutItem: FunkitActiveCheckoutItem, newPaymentMethodInfo: PaymentMethodInfo, finalEstimation: FunkitCheckoutQuoteResult, wagmiConfig: Config, walletAddress: Address, brokerage?: BrokerageDetails): Promise<CheckedAssetAmount>;
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;
@@ -1,4 +1,4 @@
1
- import { type AssetHoldingsMap } from '../../utils/assets';
1
+ import { type AssetHoldingsMap } from '../utils/assets';
2
2
  interface UseWalletAssetHoldingsResponse {
3
3
  data: AssetHoldingsMap | undefined;
4
4
  isLoading: boolean;