@unifold/connect-react-native 0.1.55 → 0.1.56
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.d.mts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -471,7 +471,7 @@ interface DepositModalProps {
|
|
|
471
471
|
enableConnectWallet?: boolean;
|
|
472
472
|
/** Enable "Pay with Apple Pay" (Coinbase headless onramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? false. */
|
|
473
473
|
enableCoinbaseApplePay?: boolean;
|
|
474
|
-
/** Enable "Deposit with Card" (fiat on-ramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
|
|
474
|
+
/** Enable "Deposit with Card" (fiat on-ramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. The backend `fiat_onramp.is_hidden` kill switch force-hides it regardless. */
|
|
475
475
|
enableFiatOnramp?: boolean;
|
|
476
476
|
/** Show "Pay with Link" (Stripe) option in the deposit menu. Overrides dashboard default. Resolves as flag ?? dashboard value ?? false. The backend `stripe_link.is_hidden` kill switch force-hides it regardless. */
|
|
477
477
|
enableStripeLink?: boolean;
|
|
@@ -671,7 +671,12 @@ interface UnifoldConnectProviderConfig {
|
|
|
671
671
|
enableConnectWallet?: boolean;
|
|
672
672
|
/** Enable "Pay with Apple Pay" (Coinbase headless onramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? false. */
|
|
673
673
|
enableCoinbaseApplePay?: boolean;
|
|
674
|
-
/**
|
|
674
|
+
/**
|
|
675
|
+
* Enable "Deposit with Card" (fiat on-ramp) option. Overrides dashboard
|
|
676
|
+
* default. Resolves as flag ?? dashboard value ?? true.
|
|
677
|
+
* Note: the backend `fiat_onramp.is_hidden` kill switch force-hides the
|
|
678
|
+
* option regardless of this flag.
|
|
679
|
+
*/
|
|
675
680
|
enableFiatOnramp?: boolean;
|
|
676
681
|
/** Stripe Link Pay tuning options (only applies when `enableStripeLink` is true). */
|
|
677
682
|
stripeLink?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -471,7 +471,7 @@ interface DepositModalProps {
|
|
|
471
471
|
enableConnectWallet?: boolean;
|
|
472
472
|
/** Enable "Pay with Apple Pay" (Coinbase headless onramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? false. */
|
|
473
473
|
enableCoinbaseApplePay?: boolean;
|
|
474
|
-
/** Enable "Deposit with Card" (fiat on-ramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
|
|
474
|
+
/** Enable "Deposit with Card" (fiat on-ramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. The backend `fiat_onramp.is_hidden` kill switch force-hides it regardless. */
|
|
475
475
|
enableFiatOnramp?: boolean;
|
|
476
476
|
/** Show "Pay with Link" (Stripe) option in the deposit menu. Overrides dashboard default. Resolves as flag ?? dashboard value ?? false. The backend `stripe_link.is_hidden` kill switch force-hides it regardless. */
|
|
477
477
|
enableStripeLink?: boolean;
|
|
@@ -671,7 +671,12 @@ interface UnifoldConnectProviderConfig {
|
|
|
671
671
|
enableConnectWallet?: boolean;
|
|
672
672
|
/** Enable "Pay with Apple Pay" (Coinbase headless onramp) option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? false. */
|
|
673
673
|
enableCoinbaseApplePay?: boolean;
|
|
674
|
-
/**
|
|
674
|
+
/**
|
|
675
|
+
* Enable "Deposit with Card" (fiat on-ramp) option. Overrides dashboard
|
|
676
|
+
* default. Resolves as flag ?? dashboard value ?? true.
|
|
677
|
+
* Note: the backend `fiat_onramp.is_hidden` kill switch force-hides the
|
|
678
|
+
* option regardless of this flag.
|
|
679
|
+
*/
|
|
675
680
|
enableFiatOnramp?: boolean;
|
|
676
681
|
/** Stripe Link Pay tuning options (only applies when `enableStripeLink` is true). */
|
|
677
682
|
stripeLink?: {
|