From f53468b8a3bb57fcbd9a9d7c32a633ecac9dc383 Mon Sep 17 00:00:00 2001 From: Mateusz Majchrzak Date: Tue, 11 Jun 2024 10:49:42 +0200 Subject: [PATCH 1/2] chore: add custom exit button config --- src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.ts b/src/types.ts index 1cf4790..b36d5dd 100644 --- a/src/types.ts +++ b/src/types.ts @@ -80,6 +80,7 @@ export interface IHostConfig { offrampWebhookV3Url?: TWebhookStatusUrl; useSendCryptoCallback?: boolean; paymentMethodType?: PaymentMethodType; + customExitButton?: boolean; } export interface IHostConfigWithSdkParams extends Omit { From 23b19dcbf8e79901b16caecb3e2e75c45d5246dd Mon Sep 17 00:00:00 2001 From: Mateusz Majchrzak Date: Tue, 11 Jun 2024 10:59:05 +0200 Subject: [PATCH 2/2] chore: rename parameter --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index b36d5dd..d0547d9 100644 --- a/src/types.ts +++ b/src/types.ts @@ -80,7 +80,7 @@ export interface IHostConfig { offrampWebhookV3Url?: TWebhookStatusUrl; useSendCryptoCallback?: boolean; paymentMethodType?: PaymentMethodType; - customExitButton?: boolean; + hideExitButton?: boolean; } export interface IHostConfigWithSdkParams extends Omit {