feat(cli): expose safari-ios browser profile + bump to 0.5.5

This commit is contained in:
Valerio 2026-04-23 13:32:55 +02:00
parent e1af2da509
commit 98a177dec4
4 changed files with 19 additions and 8 deletions

View file

@ -351,6 +351,9 @@ enum OutputFormat {
enum Browser {
Chrome,
Firefox,
/// Safari iOS 26. Pair with a country-matched residential proxy for sites
/// that reject non-mobile profiles.
SafariIos,
Random,
}
@ -377,6 +380,7 @@ impl From<Browser> for BrowserProfile {
match b {
Browser::Chrome => BrowserProfile::Chrome,
Browser::Firefox => BrowserProfile::Firefox,
Browser::SafariIos => BrowserProfile::SafariIos,
Browser::Random => BrowserProfile::Random,
}
}