fixed httpclient

This commit is contained in:
Bojan Kucera 2025-06-04 16:37:28 -04:00
parent a282dac6cd
commit 557c157228
10 changed files with 603 additions and 427 deletions

View file

@ -4,10 +4,14 @@ Write-Host "Building and installing new libraries..." -ForegroundColor Cyan
# Build order is important due to dependencies
$libs = @(
"types",
"utils",
"event-bus",
"api-client"
"types", # Base types - no dependencies
"logger", # Logging utilities - depends on types
"config", # Configuration - depends on types
"utils", # Utilities - depends on types and config
"http-client", # HTTP client - depends on types, config, logger
"postgres-client", # PostgreSQL client - depends on types, config, logger
"mongodb-client", # MongoDB client - depends on types, config, logger
"questdb-client" # QuestDB client - depends on types, config, logger
)
# Build each library in order