fix(stripe): correcting webhook

This commit is contained in:
2025-08-04 17:15:13 -04:00
parent 18532963a8
commit ea8efd21a1
6 changed files with 134 additions and 113 deletions

View File

@@ -2,7 +2,7 @@ using Hutopy.Modules.Creators.Contracts;
namespace Hutopy.Modules.Tipping.Contracts;
public interface ITipProcessor
internal interface ITipProcessor
{
Task<TipCheckoutSession> CreateCheckoutSessionAsync(
Guid tipId,
@@ -10,7 +10,7 @@ public interface ITipProcessor
decimal amount,
string currency,
string message,
string successUrl,
string cancelUrl,
Uri successUrl,
Uri cancelUrl,
CancellationToken ct = default);
}