anchorbrowser 0.6.2__py3-none-any.whl → 0.7.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.
Files changed (32) hide show
  1. anchorbrowser/_client.py +1 -2
  2. anchorbrowser/_version.py +1 -1
  3. anchorbrowser/resources/extensions.py +1 -278
  4. anchorbrowser/resources/sessions/agent/files.py +0 -83
  5. anchorbrowser/resources/sessions/clipboard.py +0 -79
  6. anchorbrowser/resources/sessions/mouse.py +1 -114
  7. anchorbrowser/resources/sessions/recordings/recordings.py +0 -158
  8. anchorbrowser/resources/sessions/sessions.py +0 -246
  9. anchorbrowser/resources/task.py +8 -8
  10. anchorbrowser/types/__init__.py +2 -8
  11. anchorbrowser/types/sessions/__init__.py +0 -5
  12. anchorbrowser/types/sessions/agent/__init__.py +0 -1
  13. anchorbrowser/types/task_run_params.py +2 -2
  14. anchorbrowser/types/task_run_response.py +2 -2
  15. {anchorbrowser-0.6.2.dist-info → anchorbrowser-0.7.0.dist-info}/METADATA +1 -1
  16. {anchorbrowser-0.6.2.dist-info → anchorbrowser-0.7.0.dist-info}/RECORD +18 -32
  17. anchorbrowser/types/extension_delete_response.py +0 -12
  18. anchorbrowser/types/extension_retrieve_response.py +0 -27
  19. anchorbrowser/types/extension_upload_params.py +0 -17
  20. anchorbrowser/types/extension_upload_response.py +0 -31
  21. anchorbrowser/types/session_copy_response.py +0 -12
  22. anchorbrowser/types/session_list_pages_response.py +0 -25
  23. anchorbrowser/types/session_paste_params.py +0 -12
  24. anchorbrowser/types/session_paste_response.py +0 -11
  25. anchorbrowser/types/sessions/agent/file_list_response.py +0 -32
  26. anchorbrowser/types/sessions/clipboard_get_response.py +0 -16
  27. anchorbrowser/types/sessions/mouse_double_click_params.py +0 -18
  28. anchorbrowser/types/sessions/mouse_double_click_response.py +0 -11
  29. anchorbrowser/types/sessions/recording_pause_response.py +0 -12
  30. anchorbrowser/types/sessions/recording_resume_response.py +0 -12
  31. {anchorbrowser-0.6.2.dist-info → anchorbrowser-0.7.0.dist-info}/WHEEL +0 -0
  32. {anchorbrowser-0.6.2.dist-info → anchorbrowser-0.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -25,7 +25,6 @@ from .mouse import (
25
25
  )
26
26
  from ...types import (
27
27
  session_goto_params,
28
- session_paste_params,
29
28
  session_create_params,
30
29
  session_scroll_params,
31
30
  session_upload_file_params,
@@ -83,14 +82,11 @@ from .recordings.recordings import (
83
82
  RecordingsResourceWithStreamingResponse,
84
83
  AsyncRecordingsResourceWithStreamingResponse,
85
84
  )
86
- from ...types.session_copy_response import SessionCopyResponse
87
85
  from ...types.session_goto_response import SessionGotoResponse
88
- from ...types.session_paste_response import SessionPasteResponse
89
86
  from ...types.session_create_response import SessionCreateResponse
90
87
  from ...types.session_scroll_response import SessionScrollResponse
91
88
  from ...types.shared.success_response import SuccessResponse
92
89
  from ...types.session_retrieve_response import SessionRetrieveResponse
93
- from ...types.session_list_pages_response import SessionListPagesResponse
94
90
  from ...types.session_upload_file_response import SessionUploadFileResponse
95
91
  from ...types.session_drag_and_drop_response import SessionDragAndDropResponse
96
92
  from ...types.session_retrieve_downloads_response import SessionRetrieveDownloadsResponse
@@ -272,39 +268,6 @@ class SessionsResource(SyncAPIResource):
272
268
  cast_to=SuccessResponse,
273
269
  )
274
270
 
275
- def copy(
276
- self,
277
- session_id: str,
278
- *,
279
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
280
- # The extra values given here take precedence over values defined on the client or passed to this method.
281
- extra_headers: Headers | None = None,
282
- extra_query: Query | None = None,
283
- extra_body: Body | None = None,
284
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
285
- ) -> SessionCopyResponse:
286
- """
287
- Copies the currently selected text to the clipboard
288
-
289
- Args:
290
- extra_headers: Send extra headers
291
-
292
- extra_query: Add additional query parameters to the request
293
-
294
- extra_body: Add additional JSON properties to the request
295
-
296
- timeout: Override the client-level default timeout for this request, in seconds
297
- """
298
- if not session_id:
299
- raise ValueError(f"Expected a non-empty value for `session_id` but received {session_id!r}")
300
- return self._post(
301
- f"/v1/sessions/{session_id}/copy",
302
- options=make_request_options(
303
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
304
- ),
305
- cast_to=SessionCopyResponse,
306
- )
307
-
308
271
  def drag_and_drop(
309
272
  self,
310
273
  session_id: str,
@@ -400,76 +363,6 @@ class SessionsResource(SyncAPIResource):
400
363
  cast_to=SessionGotoResponse,
401
364
  )
402
365
 
403
- def list_pages(
404
- self,
405
- session_id: str,
406
- *,
407
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
408
- # The extra values given here take precedence over values defined on the client or passed to this method.
409
- extra_headers: Headers | None = None,
410
- extra_query: Query | None = None,
411
- extra_body: Body | None = None,
412
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
413
- ) -> SessionListPagesResponse:
414
- """
415
- Retrieves a list of pages associated with a specific browser session.
416
-
417
- Args:
418
- extra_headers: Send extra headers
419
-
420
- extra_query: Add additional query parameters to the request
421
-
422
- extra_body: Add additional JSON properties to the request
423
-
424
- timeout: Override the client-level default timeout for this request, in seconds
425
- """
426
- if not session_id:
427
- raise ValueError(f"Expected a non-empty value for `session_id` but received {session_id!r}")
428
- return self._get(
429
- f"/v1/sessions/{session_id}/pages",
430
- options=make_request_options(
431
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
432
- ),
433
- cast_to=SessionListPagesResponse,
434
- )
435
-
436
- def paste(
437
- self,
438
- session_id: str,
439
- *,
440
- text: str,
441
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
442
- # The extra values given here take precedence over values defined on the client or passed to this method.
443
- extra_headers: Headers | None = None,
444
- extra_query: Query | None = None,
445
- extra_body: Body | None = None,
446
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
447
- ) -> SessionPasteResponse:
448
- """
449
- Pastes text at the current cursor position
450
-
451
- Args:
452
- text: Text to paste
453
-
454
- extra_headers: Send extra headers
455
-
456
- extra_query: Add additional query parameters to the request
457
-
458
- extra_body: Add additional JSON properties to the request
459
-
460
- timeout: Override the client-level default timeout for this request, in seconds
461
- """
462
- if not session_id:
463
- raise ValueError(f"Expected a non-empty value for `session_id` but received {session_id!r}")
464
- return self._post(
465
- f"/v1/sessions/{session_id}/paste",
466
- body=maybe_transform({"text": text}, session_paste_params.SessionPasteParams),
467
- options=make_request_options(
468
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
469
- ),
470
- cast_to=SessionPasteResponse,
471
- )
472
-
473
366
  def retrieve_downloads(
474
367
  self,
475
368
  session_id: str,
@@ -824,39 +717,6 @@ class AsyncSessionsResource(AsyncAPIResource):
824
717
  cast_to=SuccessResponse,
825
718
  )
826
719
 
827
- async def copy(
828
- self,
829
- session_id: str,
830
- *,
831
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
832
- # The extra values given here take precedence over values defined on the client or passed to this method.
833
- extra_headers: Headers | None = None,
834
- extra_query: Query | None = None,
835
- extra_body: Body | None = None,
836
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
837
- ) -> SessionCopyResponse:
838
- """
839
- Copies the currently selected text to the clipboard
840
-
841
- Args:
842
- extra_headers: Send extra headers
843
-
844
- extra_query: Add additional query parameters to the request
845
-
846
- extra_body: Add additional JSON properties to the request
847
-
848
- timeout: Override the client-level default timeout for this request, in seconds
849
- """
850
- if not session_id:
851
- raise ValueError(f"Expected a non-empty value for `session_id` but received {session_id!r}")
852
- return await self._post(
853
- f"/v1/sessions/{session_id}/copy",
854
- options=make_request_options(
855
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
856
- ),
857
- cast_to=SessionCopyResponse,
858
- )
859
-
860
720
  async def drag_and_drop(
861
721
  self,
862
722
  session_id: str,
@@ -952,76 +812,6 @@ class AsyncSessionsResource(AsyncAPIResource):
952
812
  cast_to=SessionGotoResponse,
953
813
  )
954
814
 
955
- async def list_pages(
956
- self,
957
- session_id: str,
958
- *,
959
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
960
- # The extra values given here take precedence over values defined on the client or passed to this method.
961
- extra_headers: Headers | None = None,
962
- extra_query: Query | None = None,
963
- extra_body: Body | None = None,
964
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
965
- ) -> SessionListPagesResponse:
966
- """
967
- Retrieves a list of pages associated with a specific browser session.
968
-
969
- Args:
970
- extra_headers: Send extra headers
971
-
972
- extra_query: Add additional query parameters to the request
973
-
974
- extra_body: Add additional JSON properties to the request
975
-
976
- timeout: Override the client-level default timeout for this request, in seconds
977
- """
978
- if not session_id:
979
- raise ValueError(f"Expected a non-empty value for `session_id` but received {session_id!r}")
980
- return await self._get(
981
- f"/v1/sessions/{session_id}/pages",
982
- options=make_request_options(
983
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
984
- ),
985
- cast_to=SessionListPagesResponse,
986
- )
987
-
988
- async def paste(
989
- self,
990
- session_id: str,
991
- *,
992
- text: str,
993
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
994
- # The extra values given here take precedence over values defined on the client or passed to this method.
995
- extra_headers: Headers | None = None,
996
- extra_query: Query | None = None,
997
- extra_body: Body | None = None,
998
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
999
- ) -> SessionPasteResponse:
1000
- """
1001
- Pastes text at the current cursor position
1002
-
1003
- Args:
1004
- text: Text to paste
1005
-
1006
- extra_headers: Send extra headers
1007
-
1008
- extra_query: Add additional query parameters to the request
1009
-
1010
- extra_body: Add additional JSON properties to the request
1011
-
1012
- timeout: Override the client-level default timeout for this request, in seconds
1013
- """
1014
- if not session_id:
1015
- raise ValueError(f"Expected a non-empty value for `session_id` but received {session_id!r}")
1016
- return await self._post(
1017
- f"/v1/sessions/{session_id}/paste",
1018
- body=await async_maybe_transform({"text": text}, session_paste_params.SessionPasteParams),
1019
- options=make_request_options(
1020
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1021
- ),
1022
- cast_to=SessionPasteResponse,
1023
- )
1024
-
1025
815
  async def retrieve_downloads(
1026
816
  self,
1027
817
  session_id: str,
@@ -1215,21 +1005,12 @@ class SessionsResourceWithRawResponse:
1215
1005
  self.delete = to_raw_response_wrapper(
1216
1006
  sessions.delete,
1217
1007
  )
1218
- self.copy = to_raw_response_wrapper(
1219
- sessions.copy,
1220
- )
1221
1008
  self.drag_and_drop = to_raw_response_wrapper(
1222
1009
  sessions.drag_and_drop,
1223
1010
  )
1224
1011
  self.goto = to_raw_response_wrapper(
1225
1012
  sessions.goto,
1226
1013
  )
1227
- self.list_pages = to_raw_response_wrapper(
1228
- sessions.list_pages,
1229
- )
1230
- self.paste = to_raw_response_wrapper(
1231
- sessions.paste,
1232
- )
1233
1014
  self.retrieve_downloads = to_raw_response_wrapper(
1234
1015
  sessions.retrieve_downloads,
1235
1016
  )
@@ -1282,21 +1063,12 @@ class AsyncSessionsResourceWithRawResponse:
1282
1063
  self.delete = async_to_raw_response_wrapper(
1283
1064
  sessions.delete,
1284
1065
  )
1285
- self.copy = async_to_raw_response_wrapper(
1286
- sessions.copy,
1287
- )
1288
1066
  self.drag_and_drop = async_to_raw_response_wrapper(
1289
1067
  sessions.drag_and_drop,
1290
1068
  )
1291
1069
  self.goto = async_to_raw_response_wrapper(
1292
1070
  sessions.goto,
1293
1071
  )
1294
- self.list_pages = async_to_raw_response_wrapper(
1295
- sessions.list_pages,
1296
- )
1297
- self.paste = async_to_raw_response_wrapper(
1298
- sessions.paste,
1299
- )
1300
1072
  self.retrieve_downloads = async_to_raw_response_wrapper(
1301
1073
  sessions.retrieve_downloads,
1302
1074
  )
@@ -1348,21 +1120,12 @@ class SessionsResourceWithStreamingResponse:
1348
1120
  self.delete = to_streamed_response_wrapper(
1349
1121
  sessions.delete,
1350
1122
  )
1351
- self.copy = to_streamed_response_wrapper(
1352
- sessions.copy,
1353
- )
1354
1123
  self.drag_and_drop = to_streamed_response_wrapper(
1355
1124
  sessions.drag_and_drop,
1356
1125
  )
1357
1126
  self.goto = to_streamed_response_wrapper(
1358
1127
  sessions.goto,
1359
1128
  )
1360
- self.list_pages = to_streamed_response_wrapper(
1361
- sessions.list_pages,
1362
- )
1363
- self.paste = to_streamed_response_wrapper(
1364
- sessions.paste,
1365
- )
1366
1129
  self.retrieve_downloads = to_streamed_response_wrapper(
1367
1130
  sessions.retrieve_downloads,
1368
1131
  )
@@ -1414,21 +1177,12 @@ class AsyncSessionsResourceWithStreamingResponse:
1414
1177
  self.delete = async_to_streamed_response_wrapper(
1415
1178
  sessions.delete,
1416
1179
  )
1417
- self.copy = async_to_streamed_response_wrapper(
1418
- sessions.copy,
1419
- )
1420
1180
  self.drag_and_drop = async_to_streamed_response_wrapper(
1421
1181
  sessions.drag_and_drop,
1422
1182
  )
1423
1183
  self.goto = async_to_streamed_response_wrapper(
1424
1184
  sessions.goto,
1425
1185
  )
1426
- self.list_pages = async_to_streamed_response_wrapper(
1427
- sessions.list_pages,
1428
- )
1429
- self.paste = async_to_streamed_response_wrapper(
1430
- sessions.paste,
1431
- )
1432
1186
  self.retrieve_downloads = async_to_streamed_response_wrapper(
1433
1187
  sessions.retrieve_downloads,
1434
1188
  )
@@ -19,7 +19,7 @@ from .._response import (
19
19
  async_to_streamed_response_wrapper,
20
20
  )
21
21
  from .._base_client import make_request_options
22
- from ..types.task_run_response import RunExecuteResponse
22
+ from ..types.task_run_response import TaskRunResponse
23
23
  from ..types.task_list_response import TaskListResponse
24
24
  from ..types.task_create_response import TaskCreateResponse
25
25
 
@@ -168,7 +168,7 @@ class TaskResource(SyncAPIResource):
168
168
  extra_query: Query | None = None,
169
169
  extra_body: Body | None = None,
170
170
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
171
- ) -> RunExecuteResponse:
171
+ ) -> TaskRunResponse:
172
172
  """Executes a task in a browser session.
173
173
 
174
174
  The task can be run with a specific
@@ -203,19 +203,19 @@ class TaskResource(SyncAPIResource):
203
203
  body=maybe_transform(
204
204
  {
205
205
  "task_id": task_id,
206
- "async_": async_,
206
+ "async": async_,
207
207
  "cleanup_sessions": cleanup_sessions,
208
208
  "inputs": inputs,
209
209
  "override_browser_configuration": override_browser_configuration,
210
210
  "session_id": session_id,
211
211
  "version": version,
212
212
  },
213
- task_run_params.RunExecuteParams,
213
+ task_run_params.TaskRunParams,
214
214
  ),
215
215
  options=make_request_options(
216
216
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
217
217
  ),
218
- cast_to=RunExecuteResponse,
218
+ cast_to=TaskRunResponse,
219
219
  )
220
220
 
221
221
 
@@ -361,7 +361,7 @@ class AsyncTaskResource(AsyncAPIResource):
361
361
  extra_query: Query | None = None,
362
362
  extra_body: Body | None = None,
363
363
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
364
- ) -> RunExecuteResponse:
364
+ ) -> TaskRunResponse:
365
365
  """Executes a task in a browser session.
366
366
 
367
367
  The task can be run with a specific
@@ -403,12 +403,12 @@ class AsyncTaskResource(AsyncAPIResource):
403
403
  "session_id": session_id,
404
404
  "version": version,
405
405
  },
406
- task_run_params.RunExecuteParams,
406
+ task_run_params.TaskRunParams,
407
407
  ),
408
408
  options=make_request_options(
409
409
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
410
410
  ),
411
- cast_to=RunExecuteResponse,
411
+ cast_to=TaskRunResponse,
412
412
  )
413
413
 
414
414
 
@@ -3,28 +3,26 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  from .shared import SuccessResponse as SuccessResponse
6
+ from .task_run_params import TaskRunParams as TaskRunParams
6
7
  from .task_list_params import TaskListParams as TaskListParams
8
+ from .task_run_response import TaskRunResponse as TaskRunResponse
7
9
  from .extension_manifest import ExtensionManifest as ExtensionManifest
8
10
  from .task_create_params import TaskCreateParams as TaskCreateParams
9
11
  from .task_list_response import TaskListResponse as TaskListResponse
10
12
  from .event_signal_params import EventSignalParams as EventSignalParams
11
13
  from .session_goto_params import SessionGotoParams as SessionGotoParams
12
- from .session_paste_params import SessionPasteParams as SessionPasteParams
13
14
  from .task_create_response import TaskCreateResponse as TaskCreateResponse
14
15
  from .event_wait_for_params import EventWaitForParams as EventWaitForParams
15
16
  from .profile_create_params import ProfileCreateParams as ProfileCreateParams
16
17
  from .profile_list_response import ProfileListResponse as ProfileListResponse
17
- from .session_copy_response import SessionCopyResponse as SessionCopyResponse
18
18
  from .session_create_params import SessionCreateParams as SessionCreateParams
19
19
  from .session_goto_response import SessionGotoResponse as SessionGotoResponse
20
20
  from .session_scroll_params import SessionScrollParams as SessionScrollParams
21
21
  from .identity_create_params import IdentityCreateParams as IdentityCreateParams
22
22
  from .identity_update_params import IdentityUpdateParams as IdentityUpdateParams
23
- from .session_paste_response import SessionPasteResponse as SessionPasteResponse
24
23
  from .application_list_params import ApplicationListParams as ApplicationListParams
25
24
  from .event_wait_for_response import EventWaitForResponse as EventWaitForResponse
26
25
  from .extension_list_response import ExtensionListResponse as ExtensionListResponse
27
- from .extension_upload_params import ExtensionUploadParams as ExtensionUploadParams
28
26
  from .session_create_response import SessionCreateResponse as SessionCreateResponse
29
27
  from .session_scroll_response import SessionScrollResponse as SessionScrollResponse
30
28
  from .identity_create_response import IdentityCreateResponse as IdentityCreateResponse
@@ -32,8 +30,6 @@ from .identity_delete_response import IdentityDeleteResponse as IdentityDeleteRe
32
30
  from .identity_update_response import IdentityUpdateResponse as IdentityUpdateResponse
33
31
  from .application_create_params import ApplicationCreateParams as ApplicationCreateParams
34
32
  from .application_list_response import ApplicationListResponse as ApplicationListResponse
35
- from .extension_delete_response import ExtensionDeleteResponse as ExtensionDeleteResponse
36
- from .extension_upload_response import ExtensionUploadResponse as ExtensionUploadResponse
37
33
  from .profile_retrieve_response import ProfileRetrieveResponse as ProfileRetrieveResponse
38
34
  from .session_retrieve_response import SessionRetrieveResponse as SessionRetrieveResponse
39
35
  from .tool_fetch_webpage_params import ToolFetchWebpageParams as ToolFetchWebpageParams
@@ -41,8 +37,6 @@ from .identity_retrieve_response import IdentityRetrieveResponse as IdentityRetr
41
37
  from .session_upload_file_params import SessionUploadFileParams as SessionUploadFileParams
42
38
  from .application_create_response import ApplicationCreateResponse as ApplicationCreateResponse
43
39
  from .application_delete_response import ApplicationDeleteResponse as ApplicationDeleteResponse
44
- from .extension_retrieve_response import ExtensionRetrieveResponse as ExtensionRetrieveResponse
45
- from .session_list_pages_response import SessionListPagesResponse as SessionListPagesResponse
46
40
  from .tool_fetch_webpage_response import ToolFetchWebpageResponse as ToolFetchWebpageResponse
47
41
  from .session_drag_and_drop_params import SessionDragAndDropParams as SessionDragAndDropParams
48
42
  from .session_upload_file_response import SessionUploadFileResponse as SessionUploadFileResponse
@@ -9,13 +9,8 @@ from .mouse_move_response import MouseMoveResponse as MouseMoveResponse
9
9
  from .clipboard_set_params import ClipboardSetParams as ClipboardSetParams
10
10
  from .keyboard_type_params import KeyboardTypeParams as KeyboardTypeParams
11
11
  from .mouse_click_response import MouseClickResponse as MouseClickResponse
12
- from .clipboard_get_response import ClipboardGetResponse as ClipboardGetResponse
13
12
  from .clipboard_set_response import ClipboardSetResponse as ClipboardSetResponse
14
13
  from .keyboard_type_response import KeyboardTypeResponse as KeyboardTypeResponse
15
14
  from .recording_list_response import RecordingListResponse as RecordingListResponse
16
15
  from .keyboard_shortcut_params import KeyboardShortcutParams as KeyboardShortcutParams
17
- from .recording_pause_response import RecordingPauseResponse as RecordingPauseResponse
18
- from .mouse_double_click_params import MouseDoubleClickParams as MouseDoubleClickParams
19
- from .recording_resume_response import RecordingResumeResponse as RecordingResumeResponse
20
16
  from .keyboard_shortcut_response import KeyboardShortcutResponse as KeyboardShortcutResponse
21
- from .mouse_double_click_response import MouseDoubleClickResponse as MouseDoubleClickResponse
@@ -2,6 +2,5 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from .file_list_response import FileListResponse as FileListResponse
6
5
  from .file_upload_params import FileUploadParams as FileUploadParams
7
6
  from .file_upload_response import FileUploadResponse as FileUploadResponse
@@ -8,7 +8,7 @@ from typing_extensions import Literal, Required, Annotated, TypeAlias, TypedDict
8
8
  from .._utils import PropertyInfo
9
9
 
10
10
  __all__ = [
11
- "RunExecuteParams",
11
+ "TaskRunParams",
12
12
  "OverrideBrowserConfiguration",
13
13
  "OverrideBrowserConfigurationLiveView",
14
14
  "OverrideBrowserConfigurationProxy",
@@ -19,7 +19,7 @@ __all__ = [
19
19
  ]
20
20
 
21
21
 
22
- class RunExecuteParams(TypedDict, total=False):
22
+ class TaskRunParams(TypedDict, total=False):
23
23
  task_id: Required[Annotated[str, PropertyInfo(alias="taskId")]]
24
24
  """Task identifier"""
25
25
 
@@ -8,7 +8,7 @@ from pydantic import Field as FieldInfo
8
8
 
9
9
  from .._models import BaseModel
10
10
 
11
- __all__ = ["RunExecuteResponse", "Data"]
11
+ __all__ = ["TaskRunResponse", "Data"]
12
12
 
13
13
 
14
14
  class Data(BaseModel):
@@ -31,6 +31,6 @@ class Data(BaseModel):
31
31
  """Task execution output"""
32
32
 
33
33
 
34
- class RunExecuteResponse(BaseModel):
34
+ class TaskRunResponse(BaseModel):
35
35
  data: Optional[Data] = None
36
36
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: anchorbrowser
3
- Version: 0.6.2
3
+ Version: 0.7.0
4
4
  Summary: The official Python library for the anchorbrowser API
5
5
  Project-URL: Homepage, https://github.com/anchorbrowser/AnchorBrowser-SDK-Python
6
6
  Project-URL: Repository, https://github.com/anchorbrowser/AnchorBrowser-SDK-Python
@@ -1,6 +1,6 @@
1
1
  anchorbrowser/__init__.py,sha256=Wl16NhVAsaRBCpDtHZjZXDY31QMKfCIRNjzJcfb8D9E,2728
2
2
  anchorbrowser/_base_client.py,sha256=ghFcD3ZWWwVEz34nfpk8S-AEghNchnHdyLpHPUsfSqk,73416
3
- anchorbrowser/_client.py,sha256=nFDDwX0r00CnsUvi4dtVLZBXwP2YAvN8AYDiybXkrMc,20277
3
+ anchorbrowser/_client.py,sha256=C6r4pVrUxUcbEFB2KRKUkeuU6q7QTdlztbWZrjZp9jA,20246
4
4
  anchorbrowser/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
5
  anchorbrowser/_constants.py,sha256=5PS9gNlT7aVkf5APKjCI8lcWqII_saRiroEzDScVKEU,470
6
6
  anchorbrowser/_exceptions.py,sha256=Qz7WOsYUFZ3bEoN28V-C9Wk-EvYerqP83-fMUINlZKQ,3234
@@ -11,7 +11,7 @@ anchorbrowser/_resource.py,sha256=7lE1EgpVj5kwckk-27umtigTOf9nKTyRl97cgNwRbRQ,11
11
11
  anchorbrowser/_response.py,sha256=xsiyWOC8LWW-NvbFtZ-MJD4f7eI9RnivKwtKImZ-8o4,28860
12
12
  anchorbrowser/_streaming.py,sha256=ey2jst1hntYHV6HDiCFfHhWr_dUCSG4dG-VUqQkmCQ4,10249
13
13
  anchorbrowser/_types.py,sha256=QvYWm0TMkfoauZj7cJwLtTrdnHfy0Wl7490nj7RFC9I,7601
14
- anchorbrowser/_version.py,sha256=QJJ7I00Fc1N0R-EK5AaSKATkS6ckgoiL0yMyXxndjzE,165
14
+ anchorbrowser/_version.py,sha256=VYH2zCqPz6PCDQScVhE38GB1_hbZ7DFGHwkmTIVhLjs,165
15
15
  anchorbrowser/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  anchorbrowser/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
17
  anchorbrowser/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
@@ -32,27 +32,27 @@ anchorbrowser/resources/__init__.py,sha256=9dv_oPSt9xCrVtlTsyPhFyfef2LreNaYgvmwC
32
32
  anchorbrowser/resources/agent.py,sha256=xq-kcychfQTmCDfdjjQWmBWLlFf03DnW-BoK4oRPdfc,20185
33
33
  anchorbrowser/resources/browser.py,sha256=BB5hq_ayIDL_ziYHq13oj8US3XkHzkoXiGLBm7h9dH0,5548
34
34
  anchorbrowser/resources/events.py,sha256=B6TwziBmOVMjWwoFO7OJR2X_Jt_3jtzNhQg4lgY-7SE,10780
35
- anchorbrowser/resources/extensions.py,sha256=KWySN-tu8Cxy-LbY3TXLNMPs1s5Hzwwk7Rmr1AYLVeU,15943
35
+ anchorbrowser/resources/extensions.py,sha256=KPBQGvjXU-cThWcd9Gf7xBBhEKjxxtaJqZiPF-hA0Ho,5131
36
36
  anchorbrowser/resources/identities.py,sha256=Dm5H4oVpZQVJT2xVocrKaTfd9fUzYFa74uOz6xiX8Fo,23696
37
37
  anchorbrowser/resources/profiles.py,sha256=g6xLjfmdXfRM5QV-N-omShpSPO_jMvRRmxKjOllq5RQ,16206
38
- anchorbrowser/resources/task.py,sha256=rZm7ngBnq6rmrHL7LbPNoQMXGwYfKZG9uz1RQZ54HGM,17340
38
+ anchorbrowser/resources/task.py,sha256=Edh3sxfrP_0vs0j4QXS0TMFOS1frG2LZ-TITR0sPWVA,17318
39
39
  anchorbrowser/resources/tools.py,sha256=P9PQ8Md08RCCD1l4jbjuo-2C-SKxVPnHBuqkzOKrKjc,26384
40
40
  anchorbrowser/resources/applications/__init__.py,sha256=l-NtHBcE8rngI0MYy5C56dxZxgVx_Jeq3i3TVLpo0Xk,1120
41
41
  anchorbrowser/resources/applications/applications.py,sha256=lhQIjdp0SKYeLkmTau0BLg7t_33ZNSHQ1CUjHUWyAr0,27666
42
42
  anchorbrowser/resources/applications/auth_flows.py,sha256=rw28rvN1hqa4Z99kko-gKsEoIkL-Gy7NrjihCiWKwXI,21423
43
43
  anchorbrowser/resources/sessions/__init__.py,sha256=51tmuaKqEsEMfFTtZOovPAid6vYyKLkv6quuFBnQSiY,3330
44
44
  anchorbrowser/resources/sessions/all.py,sha256=5iN5Vv6UW-2p07lEqiRHw3fFQC4m_acfvsn3yZVi_g0,7193
45
- anchorbrowser/resources/sessions/clipboard.py,sha256=RuoY6Ev5oKsuk0KhPgtRk5GXCjqCk2D16e2hXzRY-4I,9572
45
+ anchorbrowser/resources/sessions/clipboard.py,sha256=aP_O04dR9Axs_r1vMFvo8HlbX9YrNa0eWevIqCG7cTg,6482
46
46
  anchorbrowser/resources/sessions/keyboard.py,sha256=qeHOvmTC2cA_AcEyXBCTzp6QyjN-cU6BZBq603Ex49g,11024
47
- anchorbrowser/resources/sessions/mouse.py,sha256=OA9kcEfTCFVRzwPah799f3LqkB8u1x80H7NLxNn2m_o,16154
48
- anchorbrowser/resources/sessions/sessions.py,sha256=6nGoafJwkz_530LdABx570qfUvFIuEKHmh78EVLZ1Bk,56909
47
+ anchorbrowser/resources/sessions/mouse.py,sha256=CdHMBPWJCG1f8Ho3UDti6WUrmI8926ccRQbJ1eizzXs,12022
48
+ anchorbrowser/resources/sessions/sessions.py,sha256=UGkLv0vq92wusuOosfXR_U3rTgQaslg0duBje8Sb7ok,47213
49
49
  anchorbrowser/resources/sessions/agent/__init__.py,sha256=xhYEyZLlwYxvBVBNX6FfdOYz9B5Ps4bHXNG_LY1KuDU,976
50
50
  anchorbrowser/resources/sessions/agent/agent.py,sha256=VnrjYHkp6jDv3mYUUnfC6xxcrjwO1Uwm5bWAY85We8w,10013
51
- anchorbrowser/resources/sessions/agent/files.py,sha256=E5pFDXEeaqJAN7DfE774WWJMf-MsXv_tw_KAPsEcfrA,11461
51
+ anchorbrowser/resources/sessions/agent/files.py,sha256=u-YfPd2BUVeseR63eHmYHmMhUGckr4kutlvZCaz1SVI,8124
52
52
  anchorbrowser/resources/sessions/recordings/__init__.py,sha256=MRWTb2Kwpc-wGBrcaa5YnTntQ9Z85Zd0McKS5K_mG00,1067
53
53
  anchorbrowser/resources/sessions/recordings/primary.py,sha256=p739aM0tU6CUx2KAgbo2O0oS-5T438Ho7SeUH9eSKXI,6569
54
- anchorbrowser/resources/sessions/recordings/recordings.py,sha256=LtaT51hX5GWdl21ypu2SGKzEHJHfsjWhJkqAy_fjWGo,13746
55
- anchorbrowser/types/__init__.py,sha256=_qp2JNZonkiTurIEgiSvkRParlv5mFJArE98rGFV7FE,5052
54
+ anchorbrowser/resources/sessions/recordings/recordings.py,sha256=RigJzVSaHOEdIjb-KLRvGJT61p8-r6ipwpqPXHUlWYM,7380
55
+ anchorbrowser/types/__init__.py,sha256=Nin6zbW5gPzERUMETKNLMWxLJ-jaed1hGQKAV94ZzKM,4490
56
56
  anchorbrowser/types/application_create_identity_token_params.py,sha256=eLDfH8aT1nr_-qW6kmaq_5ilZr1YukWz1JMioShktE8,534
57
57
  anchorbrowser/types/application_create_identity_token_response.py,sha256=P1BrPeb0DlIq8DluP-QxA3WsetpNIM4xgwUV5kqZihM,630
58
58
  anchorbrowser/types/application_create_params.py,sha256=KDXFpTx3N8SuzJ8kQiXL79FNt4zcIC1Dur0d5fSaIck,451
@@ -66,12 +66,8 @@ anchorbrowser/types/application_retrieve_response.py,sha256=u3BDJ_ucR7HZSwF-X8Z_
66
66
  anchorbrowser/types/event_signal_params.py,sha256=aEq0J4fq3YBGz3LLo2jtQH5GQUmfXj8Nuk-VFnnXRs8,372
67
67
  anchorbrowser/types/event_wait_for_params.py,sha256=hyBubY4vBGTtX5AfS6KhkTQHseWKCdhSY4TIzyxPqAo,448
68
68
  anchorbrowser/types/event_wait_for_response.py,sha256=QDjO9rVVpn34OGb5q6eQqrve1rSzzhaT8lPl_TCRXOs,319
69
- anchorbrowser/types/extension_delete_response.py,sha256=3ixtvxjz_Ay-Kp8lamJzbIrqKpvfqWui5l13Sr035To,327
70
69
  anchorbrowser/types/extension_list_response.py,sha256=-OysuceCBHQLLT8B-zvwtHQDXqx__Zjkkb-gNT58N3Y,876
71
70
  anchorbrowser/types/extension_manifest.py,sha256=jgQzqKbPODPjEPiGPcEjCXx6yBdgFXZMmXpvy96Irz0,1099
72
- anchorbrowser/types/extension_retrieve_response.py,sha256=wBpk7gNgAbVf1etsCSrC4JOrKD6c_9HTv2S2FjNiAiM,807
73
- anchorbrowser/types/extension_upload_params.py,sha256=bBd8BMRVHu6P18jJovVMLPnIzGXGlV8Geb8TdiuGPbQ,470
74
- anchorbrowser/types/extension_upload_response.py,sha256=ee8KYWIb-AjURMzrtAMNUTjV3Izhj6AB0LeAvR0npvk,868
75
71
  anchorbrowser/types/identity_create_params.py,sha256=McK5P2---ht6OdVKs_CbSAXPt_z46d-u3zkSmfRIrG8,2404
76
72
  anchorbrowser/types/identity_create_response.py,sha256=Hus1K-ImrN1yHwAsWouMJ_PzHINY2tk0r6QviP4KOgM,736
77
73
  anchorbrowser/types/identity_delete_response.py,sha256=PJbGX_ytQfsogZlG61eMvwB1pRhxRwFk2qiooR3oarI,297
@@ -82,16 +78,12 @@ anchorbrowser/types/identity_update_response.py,sha256=g2DDgN4SZqe9o0kKRvhYBTGZx
82
78
  anchorbrowser/types/profile_create_params.py,sha256=JU53ky-FAMbjHPFQzA70H63qrgvyZDmxU6v8CaUcriI,839
83
79
  anchorbrowser/types/profile_list_response.py,sha256=8mDdiQ_YHaKeAzVbzw9D9XbFbyLL1MSBaJQN9dE1xeE,1041
84
80
  anchorbrowser/types/profile_retrieve_response.py,sha256=OW5f6dcJfWUJUl1uKFQmwul5Uw4J5iyxP-f4vP19ufc,891
85
- anchorbrowser/types/session_copy_response.py,sha256=S6SzIEYrjLATuBWk5xCuT3QhVqE1ztWr-5UomASXL7g,289
86
81
  anchorbrowser/types/session_create_params.py,sha256=Kv3r4saV74NIRZxB7_sOCHkb2C_0tJ9zqRhSGHir5xA,11592
87
82
  anchorbrowser/types/session_create_response.py,sha256=SKTtGQlEfLwfdQ9e8n5kETeYXHdwhnDPaXw6Myx584k,539
88
83
  anchorbrowser/types/session_drag_and_drop_params.py,sha256=z3q4hyiRKkW7Vq8bo1Q1ryGS2FEzlfv5cw1p8qvXmcs,795
89
84
  anchorbrowser/types/session_drag_and_drop_response.py,sha256=mxxEdrYAdbgR0khm8wPTYcZRXae5Xf1m35WAc1g9irU,270
90
85
  anchorbrowser/types/session_goto_params.py,sha256=dFUaKLXmKGgvIfpA242s4GBkuNte5U3lbB2ircPmkPw,313
91
86
  anchorbrowser/types/session_goto_response.py,sha256=on8DXhTpJvo1_iX_CVz2KSsPCIBASDFGJkQS4MfrgKg,256
92
- anchorbrowser/types/session_list_pages_response.py,sha256=2KwUi0lq_L93sFRKdexqKjZFO2Z1Pv5a47kqtTIfy8c,605
93
- anchorbrowser/types/session_paste_params.py,sha256=q2gDYly1BTKjWNG-9tSAATuhtfEUup5yleT70CztFgU,307
94
- anchorbrowser/types/session_paste_response.py,sha256=I12Uixvm5gEFOXs7UiGcVCM4cd5a2zRn9JNR75F15Gk,258
95
87
  anchorbrowser/types/session_retrieve_downloads_response.py,sha256=P0MJUHunSQVQfqFVS3fVt71r8Rwz2jTa2CaIhMTNhj8,1405
96
88
  anchorbrowser/types/session_retrieve_response.py,sha256=syLwL7uw6TF5D3u8NbOcgsYKi1xywg5GVDxBhUZQVSc,1327
97
89
  anchorbrowser/types/session_scroll_params.py,sha256=lRVL0Gda1Xs5Xrqu6oj70gOFd8a_ZcfgFKrzGmkT6XU,877
@@ -102,8 +94,8 @@ anchorbrowser/types/task_create_params.py,sha256=3a55Cu-r8fslLooQEsFqcliJBl1_Z9q
102
94
  anchorbrowser/types/task_create_response.py,sha256=zYqfjOnibXTh7TvtPY5_aiXVXMCpK9N6WiO6cllt0Yc,8033
103
95
  anchorbrowser/types/task_list_params.py,sha256=pu0gLGBp5UxKLpbEpSEz-J-kSRrY6VIvzjc-A0sOUFc,328
104
96
  anchorbrowser/types/task_list_response.py,sha256=4hSdAkWJXqMErtqbsuHX4wBuEJywMkvREcSOAkqrr7U,8348
105
- anchorbrowser/types/task_run_params.py,sha256=ahQD5lERBzxWdYY52tI7j2nhvmwXZLjnhiiqE68Dibw,7092
106
- anchorbrowser/types/task_run_response.py,sha256=Vy33PwbYTneLeAe0rAi_K6nr4M4uwMg4fzgvf0bBe3w,830
97
+ anchorbrowser/types/task_run_params.py,sha256=QZPNJb1qjA2vEvyFEE-11GGRgVo6UIDr7VWixzZq7XM,7086
98
+ anchorbrowser/types/task_run_response.py,sha256=EHNdKk8zWHkMk5QYsub60LjqIuDukvfQ-IIiMgjdCRQ,824
107
99
  anchorbrowser/types/tool_fetch_webpage_params.py,sha256=g_C7tLpyFx4I2r7-iizM7ZiQ71-VfowCj9aufaSHjmg,1181
108
100
  anchorbrowser/types/tool_fetch_webpage_response.py,sha256=hdbrNgPz_LeWa3_aVbtck-n-SRvO4moFDbGoSf_2_tU,210
109
101
  anchorbrowser/types/tool_perform_web_task_params.py,sha256=rFEGtjZWtXA8wLLp36GLt9NuD7HO0dKSqDHp5GfFZYA,2219
@@ -116,9 +108,8 @@ anchorbrowser/types/applications/auth_flow_delete_response.py,sha256=7BCd1dNYn8C
116
108
  anchorbrowser/types/applications/auth_flow_list_response.py,sha256=9xwPPmcWwz6mYwNKcHab6BbNpU4WFJQZ9SzBmH3z_yo,1231
117
109
  anchorbrowser/types/applications/auth_flow_update_params.py,sha256=kV4OALmUEcB-1J9iNXeyDcCc1a0QqzBGBJcVwm1pmMw,892
118
110
  anchorbrowser/types/applications/auth_flow_update_response.py,sha256=thxnOosEMhS7TagZqnRjXhHchkNHFTZ8jcFy9oCSi30,1122
119
- anchorbrowser/types/sessions/__init__.py,sha256=kiMjL-pt4Umx2DAnt8UP8lo4eM9X_UBDXO7JdYBzpcs,1493
111
+ anchorbrowser/types/sessions/__init__.py,sha256=dNZck8W2DJTCddTLO-Z8wjuj3aT7z2t2FkNAOpQaEYo,1053
120
112
  anchorbrowser/types/sessions/all_status_response.py,sha256=h4uwmS47nHkHWbRJO2Sb9h_tEaysxvWcpaNyZO-IXxo,701
121
- anchorbrowser/types/sessions/clipboard_get_response.py,sha256=L6bnLDmRurfMIXJwK_y1CqITsOSLufR-5C_m9k4ccnM,362
122
113
  anchorbrowser/types/sessions/clipboard_set_params.py,sha256=LDpW3WOXoD_dcSjTo6pE5K_ilL604sjGGx00AA1XtOQ,322
123
114
  anchorbrowser/types/sessions/clipboard_set_response.py,sha256=R13uFA6qY0H_n4yLyb5IifqmzLAt7bWxqAFlN-0bhi0,259
124
115
  anchorbrowser/types/sessions/keyboard_shortcut_params.py,sha256=L2B21JzcdhfQm_cpGjzbO29uCn10O7af0_E2x_2VB1E,555
@@ -127,21 +118,16 @@ anchorbrowser/types/sessions/keyboard_type_params.py,sha256=1nBPL28krDY429UBwWCG
127
118
  anchorbrowser/types/sessions/keyboard_type_response.py,sha256=SzP4ku4K9Fii94MoGtnYdsrFgv4jfwMoQLOJl95RoH4,259
128
119
  anchorbrowser/types/sessions/mouse_click_params.py,sha256=k71W2LHB0wBEmevlvlzEjWahKDanZpGRHMnkYtLfG4o,916
129
120
  anchorbrowser/types/sessions/mouse_click_response.py,sha256=kr49gpE4B_c_IMCASSzWQYNG2o4FLM1C3vx9HEmUG2o,255
130
- anchorbrowser/types/sessions/mouse_double_click_params.py,sha256=ivYklkipERNnLLxKEdXlKw8GqRa_qrxTnkFhC6KwV8c,443
131
- anchorbrowser/types/sessions/mouse_double_click_response.py,sha256=D_d8D4O0fzZ3LyH6qp1Cfkig2aKLuJ5XBc_08YwbyvE,267
132
121
  anchorbrowser/types/sessions/mouse_move_params.py,sha256=dgv2b5-ZolRX9BccNsJD-1JVAtHEqYI3x_wU19X9lsM,342
133
122
  anchorbrowser/types/sessions/mouse_move_response.py,sha256=3HSbsIdgsIZkERrvavWUXYB9AB3HU4vLpvvMqCsBOF0,253
134
123
  anchorbrowser/types/sessions/recording_list_response.py,sha256=IhlUNZdlK9ABG-7hEX4anljb_K-7XwVhZQhjWdm6GYM,1076
135
- anchorbrowser/types/sessions/recording_pause_response.py,sha256=Scp7DdE1SjyTDp-VWMAXJ2MZKRyzE2jqgW85nyDwEG4,327
136
- anchorbrowser/types/sessions/recording_resume_response.py,sha256=JXGXVLDwcbodSOC8j-m2iLTmTqYRHSr56jNKhVJMaoY,329
137
- anchorbrowser/types/sessions/agent/__init__.py,sha256=1tN-4qDeTSvaw0j1JiqNKyW83YnjkAmPMlHL9FbwjVE,336
138
- anchorbrowser/types/sessions/agent/file_list_response.py,sha256=JO5AkGj76VodPN-vKO0pwUUCfwtQibToGF7C5riM9i8,768
124
+ anchorbrowser/types/sessions/agent/__init__.py,sha256=51Pze3TbaQ5PlAaFczCBQKX_dO6wgZD1QkllqSH3Xf0,267
139
125
  anchorbrowser/types/sessions/agent/file_upload_params.py,sha256=WdTbFlwuwARUSDZmx82tbiIiOYlQMRlD1qvXWGylK-g,406
140
126
  anchorbrowser/types/sessions/agent/file_upload_response.py,sha256=9DnqplfvEud89UW2ebq1uhg29GQV1Kt4LxZCQlOCafE,356
141
127
  anchorbrowser/types/sessions/recordings/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
142
128
  anchorbrowser/types/shared/__init__.py,sha256=FQKjY3VDxI8T0feNRazdY5TOqb2KDeEwZaoJjsxuEl4,152
143
129
  anchorbrowser/types/shared/success_response.py,sha256=l9OWrucXoSjBdsx5QKdvBPFtxv8d0YdpYY6iL5cWWuc,314
144
- anchorbrowser-0.6.2.dist-info/METADATA,sha256=JmppWqN4Vgw7AuAQ0gRoTLShGeWfjpPcjG45YdUDlX4,15407
145
- anchorbrowser-0.6.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
146
- anchorbrowser-0.6.2.dist-info/licenses/LICENSE,sha256=RDcfjK9SJCPlF8nKJnQ33ZQqG4pFl5sBT9AOoTQXK5Q,11343
147
- anchorbrowser-0.6.2.dist-info/RECORD,,
130
+ anchorbrowser-0.7.0.dist-info/METADATA,sha256=fMuKTB7HIQQipb3-43J1BO73EGJnIrOWI_V7yXV-MFY,15407
131
+ anchorbrowser-0.7.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
132
+ anchorbrowser-0.7.0.dist-info/licenses/LICENSE,sha256=RDcfjK9SJCPlF8nKJnQ33ZQqG4pFl5sBT9AOoTQXK5Q,11343
133
+ anchorbrowser-0.7.0.dist-info/RECORD,,