anchorbrowser 0.5.3__tar.gz → 0.6.0__tar.gz
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.
- anchorbrowser-0.6.0/.release-please-manifest.json +3 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/CHANGELOG.md +28 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/LICENSE +1 -1
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/PKG-INFO +1 -1
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/api.md +55 -1
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/pyproject.toml +1 -1
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_base_client.py +1 -1
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_client.py +8 -1
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_version.py +1 -1
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/__init__.py +14 -0
- anchorbrowser-0.6.0/src/anchorbrowser/resources/applications/__init__.py +33 -0
- anchorbrowser-0.6.0/src/anchorbrowser/resources/applications/applications.py +715 -0
- anchorbrowser-0.6.0/src/anchorbrowser/resources/applications/auth_flows.py +547 -0
- anchorbrowser-0.6.0/src/anchorbrowser/resources/identities.py +615 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/sessions.py +14 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/__init__.py +20 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_create_identity_token_params.py +17 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_create_identity_token_response.py +23 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_create_params.py +18 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_create_response.py +25 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_delete_response.py +12 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_list_identities_params.py +12 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_list_identities_response.py +33 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_list_params.py +12 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_list_response.py +41 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/application_retrieve_response.py +37 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/applications/__init__.py +10 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/applications/auth_flow_create_params.py +30 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/applications/auth_flow_create_response.py +39 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/applications/auth_flow_delete_response.py +12 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/applications/auth_flow_list_response.py +43 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/applications/auth_flow_update_params.py +32 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/applications/auth_flow_update_response.py +39 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/identity_create_params.py +84 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/identity_create_response.py +26 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/identity_delete_response.py +12 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/identity_retrieve_response.py +32 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/identity_update_params.py +70 -0
- anchorbrowser-0.6.0/src/anchorbrowser/types/identity_update_response.py +22 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_create_params.py +15 -0
- anchorbrowser-0.6.0/tests/api_resources/test_identities.py +514 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/test_sessions.py +2 -0
- anchorbrowser-0.5.3/.release-please-manifest.json +0 -3
- anchorbrowser-0.5.3/src/anchorbrowser/resources/identities.py +0 -163
- anchorbrowser-0.5.3/tests/api_resources/test_identities.py +0 -108
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/.gitignore +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/CONTRIBUTING.md +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/README.md +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/SECURITY.md +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/bin/check-release-environment +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/bin/publish-pypi +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/examples/.keep +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/noxfile.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/release-please-config.json +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/requirements-dev.lock +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/requirements.lock +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_compat.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_constants.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_exceptions.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_files.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_models.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_qs.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_resource.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_streaming.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_types.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_compat.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_datetime_parse.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_logs.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_proxy.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_reflection.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_resources_proxy.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_streams.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_sync.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_transform.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_typing.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/_utils/_utils.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/lib/.keep +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/lib/agent.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/lib/browser.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/py.typed +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/agent.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/browser.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/events.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/extensions.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/profiles.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/agent/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/agent/agent.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/agent/files.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/all.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/clipboard.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/keyboard.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/mouse.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/recordings/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/recordings/primary.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/sessions/recordings/recordings.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/task/run.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/task.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/resources/tools.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/event_signal_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/event_wait_for_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/event_wait_for_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/extension_delete_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/extension_list_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/extension_manifest.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/extension_retrieve_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/extension_upload_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/extension_upload_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/identity_retrieve_credentials_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/profile_create_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/profile_list_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/profile_retrieve_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_copy_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_create_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_drag_and_drop_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_drag_and_drop_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_goto_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_goto_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_list_pages_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_paste_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_paste_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_retrieve_downloads_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_retrieve_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_scroll_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_scroll_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_upload_file_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/session_upload_file_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/agent/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/agent/file_list_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/agent/file_upload_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/agent/file_upload_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/all_status_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/clipboard_get_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/clipboard_set_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/clipboard_set_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/keyboard_shortcut_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/keyboard_shortcut_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/keyboard_type_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/keyboard_type_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/mouse_click_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/mouse_click_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/mouse_double_click_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/mouse_double_click_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/mouse_move_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/mouse_move_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/recording_list_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/recording_pause_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/recording_resume_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/sessions/recordings/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/shared/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/shared/success_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/task_create_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/task_create_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/task_list_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/task_list_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/task_run_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/task_run_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/tool_fetch_webpage_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/tool_fetch_webpage_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/tool_perform_web_task_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/tool_perform_web_task_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/src/anchorbrowser/types/tool_screenshot_webpage_params.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/agent/test_files.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/recordings/__init__.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/recordings/test_primary.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/test_agent.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/test_all.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/test_clipboard.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/test_keyboard.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/test_mouse.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/sessions/test_recordings.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/test_events.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/test_extensions.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/test_profiles.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/test_task.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/api_resources/test_tools.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/conftest.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/sample_file.txt +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_client.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_deepcopy.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_extract_files.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_files.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_models.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_qs.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_required_args.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_response.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_streaming.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_transform.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_utils/test_proxy.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/test_utils/test_typing.py +0 -0
- {anchorbrowser-0.5.3 → anchorbrowser-0.6.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.0 (2026-01-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.5.4...v0.6.0](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/compare/v0.5.4...v0.6.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* added applications endpoints as well ([ed63175](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/ed63175860a8ae9b9faa7273715cd2bdd29a4630))
|
|
10
|
+
* added identity endpoints ([4c8b5e5](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/4c8b5e56cf7b839b4ea10286d71a1284451bc5ac))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* use async_to_httpx_files in patch method ([ab770df](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/ab770df308f8eec33156bccbfea6fd0fd289ab1f))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Chores
|
|
19
|
+
|
|
20
|
+
* **internal:** add `--fix` argument to lint script ([b4769fe](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/b4769fe1f15ed89ce57412661b6b717ff0438fa9))
|
|
21
|
+
* **internal:** version bump ([3d54a22](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/3d54a22f2fed0955b3fcf36cc4ba82e36828eca8))
|
|
22
|
+
|
|
23
|
+
## 0.5.4 (2026-01-02)
|
|
24
|
+
|
|
25
|
+
Full Changelog: [v0.5.3...v0.5.4](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/compare/v0.5.3...v0.5.4)
|
|
26
|
+
|
|
27
|
+
### Chores
|
|
28
|
+
|
|
29
|
+
* speedup initial import ([3ed7ed3](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/3ed7ed3ec79f8348c94c1a9373017108a28529c7))
|
|
30
|
+
|
|
3
31
|
## 0.5.3 (2025-12-23)
|
|
4
32
|
|
|
5
33
|
Full Changelog: [v0.5.2...v0.5.3](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/compare/v0.5.2...v0.5.3)
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2026 Anchorbrowser
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anchorbrowser
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.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
|
|
@@ -232,9 +232,63 @@ Methods:
|
|
|
232
232
|
Types:
|
|
233
233
|
|
|
234
234
|
```python
|
|
235
|
-
from anchorbrowser.types import
|
|
235
|
+
from anchorbrowser.types import (
|
|
236
|
+
IdentityCreateResponse,
|
|
237
|
+
IdentityRetrieveResponse,
|
|
238
|
+
IdentityUpdateResponse,
|
|
239
|
+
IdentityDeleteResponse,
|
|
240
|
+
IdentityRetrieveCredentialsResponse,
|
|
241
|
+
)
|
|
236
242
|
```
|
|
237
243
|
|
|
238
244
|
Methods:
|
|
239
245
|
|
|
246
|
+
- <code title="post /v1/identities">client.identities.<a href="./src/anchorbrowser/resources/identities.py">create</a>(\*\*<a href="src/anchorbrowser/types/identity_create_params.py">params</a>) -> <a href="./src/anchorbrowser/types/identity_create_response.py">IdentityCreateResponse</a></code>
|
|
247
|
+
- <code title="get /v1/identities/{identity_id}">client.identities.<a href="./src/anchorbrowser/resources/identities.py">retrieve</a>(identity_id) -> <a href="./src/anchorbrowser/types/identity_retrieve_response.py">IdentityRetrieveResponse</a></code>
|
|
248
|
+
- <code title="put /v1/identities/{identity_id}">client.identities.<a href="./src/anchorbrowser/resources/identities.py">update</a>(identity_id, \*\*<a href="src/anchorbrowser/types/identity_update_params.py">params</a>) -> <a href="./src/anchorbrowser/types/identity_update_response.py">IdentityUpdateResponse</a></code>
|
|
249
|
+
- <code title="delete /v1/identities/{identity_id}">client.identities.<a href="./src/anchorbrowser/resources/identities.py">delete</a>(identity_id) -> <a href="./src/anchorbrowser/types/identity_delete_response.py">IdentityDeleteResponse</a></code>
|
|
240
250
|
- <code title="get /v1/identities/{identity_id}/credentials">client.identities.<a href="./src/anchorbrowser/resources/identities.py">retrieve_credentials</a>(identity_id) -> <a href="./src/anchorbrowser/types/identity_retrieve_credentials_response.py">IdentityRetrieveCredentialsResponse</a></code>
|
|
251
|
+
|
|
252
|
+
# Applications
|
|
253
|
+
|
|
254
|
+
Types:
|
|
255
|
+
|
|
256
|
+
```python
|
|
257
|
+
from anchorbrowser.types import (
|
|
258
|
+
ApplicationCreateResponse,
|
|
259
|
+
ApplicationRetrieveResponse,
|
|
260
|
+
ApplicationListResponse,
|
|
261
|
+
ApplicationDeleteResponse,
|
|
262
|
+
ApplicationCreateIdentityTokenResponse,
|
|
263
|
+
ApplicationListIdentitiesResponse,
|
|
264
|
+
)
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
Methods:
|
|
268
|
+
|
|
269
|
+
- <code title="post /v1/applications">client.applications.<a href="./src/anchorbrowser/resources/applications/applications.py">create</a>(\*\*<a href="src/anchorbrowser/types/application_create_params.py">params</a>) -> <a href="./src/anchorbrowser/types/application_create_response.py">ApplicationCreateResponse</a></code>
|
|
270
|
+
- <code title="get /v1/applications/{application_id}">client.applications.<a href="./src/anchorbrowser/resources/applications/applications.py">retrieve</a>(application_id) -> <a href="./src/anchorbrowser/types/application_retrieve_response.py">ApplicationRetrieveResponse</a></code>
|
|
271
|
+
- <code title="get /v1/applications">client.applications.<a href="./src/anchorbrowser/resources/applications/applications.py">list</a>(\*\*<a href="src/anchorbrowser/types/application_list_params.py">params</a>) -> <a href="./src/anchorbrowser/types/application_list_response.py">ApplicationListResponse</a></code>
|
|
272
|
+
- <code title="delete /v1/applications/{application_id}">client.applications.<a href="./src/anchorbrowser/resources/applications/applications.py">delete</a>(application_id) -> <a href="./src/anchorbrowser/types/application_delete_response.py">ApplicationDeleteResponse</a></code>
|
|
273
|
+
- <code title="post /v1/applications/{application_id}/tokens">client.applications.<a href="./src/anchorbrowser/resources/applications/applications.py">create_identity_token</a>(application_id, \*\*<a href="src/anchorbrowser/types/application_create_identity_token_params.py">params</a>) -> <a href="./src/anchorbrowser/types/application_create_identity_token_response.py">ApplicationCreateIdentityTokenResponse</a></code>
|
|
274
|
+
- <code title="get /v1/applications/{application_id}/identities">client.applications.<a href="./src/anchorbrowser/resources/applications/applications.py">list_identities</a>(application_id, \*\*<a href="src/anchorbrowser/types/application_list_identities_params.py">params</a>) -> <a href="./src/anchorbrowser/types/application_list_identities_response.py">ApplicationListIdentitiesResponse</a></code>
|
|
275
|
+
|
|
276
|
+
## AuthFlows
|
|
277
|
+
|
|
278
|
+
Types:
|
|
279
|
+
|
|
280
|
+
```python
|
|
281
|
+
from anchorbrowser.types.applications import (
|
|
282
|
+
AuthFlowCreateResponse,
|
|
283
|
+
AuthFlowUpdateResponse,
|
|
284
|
+
AuthFlowListResponse,
|
|
285
|
+
AuthFlowDeleteResponse,
|
|
286
|
+
)
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
Methods:
|
|
290
|
+
|
|
291
|
+
- <code title="post /v1/applications/{application_id}/auth-flows">client.applications.auth_flows.<a href="./src/anchorbrowser/resources/applications/auth_flows.py">create</a>(application_id, \*\*<a href="src/anchorbrowser/types/applications/auth_flow_create_params.py">params</a>) -> <a href="./src/anchorbrowser/types/applications/auth_flow_create_response.py">AuthFlowCreateResponse</a></code>
|
|
292
|
+
- <code title="patch /v1/applications/{application_id}/auth-flows/{auth_flow_id}">client.applications.auth_flows.<a href="./src/anchorbrowser/resources/applications/auth_flows.py">update</a>(auth_flow_id, \*, application_id, \*\*<a href="src/anchorbrowser/types/applications/auth_flow_update_params.py">params</a>) -> <a href="./src/anchorbrowser/types/applications/auth_flow_update_response.py">AuthFlowUpdateResponse</a></code>
|
|
293
|
+
- <code title="get /v1/applications/{application_id}/auth-flows">client.applications.auth_flows.<a href="./src/anchorbrowser/resources/applications/auth_flows.py">list</a>(application_id) -> <a href="./src/anchorbrowser/types/applications/auth_flow_list_response.py">AuthFlowListResponse</a></code>
|
|
294
|
+
- <code title="delete /v1/applications/{application_id}/auth-flows/{auth_flow_id}">client.applications.auth_flows.<a href="./src/anchorbrowser/resources/applications/auth_flows.py">delete</a>(auth_flow_id, \*, application_id) -> <a href="./src/anchorbrowser/types/applications/auth_flow_delete_response.py">AuthFlowDeleteResponse</a></code>
|
|
@@ -1774,7 +1774,7 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
|
|
1774
1774
|
options: RequestOptions = {},
|
|
1775
1775
|
) -> ResponseT:
|
|
1776
1776
|
opts = FinalRequestOptions.construct(
|
|
1777
|
-
method="patch", url=path, json_data=body, files=
|
|
1777
|
+
method="patch", url=path, json_data=body, files=await async_to_httpx_files(files), **options
|
|
1778
1778
|
)
|
|
1779
1779
|
return await self.request(cast_to, opts)
|
|
1780
1780
|
|
|
@@ -412,6 +412,8 @@ class AsyncAnchorbrowser(AsyncAPIClient):
|
|
|
412
412
|
|
|
413
413
|
|
|
414
414
|
class AnchorbrowserWithRawResponse:
|
|
415
|
+
_client: Anchorbrowser
|
|
416
|
+
|
|
415
417
|
def __init__(self, client: Anchorbrowser) -> None:
|
|
416
418
|
self.profiles = profiles.ProfilesResourceWithRawResponse(client.profiles)
|
|
417
419
|
self.sessions = sessions.SessionsResourceWithRawResponse(client.sessions)
|
|
@@ -425,6 +427,8 @@ class AnchorbrowserWithRawResponse:
|
|
|
425
427
|
|
|
426
428
|
|
|
427
429
|
class AsyncAnchorbrowserWithRawResponse:
|
|
430
|
+
_client: AsyncAnchorbrowser
|
|
431
|
+
|
|
428
432
|
def __init__(self, client: AsyncAnchorbrowser) -> None:
|
|
429
433
|
self.profiles = profiles.AsyncProfilesResourceWithRawResponse(client.profiles)
|
|
430
434
|
self.sessions = sessions.AsyncSessionsResourceWithRawResponse(client.sessions)
|
|
@@ -438,6 +442,8 @@ class AsyncAnchorbrowserWithRawResponse:
|
|
|
438
442
|
|
|
439
443
|
|
|
440
444
|
class AnchorbrowserWithStreamedResponse:
|
|
445
|
+
_client: Anchorbrowser
|
|
446
|
+
|
|
441
447
|
def __init__(self, client: Anchorbrowser) -> None:
|
|
442
448
|
self.profiles = profiles.ProfilesResourceWithStreamingResponse(client.profiles)
|
|
443
449
|
self.sessions = sessions.SessionsResourceWithStreamingResponse(client.sessions)
|
|
@@ -451,6 +457,8 @@ class AnchorbrowserWithStreamedResponse:
|
|
|
451
457
|
|
|
452
458
|
|
|
453
459
|
class AsyncAnchorbrowserWithStreamedResponse:
|
|
460
|
+
_client: AsyncAnchorbrowser
|
|
461
|
+
|
|
454
462
|
def __init__(self, client: AsyncAnchorbrowser) -> None:
|
|
455
463
|
self.profiles = profiles.AsyncProfilesResourceWithStreamingResponse(client.profiles)
|
|
456
464
|
self.sessions = sessions.AsyncSessionsResourceWithStreamingResponse(client.sessions)
|
|
@@ -462,7 +470,6 @@ class AsyncAnchorbrowserWithStreamedResponse:
|
|
|
462
470
|
self.task = task.AsyncTaskResourceWithStreamingResponse(client.task)
|
|
463
471
|
self.identities = identities.AsyncIdentitiesResourceWithStreamingResponse(client.identities)
|
|
464
472
|
|
|
465
|
-
|
|
466
473
|
Client = Anchorbrowser
|
|
467
474
|
|
|
468
475
|
AsyncClient = AsyncAnchorbrowser
|
|
@@ -56,6 +56,14 @@ from .identities import (
|
|
|
56
56
|
IdentitiesResourceWithStreamingResponse,
|
|
57
57
|
AsyncIdentitiesResourceWithStreamingResponse,
|
|
58
58
|
)
|
|
59
|
+
from .applications import (
|
|
60
|
+
ApplicationsResource,
|
|
61
|
+
AsyncApplicationsResource,
|
|
62
|
+
ApplicationsResourceWithRawResponse,
|
|
63
|
+
AsyncApplicationsResourceWithRawResponse,
|
|
64
|
+
ApplicationsResourceWithStreamingResponse,
|
|
65
|
+
AsyncApplicationsResourceWithStreamingResponse,
|
|
66
|
+
)
|
|
59
67
|
|
|
60
68
|
__all__ = [
|
|
61
69
|
"ProfilesResource",
|
|
@@ -100,4 +108,10 @@ __all__ = [
|
|
|
100
108
|
"AsyncIdentitiesResourceWithRawResponse",
|
|
101
109
|
"IdentitiesResourceWithStreamingResponse",
|
|
102
110
|
"AsyncIdentitiesResourceWithStreamingResponse",
|
|
111
|
+
"ApplicationsResource",
|
|
112
|
+
"AsyncApplicationsResource",
|
|
113
|
+
"ApplicationsResourceWithRawResponse",
|
|
114
|
+
"AsyncApplicationsResourceWithRawResponse",
|
|
115
|
+
"ApplicationsResourceWithStreamingResponse",
|
|
116
|
+
"AsyncApplicationsResourceWithStreamingResponse",
|
|
103
117
|
]
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .auth_flows import (
|
|
4
|
+
AuthFlowsResource,
|
|
5
|
+
AsyncAuthFlowsResource,
|
|
6
|
+
AuthFlowsResourceWithRawResponse,
|
|
7
|
+
AsyncAuthFlowsResourceWithRawResponse,
|
|
8
|
+
AuthFlowsResourceWithStreamingResponse,
|
|
9
|
+
AsyncAuthFlowsResourceWithStreamingResponse,
|
|
10
|
+
)
|
|
11
|
+
from .applications import (
|
|
12
|
+
ApplicationsResource,
|
|
13
|
+
AsyncApplicationsResource,
|
|
14
|
+
ApplicationsResourceWithRawResponse,
|
|
15
|
+
AsyncApplicationsResourceWithRawResponse,
|
|
16
|
+
ApplicationsResourceWithStreamingResponse,
|
|
17
|
+
AsyncApplicationsResourceWithStreamingResponse,
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"AuthFlowsResource",
|
|
22
|
+
"AsyncAuthFlowsResource",
|
|
23
|
+
"AuthFlowsResourceWithRawResponse",
|
|
24
|
+
"AsyncAuthFlowsResourceWithRawResponse",
|
|
25
|
+
"AuthFlowsResourceWithStreamingResponse",
|
|
26
|
+
"AsyncAuthFlowsResourceWithStreamingResponse",
|
|
27
|
+
"ApplicationsResource",
|
|
28
|
+
"AsyncApplicationsResource",
|
|
29
|
+
"ApplicationsResourceWithRawResponse",
|
|
30
|
+
"AsyncApplicationsResourceWithRawResponse",
|
|
31
|
+
"ApplicationsResourceWithStreamingResponse",
|
|
32
|
+
"AsyncApplicationsResourceWithStreamingResponse",
|
|
33
|
+
]
|