feat: Ipad app features and Dream Weaver for Velocity WebOS
Some checks failed
Production Readiness / backend-contracts (pull_request) Has been cancelled
Production Readiness / webos-typecheck (pull_request) Has been cancelled
Production Readiness / ipad-parse (pull_request) Has been cancelled

This commit is contained in:
Sayan Datta
2026-04-28 10:59:07 +05:30
parent 184bfa77f8
commit fefe8373ec
117 changed files with 19510 additions and 6383 deletions

View File

@@ -0,0 +1,28 @@
import Foundation
enum SentinelScope {
static let navigationTitle = "Operator Posture"
static let productFamilyName = "Sentinel"
static let availabilityBadge = "Operator posture only"
static let disabledAnalyticsCapabilities: [String] = [
"visitor counting",
"facial detections",
"sentiment scoring",
]
static let liveBackedCapabilities: [String] = [
"alert posture",
"transcription queue visibility",
"upcoming calendar pressure",
"recent operator timeline",
]
static var disabledAnalyticsSummary: String {
disabledAnalyticsCapabilities.joined(separator: ", ")
}
static var liveBackedSummary: String {
liveBackedCapabilities.joined(separator: ", ")
}
}