feat(diagnostics): harden ingestion and delivery

This commit is contained in:
2026-07-15 00:43:49 +02:00
parent ead4e09a60
commit b602a3acb6
42 changed files with 22428 additions and 141 deletions

12
services/diagnostics-api/test/env.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
import type { D1Migration } from "@cloudflare/vitest-pool-workers";
declare global {
namespace Cloudflare {
interface Env {
INGEST_KEY: string;
TEST_MIGRATIONS: D1Migration[];
}
}
}
export {};