feat: continued wip on supporting transactions

This commit is contained in:
Stevan Freeborn
2026-03-09 04:29:01 -05:00
parent 8d68bfc22a
commit 3866030eae
33 changed files with 1335 additions and 67 deletions
-2
View File
@@ -1,5 +1,3 @@
using Going.Plaid.Converters;
var builder = WebApplication.CreateBuilder(args);
builder.AddServiceDefaults();
@@ -1,6 +1,3 @@
using Going.Plaid;
using Going.Plaid.Entity;
namespace FiscalOS.API.Transactions.FireWebhook;
internal static class Endpoint
+2 -1
View File
@@ -21,7 +21,6 @@ global using FiscalOS.Core.Authentication;
global using FiscalOS.Core.Identity;
global using FiscalOS.Core.Queuing;
global using FiscalOS.Core.Security;
global using FiscalOS.Core.Transactions;
global using FiscalOS.Infra.Accounts.Plaid;
global using FiscalOS.Infra.Authentication;
global using FiscalOS.Infra.Data;
@@ -30,6 +29,8 @@ global using FiscalOS.Infra.Transactions.Plaid;
global using FiscalOS.ServiceDefaults;
global using Going.Plaid;
global using Going.Plaid.Converters;
global using Going.Plaid.Entity;
global using Going.Plaid.Webhook;
global using Microsoft.AspNetCore.Mvc;