@funkit/connect 5.5.6 → 5.5.7
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 +12 -0
- package/dist/domains/fees.d.ts +2 -0
- package/dist/hooks/useReceiveAmountLabel.d.ts +2 -2
- package/dist/index.js +273 -130
- package/dist/utils/flags/config.d.ts +5 -1
- package/dist/wallets/walletConnectors/index.js +48 -48
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 5.5.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- df4fe59: update transaction
|
|
8
|
+
- 4e1b4d1: hardcode PM users from being blocked
|
|
9
|
+
- 993f2c9: hide unsupported payment method icons
|
|
10
|
+
- Updated dependencies [df4fe59]
|
|
11
|
+
- @funkit/api-base@1.9.3
|
|
12
|
+
- @funkit/core@2.3.25
|
|
13
|
+
- @funkit/wagmi-tools@3.0.47
|
|
14
|
+
|
|
3
15
|
## 5.5.6
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/domains/fees.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type CheckoutQuoteResponse } from '@funkit/utils';
|
|
2
2
|
import type { Config } from 'wagmi';
|
|
3
3
|
import { LoginType } from '~/providers/GeneralWalletProvider';
|
|
4
|
+
import type { RelayQuote } from '@funkit/fun-relay';
|
|
4
5
|
import type { FunkitActiveCheckoutItem } from '../providers/FunkitCheckoutContext';
|
|
5
6
|
import { PaymentMethod, type PaymentMethodInfo } from './paymentMethods';
|
|
6
7
|
export interface BrokerageDetails {
|
|
@@ -27,6 +28,7 @@ interface WalletCheckoutFees extends BaseCheckoutFees {
|
|
|
27
28
|
eoaWalletFeeToken: number;
|
|
28
29
|
nativeCurrencySymbol: string;
|
|
29
30
|
eoaWalletFeeUsd: number;
|
|
31
|
+
relayQuote: RelayQuote['metadata']['relayQuote'] | undefined;
|
|
30
32
|
}
|
|
31
33
|
interface CardCheckoutFees extends BaseCheckoutFees {
|
|
32
34
|
paymentMethod: PaymentMethod.CARD;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DirectExecutionType } from '@funkit/api-base';
|
|
2
|
-
export declare function useReceiveAmountLabel(
|
|
1
|
+
import type { DirectExecutionType } from '@funkit/api-base';
|
|
2
|
+
export declare function useReceiveAmountLabel(_: {
|
|
3
3
|
directExecutionType?: DirectExecutionType | null;
|
|
4
4
|
isSameToken?: boolean;
|
|
5
5
|
}): string;
|