Files
Project_Velocity/iOS/velocity-ipad/velocity/Features/Sentinel/SentinelScope.swift
Sayan Datta fefe8373ec
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
feat: Ipad app features and Dream Weaver for Velocity WebOS
2026-04-28 10:59:07 +05:30

29 lines
775 B
Swift

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: ", ")
}
}