forked from sagnik/Project_Velocity
#38 Ipad app production readiness, Colony orchestration, Social posting Co-authored-by: Sayan Datta <sayan@Sayans-MacBook-Air.local> Reviewed-on: sagnik/Project_Velocity#44
32 lines
865 B
Swift
32 lines
865 B
Swift
import Foundation
|
|
|
|
enum SentinelScope {
|
|
static let navigationTitle = "Sentinel"
|
|
static let productFamilyName = "Sentinel"
|
|
static let availabilityBadge = "Live perception analytics"
|
|
|
|
static let disabledAnalyticsCapabilities: [String] = [
|
|
"visitor counting",
|
|
"facial detections",
|
|
"sentiment scoring",
|
|
]
|
|
|
|
static let liveBackedCapabilities: [String] = [
|
|
"visitor counting",
|
|
"sentiment distribution",
|
|
"journey intelligence",
|
|
"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: ", ")
|
|
}
|
|
}
|