mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 11:41:34 +00:00
* feat(ios): add private HealthKit summaries * fix(ios): satisfy Health settings lint * chore(ios): sync Health localization artifacts * chore(ios): refresh generated localization and docs * fix(ios): reject partial Health history * chore(ios): sync Health string catalogs * fix(ios): bridge Health authorization dates * fix(ios): scope Health summaries to today
21 lines
349 B
Swift
21 lines
349 B
Swift
import Foundation
|
|
|
|
public enum OpenClawCapability: String, Codable, Sendable {
|
|
case canvas
|
|
case browser
|
|
case camera
|
|
case screen
|
|
case computer
|
|
case voiceWake
|
|
case talk
|
|
case location
|
|
case device
|
|
case watch
|
|
case photos
|
|
case contacts
|
|
case calendar
|
|
case reminders
|
|
case motion
|
|
case health
|
|
}
|