Add support for more proxies (#3591)

Co-authored-by: Suchintan Singh <suchintan@skyvern.com>
This commit is contained in:
Suchintan
2025-10-02 11:12:06 -04:00
committed by GitHub
parent dc2a1e8f55
commit 91b67f500c
5 changed files with 73 additions and 1 deletions

View File

@@ -43,6 +43,12 @@ export const ProxyLocation = {
ResidentialZA: "RESIDENTIAL_ZA",
ResidentialAR: "RESIDENTIAL_AR",
ResidentialAU: "RESIDENTIAL_AU",
ResidentialBR: "RESIDENTIAL_BR",
ResidentialTR: "RESIDENTIAL_TR",
ResidentialCA: "RESIDENTIAL_CA",
ResidentialMX: "RESIDENTIAL_MX",
ResidentialIT: "RESIDENTIAL_IT",
ResidentialNL: "RESIDENTIAL_NL",
ResidentialISP: "RESIDENTIAL_ISP",
None: "NONE",
} as const;

View File

@@ -30,6 +30,12 @@ function ProxySelector({ value, onChange, className }: Props) {
<SelectItem value={ProxyLocation.ResidentialAU}>
Residential (Australia)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialBR}>
Residential (Brazil)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialCA}>
Residential (Canada)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialFR}>
Residential (France)
</SelectItem>
@@ -42,9 +48,18 @@ function ProxySelector({ value, onChange, className }: Props) {
<SelectItem value={ProxyLocation.ResidentialIE}>
Residential (Ireland)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialIT}>
Residential (Italy)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialJP}>
Residential (Japan)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialMX}>
Residential (Mexico)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialNL}>
Residential (Netherlands)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialNZ}>
Residential (New Zealand)
</SelectItem>
@@ -54,6 +69,9 @@ function ProxySelector({ value, onChange, className }: Props) {
<SelectItem value={ProxyLocation.ResidentialES}>
Residential (Spain)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialTR}>
Residential (Turkey)
</SelectItem>
<SelectItem value={ProxyLocation.ResidentialGB}>
Residential (United Kingdom)
</SelectItem>