@@ -8,20 +8,10 @@ use serde::{Serialize, Deserialize};
88pub enum ProxyType {
99 /// Cost-effective entry-level residential pool.
1010 Residential ,
11- /// Higher-throughput residential pool.
12- ResidentialFast ,
13- /// Static residential IPs, rotated daily.
14- ResidentialStatic ,
1511 /// 4G / 5G mobile proxies for stealth.
1612 Mobile ,
1713 /// ISP-grade / datacenter-like routing.
18- Isp ,
19- /// Premium low-latency residential pool.
20- ResidentialPremium ,
21- /// Balanced plan (cost vs. quality).
22- ResidentialCore ,
23- /// Largest, highest-quality IP pool.
24- ResidentialPlus ,
14+ Isp
2515}
2616
2717#[ derive( Parser , Debug ) ]
@@ -185,13 +175,8 @@ impl From<ProxyType> for spider_client::ProxyType {
185175 fn from ( p : ProxyType ) -> Self {
186176 match p {
187177 ProxyType :: Residential => Self :: Residential ,
188- ProxyType :: ResidentialFast => Self :: ResidentialFast ,
189- ProxyType :: ResidentialStatic => Self :: ResidentialStatic ,
190178 ProxyType :: Mobile => Self :: Mobile ,
191- ProxyType :: Isp => Self :: Isp ,
192- ProxyType :: ResidentialPremium => Self :: ResidentialPremium ,
193- ProxyType :: ResidentialCore => Self :: ResidentialCore ,
194- ProxyType :: ResidentialPlus => Self :: ResidentialPlus ,
179+ ProxyType :: Isp => Self :: Isp
195180 }
196181 }
197182}
0 commit comments