fix: improve api logging (#2820)

This commit is contained in:
David Nguyen
2026-05-15 13:41:35 +10:00
committed by GitHub
parent 8f5bdef384
commit 8f6be474a9
2 changed files with 72 additions and 30 deletions
+5
View File
@@ -26,4 +26,9 @@ export type BaseApiLog = Partial<RootApiLog> & {
export type TrpcApiLog = BaseApiLog & {
trpcMiddleware: string;
unverifiedTeamId?: number | null;
/**
* Used to differentiate between batched TRPC requests sharing the same
* underlying HTTP `requestId`.
*/
nonBatchedRequestId?: string;
};