hyperbrowser 0.38.0__py3-none-any.whl → 0.39.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of hyperbrowser might be problematic. Click here for more details.
- hyperbrowser/models/session.py +8 -0
- {hyperbrowser-0.38.0.dist-info → hyperbrowser-0.39.0.dist-info}/METADATA +1 -1
- {hyperbrowser-0.38.0.dist-info → hyperbrowser-0.39.0.dist-info}/RECORD +5 -5
- {hyperbrowser-0.38.0.dist-info → hyperbrowser-0.39.0.dist-info}/WHEEL +1 -1
- {hyperbrowser-0.38.0.dist-info → hyperbrowser-0.39.0.dist-info}/LICENSE +0 -0
hyperbrowser/models/session.py
CHANGED
|
@@ -127,6 +127,11 @@ class CreateSessionProfile(BaseModel):
|
|
|
127
127
|
)
|
|
128
128
|
|
|
129
129
|
|
|
130
|
+
class ImageCaptchaParam(BaseModel):
|
|
131
|
+
image_selector: str = Field(serialization_alias="imageSelector")
|
|
132
|
+
input_selector: str = Field(serialization_alias="inputSelector")
|
|
133
|
+
|
|
134
|
+
|
|
130
135
|
class CreateSessionParams(BaseModel):
|
|
131
136
|
"""
|
|
132
137
|
Parameters for creating a new browser session.
|
|
@@ -181,6 +186,9 @@ class CreateSessionParams(BaseModel):
|
|
|
181
186
|
save_downloads: Optional[bool] = Field(
|
|
182
187
|
default=None, serialization_alias="saveDownloads"
|
|
183
188
|
)
|
|
189
|
+
image_captcha_params: Optional[List[ImageCaptchaParam]] = Field(
|
|
190
|
+
default=None, serialization_alias="imageCaptchaParams"
|
|
191
|
+
)
|
|
184
192
|
|
|
185
193
|
|
|
186
194
|
class SessionRecording(BaseModel):
|
|
@@ -34,7 +34,7 @@ hyperbrowser/models/extension.py,sha256=nXjKXKt9R7RxyZ4hd3EvfqZsEGy_ufh1r5j2mqCL
|
|
|
34
34
|
hyperbrowser/models/extract.py,sha256=DXg0HtO44plAtcFOmqUpdp9P93tq45U2fLWxn5jdjAw,1745
|
|
35
35
|
hyperbrowser/models/profile.py,sha256=KRb_LNxxW00AsD_thzzthFS51vInJawt1RcoNz4Q9i8,1322
|
|
36
36
|
hyperbrowser/models/scrape.py,sha256=iMsUuMx3UFtSci6TVUpcH5ytbgwiImIXjviVcGZ_gBQ,5048
|
|
37
|
-
hyperbrowser/models/session.py,sha256=
|
|
37
|
+
hyperbrowser/models/session.py,sha256=rhDRb-HkjdXsfzjUg4VKOzaGMoHxcG38947bhT_jmiU,7044
|
|
38
38
|
hyperbrowser/tools/__init__.py,sha256=L-2xveBbSuIBQBQhJmXGCLNYEUq_XHDdgz_gBAsmQZo,4605
|
|
39
39
|
hyperbrowser/tools/anthropic.py,sha256=bo8jn2ROHCp_hpX1_cjkCk7qU0LmuBr_gvlvM0f5OMc,2699
|
|
40
40
|
hyperbrowser/tools/openai.py,sha256=YkdONf2CYuuJei2019a5cpCcZGn8g5bH-PnZ4YY7c4U,3514
|
|
@@ -42,7 +42,7 @@ hyperbrowser/tools/schema.py,sha256=YFUAoQjx_SpjezS3UQdTCCn4xMdN3CgEeKAlulkIATc,
|
|
|
42
42
|
hyperbrowser/transport/async_transport.py,sha256=6HKoeM5TutIqraEscEWobvSPWF3iVKh2hPflGNKwykw,4128
|
|
43
43
|
hyperbrowser/transport/base.py,sha256=ildpMrDiM8nvrSGrH2LTOafmB17T7PQB_NQ1ODA378U,1703
|
|
44
44
|
hyperbrowser/transport/sync.py,sha256=aUVpxWF8sqSycLNKxVNEZvlsZSoqc1eHgPK1Y1QA1u8,3422
|
|
45
|
-
hyperbrowser-0.
|
|
46
|
-
hyperbrowser-0.
|
|
47
|
-
hyperbrowser-0.
|
|
48
|
-
hyperbrowser-0.
|
|
45
|
+
hyperbrowser-0.39.0.dist-info/LICENSE,sha256=6rUGKlyKb_1ZAH7h7YITYAAUNFN3MNGGKCyfrw49NLE,1071
|
|
46
|
+
hyperbrowser-0.39.0.dist-info/METADATA,sha256=rs329AZHJ-LrRSOPW2lSrRAts7yQd8pCKfEOSvRwBfo,3471
|
|
47
|
+
hyperbrowser-0.39.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
48
|
+
hyperbrowser-0.39.0.dist-info/RECORD,,
|
|
File without changes
|