Bump
All checks were successful
Build and Release / build-and-release (push) Successful in 12m44s

This commit is contained in:
Bryan1029384756
2026-04-18 17:30:53 -05:00
parent 593eaba82e
commit 43cfbe65f3
22 changed files with 1244 additions and 36 deletions

View File

@@ -119,6 +119,10 @@ export default defineSchema({
isDeafened: v.boolean(),
isScreenSharing: v.boolean(),
isServerMuted: v.boolean(),
// Webcam publish state — optional so existing rows still
// validate. Undefined means "unknown / not reported yet",
// which the UI treats the same as `false`.
isCameraOn: v.optional(v.boolean()),
watchingStream: v.optional(v.id("userProfiles")),
lastHeartbeat: v.optional(v.number()),
})