anchorbrowser 0.5.4__tar.gz → 0.6.1__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.1/.release-please-manifest.json +3 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/CHANGELOG.md +24 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/LICENSE +1 -1
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/PKG-INFO +1 -1
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/api.md +55 -1
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/pyproject.toml +1 -1
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_base_client.py +1 -1
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_client.py +9 -2
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_version.py +1 -1
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/__init__.py +14 -0
- anchorbrowser-0.6.1/src/anchorbrowser/resources/applications/__init__.py +33 -0
- anchorbrowser-0.6.1/src/anchorbrowser/resources/applications/applications.py +715 -0
- anchorbrowser-0.6.1/src/anchorbrowser/resources/applications/auth_flows.py +547 -0
- anchorbrowser-0.6.1/src/anchorbrowser/resources/identities.py +615 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/sessions.py +14 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/__init__.py +20 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_identity_token_params.py +17 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_identity_token_response.py +23 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_params.py +18 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_response.py +25 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_delete_response.py +12 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_identities_params.py +12 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_identities_response.py +33 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_params.py +12 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_response.py +41 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/application_retrieve_response.py +37 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/applications/__init__.py +10 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_create_params.py +30 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_create_response.py +39 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_delete_response.py +12 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_list_response.py +43 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_update_params.py +32 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_update_response.py +39 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/identity_create_params.py +84 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/identity_create_response.py +26 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/identity_delete_response.py +12 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/identity_retrieve_response.py +32 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/identity_update_params.py +70 -0
- anchorbrowser-0.6.1/src/anchorbrowser/types/identity_update_response.py +22 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_create_params.py +15 -0
- anchorbrowser-0.6.1/tests/api_resources/test_identities.py +514 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_sessions.py +2 -0
- anchorbrowser-0.5.4/.release-please-manifest.json +0 -3
- anchorbrowser-0.5.4/src/anchorbrowser/resources/identities.py +0 -163
- anchorbrowser-0.5.4/tests/api_resources/test_identities.py +0 -108
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/.gitignore +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/CONTRIBUTING.md +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/README.md +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/SECURITY.md +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/bin/check-release-environment +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/bin/publish-pypi +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/examples/.keep +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/noxfile.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/release-please-config.json +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/requirements-dev.lock +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/requirements.lock +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_compat.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_constants.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_exceptions.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_files.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_models.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_qs.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_resource.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_streaming.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_types.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_compat.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_datetime_parse.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_logs.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_proxy.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_reflection.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_resources_proxy.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_streams.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_sync.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_transform.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_typing.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_utils.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/lib/.keep +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/lib/agent.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/lib/browser.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/py.typed +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/agent.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/browser.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/events.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/extensions.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/profiles.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/agent/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/agent/agent.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/agent/files.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/all.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/clipboard.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/keyboard.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/mouse.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/recordings/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/recordings/primary.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/recordings/recordings.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/task/run.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/task.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/tools.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/event_signal_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/event_wait_for_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/event_wait_for_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_delete_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_list_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_manifest.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_retrieve_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_upload_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_upload_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/identity_retrieve_credentials_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/profile_create_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/profile_list_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/profile_retrieve_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_copy_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_create_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_drag_and_drop_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_drag_and_drop_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_goto_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_goto_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_list_pages_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_paste_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_paste_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_retrieve_downloads_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_retrieve_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_scroll_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_scroll_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_upload_file_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_upload_file_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/file_list_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/file_upload_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/file_upload_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/all_status_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/clipboard_get_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/clipboard_set_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/clipboard_set_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_shortcut_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_shortcut_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_type_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_type_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_click_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_click_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_double_click_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_double_click_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_move_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_move_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recording_list_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recording_pause_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recording_resume_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recordings/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/shared/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/shared/success_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_create_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_create_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_list_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_list_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_run_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_run_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_fetch_webpage_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_fetch_webpage_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_perform_web_task_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_perform_web_task_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_screenshot_webpage_params.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/agent/test_files.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/recordings/__init__.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/recordings/test_primary.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_agent.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_all.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_clipboard.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_keyboard.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_mouse.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_recordings.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_events.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_extensions.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_profiles.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_task.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_tools.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/conftest.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/sample_file.txt +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_client.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_deepcopy.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_extract_files.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_files.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_models.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_qs.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_required_args.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_response.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_streaming.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_transform.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_utils/test_datetime_parse.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_utils/test_proxy.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_utils/test_typing.py +0 -0
- {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/utils.py +0 -0
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.1 (2026-01-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.6.0...v0.6.1](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/compare/v0.6.0...v0.6.1)
|
|
6
|
+
|
|
7
|
+
## 0.6.0 (2026-01-05)
|
|
8
|
+
|
|
9
|
+
Full Changelog: [v0.5.4...v0.6.0](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/compare/v0.5.4...v0.6.0)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* added applications endpoints as well ([ed63175](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/ed63175860a8ae9b9faa7273715cd2bdd29a4630))
|
|
14
|
+
* added identity endpoints ([4c8b5e5](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/4c8b5e56cf7b839b4ea10286d71a1284451bc5ac))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* use async_to_httpx_files in patch method ([ab770df](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/ab770df308f8eec33156bccbfea6fd0fd289ab1f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Chores
|
|
23
|
+
|
|
24
|
+
* **internal:** add `--fix` argument to lint script ([b4769fe](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/b4769fe1f15ed89ce57412661b6b717ff0438fa9))
|
|
25
|
+
* **internal:** version bump ([3d54a22](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/commit/3d54a22f2fed0955b3fcf36cc4ba82e36828eca8))
|
|
26
|
+
|
|
3
27
|
## 0.5.4 (2026-01-02)
|
|
4
28
|
|
|
5
29
|
Full Changelog: [v0.5.3...v0.5.4](https://github.com/anchorbrowser/AnchorBrowser-SDK-Python/compare/v0.5.3...v0.5.4)
|
|
@@ -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.1
|
|
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
|
|
|
@@ -21,7 +21,7 @@ from ._types import (
|
|
|
21
21
|
)
|
|
22
22
|
from ._utils import is_given, get_async_library
|
|
23
23
|
from ._version import __version__
|
|
24
|
-
from .resources import task, agent, tools, events, browser, profiles, extensions, identities
|
|
24
|
+
from .resources import task, agent, tools, events, browser, profiles, extensions, identities, applications
|
|
25
25
|
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
|
|
26
26
|
from ._exceptions import APIStatusError, AnchorbrowserError
|
|
27
27
|
from ._base_client import (
|
|
@@ -53,6 +53,7 @@ class Anchorbrowser(SyncAPIClient):
|
|
|
53
53
|
events: events.EventsResource
|
|
54
54
|
task: task.TaskResource
|
|
55
55
|
identities: identities.IdentitiesResource
|
|
56
|
+
applications: applications.ApplicationsResource
|
|
56
57
|
with_raw_response: AnchorbrowserWithRawResponse
|
|
57
58
|
with_streaming_response: AnchorbrowserWithStreamedResponse
|
|
58
59
|
|
|
@@ -119,6 +120,7 @@ class Anchorbrowser(SyncAPIClient):
|
|
|
119
120
|
self.events = events.EventsResource(self)
|
|
120
121
|
self.task = task.TaskResource(self)
|
|
121
122
|
self.identities = identities.IdentitiesResource(self)
|
|
123
|
+
self.applications = applications.ApplicationsResource(self)
|
|
122
124
|
self.with_raw_response = AnchorbrowserWithRawResponse(self)
|
|
123
125
|
self.with_streaming_response = AnchorbrowserWithStreamedResponse(self)
|
|
124
126
|
|
|
@@ -237,6 +239,7 @@ class AsyncAnchorbrowser(AsyncAPIClient):
|
|
|
237
239
|
events: events.AsyncEventsResource
|
|
238
240
|
task: task.AsyncTaskResource
|
|
239
241
|
identities: identities.AsyncIdentitiesResource
|
|
242
|
+
applications: applications.AsyncApplicationsResource
|
|
240
243
|
with_raw_response: AsyncAnchorbrowserWithRawResponse
|
|
241
244
|
with_streaming_response: AsyncAnchorbrowserWithStreamedResponse
|
|
242
245
|
|
|
@@ -303,6 +306,7 @@ class AsyncAnchorbrowser(AsyncAPIClient):
|
|
|
303
306
|
self.events = events.AsyncEventsResource(self)
|
|
304
307
|
self.task = task.AsyncTaskResource(self)
|
|
305
308
|
self.identities = identities.AsyncIdentitiesResource(self)
|
|
309
|
+
self.applications = applications.AsyncApplicationsResource(self)
|
|
306
310
|
self.with_raw_response = AsyncAnchorbrowserWithRawResponse(self)
|
|
307
311
|
self.with_streaming_response = AsyncAnchorbrowserWithStreamedResponse(self)
|
|
308
312
|
|
|
@@ -424,6 +428,7 @@ class AnchorbrowserWithRawResponse:
|
|
|
424
428
|
self.events = events.EventsResourceWithRawResponse(client.events)
|
|
425
429
|
self.task = task.TaskResourceWithRawResponse(client.task)
|
|
426
430
|
self.identities = identities.IdentitiesResourceWithRawResponse(client.identities)
|
|
431
|
+
self.applications = applications.ApplicationsResourceWithRawResponse(client.applications)
|
|
427
432
|
|
|
428
433
|
|
|
429
434
|
class AsyncAnchorbrowserWithRawResponse:
|
|
@@ -439,6 +444,7 @@ class AsyncAnchorbrowserWithRawResponse:
|
|
|
439
444
|
self.events = events.AsyncEventsResourceWithRawResponse(client.events)
|
|
440
445
|
self.task = task.AsyncTaskResourceWithRawResponse(client.task)
|
|
441
446
|
self.identities = identities.AsyncIdentitiesResourceWithRawResponse(client.identities)
|
|
447
|
+
self.applications = applications.AsyncApplicationsResourceWithRawResponse(client.applications)
|
|
442
448
|
|
|
443
449
|
|
|
444
450
|
class AnchorbrowserWithStreamedResponse:
|
|
@@ -454,6 +460,7 @@ class AnchorbrowserWithStreamedResponse:
|
|
|
454
460
|
self.events = events.EventsResourceWithStreamingResponse(client.events)
|
|
455
461
|
self.task = task.TaskResourceWithStreamingResponse(client.task)
|
|
456
462
|
self.identities = identities.IdentitiesResourceWithStreamingResponse(client.identities)
|
|
463
|
+
self.applications = applications.ApplicationsResourceWithStreamingResponse(client.applications)
|
|
457
464
|
|
|
458
465
|
|
|
459
466
|
class AsyncAnchorbrowserWithStreamedResponse:
|
|
@@ -469,7 +476,7 @@ class AsyncAnchorbrowserWithStreamedResponse:
|
|
|
469
476
|
self.events = events.AsyncEventsResourceWithStreamingResponse(client.events)
|
|
470
477
|
self.task = task.AsyncTaskResourceWithStreamingResponse(client.task)
|
|
471
478
|
self.identities = identities.AsyncIdentitiesResourceWithStreamingResponse(client.identities)
|
|
472
|
-
|
|
479
|
+
self.applications = applications.AsyncApplicationsResourceWithStreamingResponse(client.applications)
|
|
473
480
|
|
|
474
481
|
Client = Anchorbrowser
|
|
475
482
|
|
|
@@ -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
|
+
]
|