Files
Project_Velocity/iOS/velocity-ipad/velocity/Features/Sentinel/SentinelScope.swift
sayan 7ee51543d9
Some checks failed
Production Readiness / backend-contracts (push) Failing after 1m47s
Production Readiness / webos-typecheck (push) Successful in 1m57s
Production Readiness / ipad-parse (push) Successful in 1m32s
Merge Conflicts (#41)
Co-authored-by: Sayan Datta <sayan@Sayans-MacBook-Air.local>
Reviewed-on: #41
2026-04-28 11:32:56 +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: ", ")
}
}