Skip to content

Commit de3c275

Browse files
Merge remote-tracking branch 'origin/main' into stlc/promote-next
2 parents 23356b8 + bb00cda commit de3c275

7 files changed

Lines changed: 56 additions & 14 deletions

src/kernel/types/proxy.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ class ConfigRegistryManagedProxyCreateConfigResidentialProxyConfig(BaseModel):
5656
"""
5757

5858
country: Optional[str] = None
59-
"""ISO 3166 country code."""
59+
"""ISO 3166 country code.
60+
61+
If omitted, the proxy uses the global pool without country targeting.
62+
"""
6063

6164
os: Optional[Literal["windows", "macos", "android"]] = None
6265
"""Operating system of the residential device."""
@@ -75,7 +78,10 @@ class ConfigRegistryManagedProxyCreateConfigMobileProxyConfig(BaseModel):
7578
"""Provider city alias. Mobile carrier routing can make observed geo vary."""
7679

7780
country: Optional[str] = None
78-
"""ISO 3166 country code"""
81+
"""ISO 3166 country code.
82+
83+
If omitted, the proxy uses the global pool without country targeting.
84+
"""
7985

8086
state: Optional[str] = None
8187
"""US-only state code. Mobile carrier routing can make observed geo vary."""

src/kernel/types/proxy_check_response.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ class ConfigResidentialProxyConfig(BaseModel):
4747
"""
4848

4949
country: Optional[str] = None
50-
"""ISO 3166 country code."""
50+
"""ISO 3166 country code.
51+
52+
If omitted, the proxy uses the global pool without country targeting.
53+
"""
5154

5255
os: Optional[Literal["windows", "macos", "android"]] = None
5356
"""Operating system of the residential device."""
@@ -66,7 +69,10 @@ class ConfigMobileProxyConfig(BaseModel):
6669
"""Provider city alias. Mobile carrier routing can make observed geo vary."""
6770

6871
country: Optional[str] = None
69-
"""ISO 3166 country code"""
72+
"""ISO 3166 country code.
73+
74+
If omitted, the proxy uses the global pool without country targeting.
75+
"""
7076

7177
state: Optional[str] = None
7278
"""US-only state code. Mobile carrier routing can make observed geo vary."""

src/kernel/types/proxy_create_params.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ class ConfigResidentialProxyConfig(TypedDict, total=False):
6969
"""
7070

7171
country: str
72-
"""ISO 3166 country code."""
72+
"""ISO 3166 country code.
73+
74+
If omitted, the proxy uses the global pool without country targeting.
75+
"""
7376

7477
os: Literal["windows", "macos", "android"]
7578
"""Operating system of the residential device."""
@@ -88,7 +91,10 @@ class ConfigMobileProxyConfig(TypedDict, total=False):
8891
"""Provider city alias. Mobile carrier routing can make observed geo vary."""
8992

9093
country: str
91-
"""ISO 3166 country code"""
94+
"""ISO 3166 country code.
95+
96+
If omitted, the proxy uses the global pool without country targeting.
97+
"""
9298

9399
state: str
94100
"""US-only state code. Mobile carrier routing can make observed geo vary."""

src/kernel/types/proxy_create_response.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ class ConfigResidentialProxyConfig(BaseModel):
4747
"""
4848

4949
country: Optional[str] = None
50-
"""ISO 3166 country code."""
50+
"""ISO 3166 country code.
51+
52+
If omitted, the proxy uses the global pool without country targeting.
53+
"""
5154

5255
os: Optional[Literal["windows", "macos", "android"]] = None
5356
"""Operating system of the residential device."""
@@ -66,7 +69,10 @@ class ConfigMobileProxyConfig(BaseModel):
6669
"""Provider city alias. Mobile carrier routing can make observed geo vary."""
6770

6871
country: Optional[str] = None
69-
"""ISO 3166 country code"""
72+
"""ISO 3166 country code.
73+
74+
If omitted, the proxy uses the global pool without country targeting.
75+
"""
7076

7177
state: Optional[str] = None
7278
"""US-only state code. Mobile carrier routing can make observed geo vary."""

src/kernel/types/proxy_list_response.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ class ConfigResidentialProxyConfig(BaseModel):
4747
"""
4848

4949
country: Optional[str] = None
50-
"""ISO 3166 country code."""
50+
"""ISO 3166 country code.
51+
52+
If omitted, the proxy uses the global pool without country targeting.
53+
"""
5154

5255
os: Optional[Literal["windows", "macos", "android"]] = None
5356
"""Operating system of the residential device."""
@@ -66,7 +69,10 @@ class ConfigMobileProxyConfig(BaseModel):
6669
"""Provider city alias. Mobile carrier routing can make observed geo vary."""
6770

6871
country: Optional[str] = None
69-
"""ISO 3166 country code"""
72+
"""ISO 3166 country code.
73+
74+
If omitted, the proxy uses the global pool without country targeting.
75+
"""
7076

7177
state: Optional[str] = None
7278
"""US-only state code. Mobile carrier routing can make observed geo vary."""

src/kernel/types/proxy_retrieve_response.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ class ConfigResidentialProxyConfig(BaseModel):
4747
"""
4848

4949
country: Optional[str] = None
50-
"""ISO 3166 country code."""
50+
"""ISO 3166 country code.
51+
52+
If omitted, the proxy uses the global pool without country targeting.
53+
"""
5154

5255
os: Optional[Literal["windows", "macos", "android"]] = None
5356
"""Operating system of the residential device."""
@@ -66,7 +69,10 @@ class ConfigMobileProxyConfig(BaseModel):
6669
"""Provider city alias. Mobile carrier routing can make observed geo vary."""
6770

6871
country: Optional[str] = None
69-
"""ISO 3166 country code"""
72+
"""ISO 3166 country code.
73+
74+
If omitted, the proxy uses the global pool without country targeting.
75+
"""
7076

7177
state: Optional[str] = None
7278
"""US-only state code. Mobile carrier routing can make observed geo vary."""

src/kernel/types/proxy_update_response.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ class ConfigResidentialProxyConfig(BaseModel):
4747
"""
4848

4949
country: Optional[str] = None
50-
"""ISO 3166 country code."""
50+
"""ISO 3166 country code.
51+
52+
If omitted, the proxy uses the global pool without country targeting.
53+
"""
5154

5255
os: Optional[Literal["windows", "macos", "android"]] = None
5356
"""Operating system of the residential device."""
@@ -66,7 +69,10 @@ class ConfigMobileProxyConfig(BaseModel):
6669
"""Provider city alias. Mobile carrier routing can make observed geo vary."""
6770

6871
country: Optional[str] = None
69-
"""ISO 3166 country code"""
72+
"""ISO 3166 country code.
73+
74+
If omitted, the proxy uses the global pool without country targeting.
75+
"""
7076

7177
state: Optional[str] = None
7278
"""US-only state code. Mobile carrier routing can make observed geo vary."""

0 commit comments

Comments
 (0)