fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k)

This commit is contained in:
jamesread
2025-10-27 15:49:17 +00:00
parent 7483350276
commit 7d020873d6
3028 changed files with 480395 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export type ID = number | string;
export interface WithId {
id: ID;
}