Merge branch 's3' into dev

This commit is contained in:
Owen
2026-05-08 17:05:39 -07:00
10 changed files with 1071 additions and 74 deletions

View File

@@ -446,6 +446,8 @@ export const eventStreamingDestinations = sqliteTable(
enabled: integer("enabled", { mode: "boolean" })
.notNull()
.default(true),
lastError: text("lastError"), // last send error message, null if healthy
lastErrorAt: integer("lastErrorAt"), // epoch ms of last error, null if healthy
createdAt: integer("createdAt").notNull(),
updatedAt: integer("updatedAt").notNull()
}