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.
Files changed (199) hide show
  1. anchorbrowser-0.6.1/.release-please-manifest.json +3 -0
  2. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/CHANGELOG.md +24 -0
  3. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/LICENSE +1 -1
  4. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/PKG-INFO +1 -1
  5. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/api.md +55 -1
  6. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/pyproject.toml +1 -1
  7. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_base_client.py +1 -1
  8. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_client.py +9 -2
  9. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_version.py +1 -1
  10. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/__init__.py +14 -0
  11. anchorbrowser-0.6.1/src/anchorbrowser/resources/applications/__init__.py +33 -0
  12. anchorbrowser-0.6.1/src/anchorbrowser/resources/applications/applications.py +715 -0
  13. anchorbrowser-0.6.1/src/anchorbrowser/resources/applications/auth_flows.py +547 -0
  14. anchorbrowser-0.6.1/src/anchorbrowser/resources/identities.py +615 -0
  15. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/sessions.py +14 -0
  16. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/__init__.py +20 -0
  17. anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_identity_token_params.py +17 -0
  18. anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_identity_token_response.py +23 -0
  19. anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_params.py +18 -0
  20. anchorbrowser-0.6.1/src/anchorbrowser/types/application_create_response.py +25 -0
  21. anchorbrowser-0.6.1/src/anchorbrowser/types/application_delete_response.py +12 -0
  22. anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_identities_params.py +12 -0
  23. anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_identities_response.py +33 -0
  24. anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_params.py +12 -0
  25. anchorbrowser-0.6.1/src/anchorbrowser/types/application_list_response.py +41 -0
  26. anchorbrowser-0.6.1/src/anchorbrowser/types/application_retrieve_response.py +37 -0
  27. anchorbrowser-0.6.1/src/anchorbrowser/types/applications/__init__.py +10 -0
  28. anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_create_params.py +30 -0
  29. anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_create_response.py +39 -0
  30. anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_delete_response.py +12 -0
  31. anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_list_response.py +43 -0
  32. anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_update_params.py +32 -0
  33. anchorbrowser-0.6.1/src/anchorbrowser/types/applications/auth_flow_update_response.py +39 -0
  34. anchorbrowser-0.6.1/src/anchorbrowser/types/identity_create_params.py +84 -0
  35. anchorbrowser-0.6.1/src/anchorbrowser/types/identity_create_response.py +26 -0
  36. anchorbrowser-0.6.1/src/anchorbrowser/types/identity_delete_response.py +12 -0
  37. anchorbrowser-0.6.1/src/anchorbrowser/types/identity_retrieve_response.py +32 -0
  38. anchorbrowser-0.6.1/src/anchorbrowser/types/identity_update_params.py +70 -0
  39. anchorbrowser-0.6.1/src/anchorbrowser/types/identity_update_response.py +22 -0
  40. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_create_params.py +15 -0
  41. anchorbrowser-0.6.1/tests/api_resources/test_identities.py +514 -0
  42. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_sessions.py +2 -0
  43. anchorbrowser-0.5.4/.release-please-manifest.json +0 -3
  44. anchorbrowser-0.5.4/src/anchorbrowser/resources/identities.py +0 -163
  45. anchorbrowser-0.5.4/tests/api_resources/test_identities.py +0 -108
  46. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/.gitignore +0 -0
  47. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/CONTRIBUTING.md +0 -0
  48. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/README.md +0 -0
  49. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/SECURITY.md +0 -0
  50. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/bin/check-release-environment +0 -0
  51. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/bin/publish-pypi +0 -0
  52. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/examples/.keep +0 -0
  53. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/noxfile.py +0 -0
  54. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/release-please-config.json +0 -0
  55. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/requirements-dev.lock +0 -0
  56. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/requirements.lock +0 -0
  57. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/__init__.py +0 -0
  58. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_compat.py +0 -0
  59. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_constants.py +0 -0
  60. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_exceptions.py +0 -0
  61. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_files.py +0 -0
  62. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_models.py +0 -0
  63. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_qs.py +0 -0
  64. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_resource.py +0 -0
  65. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_response.py +0 -0
  66. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_streaming.py +0 -0
  67. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_types.py +0 -0
  68. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/__init__.py +0 -0
  69. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_compat.py +0 -0
  70. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_datetime_parse.py +0 -0
  71. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_logs.py +0 -0
  72. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_proxy.py +0 -0
  73. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_reflection.py +0 -0
  74. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_resources_proxy.py +0 -0
  75. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_streams.py +0 -0
  76. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_sync.py +0 -0
  77. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_transform.py +0 -0
  78. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_typing.py +0 -0
  79. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/_utils/_utils.py +0 -0
  80. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/lib/.keep +0 -0
  81. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/lib/agent.py +0 -0
  82. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/lib/browser.py +0 -0
  83. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/py.typed +0 -0
  84. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/agent.py +0 -0
  85. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/browser.py +0 -0
  86. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/events.py +0 -0
  87. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/extensions.py +0 -0
  88. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/profiles.py +0 -0
  89. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/__init__.py +0 -0
  90. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/agent/__init__.py +0 -0
  91. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/agent/agent.py +0 -0
  92. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/agent/files.py +0 -0
  93. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/all.py +0 -0
  94. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/clipboard.py +0 -0
  95. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/keyboard.py +0 -0
  96. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/mouse.py +0 -0
  97. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/recordings/__init__.py +0 -0
  98. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/recordings/primary.py +0 -0
  99. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/sessions/recordings/recordings.py +0 -0
  100. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/task/run.py +0 -0
  101. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/task.py +0 -0
  102. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/resources/tools.py +0 -0
  103. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/event_signal_params.py +0 -0
  104. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/event_wait_for_params.py +0 -0
  105. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/event_wait_for_response.py +0 -0
  106. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_delete_response.py +0 -0
  107. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_list_response.py +0 -0
  108. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_manifest.py +0 -0
  109. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_retrieve_response.py +0 -0
  110. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_upload_params.py +0 -0
  111. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/extension_upload_response.py +0 -0
  112. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/identity_retrieve_credentials_response.py +0 -0
  113. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/profile_create_params.py +0 -0
  114. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/profile_list_response.py +0 -0
  115. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/profile_retrieve_response.py +0 -0
  116. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_copy_response.py +0 -0
  117. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_create_response.py +0 -0
  118. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_drag_and_drop_params.py +0 -0
  119. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_drag_and_drop_response.py +0 -0
  120. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_goto_params.py +0 -0
  121. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_goto_response.py +0 -0
  122. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_list_pages_response.py +0 -0
  123. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_paste_params.py +0 -0
  124. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_paste_response.py +0 -0
  125. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_retrieve_downloads_response.py +0 -0
  126. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_retrieve_response.py +0 -0
  127. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_scroll_params.py +0 -0
  128. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_scroll_response.py +0 -0
  129. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_upload_file_params.py +0 -0
  130. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/session_upload_file_response.py +0 -0
  131. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/__init__.py +0 -0
  132. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/__init__.py +0 -0
  133. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/file_list_response.py +0 -0
  134. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/file_upload_params.py +0 -0
  135. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/agent/file_upload_response.py +0 -0
  136. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/all_status_response.py +0 -0
  137. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/clipboard_get_response.py +0 -0
  138. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/clipboard_set_params.py +0 -0
  139. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/clipboard_set_response.py +0 -0
  140. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_shortcut_params.py +0 -0
  141. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_shortcut_response.py +0 -0
  142. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_type_params.py +0 -0
  143. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/keyboard_type_response.py +0 -0
  144. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_click_params.py +0 -0
  145. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_click_response.py +0 -0
  146. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_double_click_params.py +0 -0
  147. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_double_click_response.py +0 -0
  148. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_move_params.py +0 -0
  149. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/mouse_move_response.py +0 -0
  150. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recording_list_response.py +0 -0
  151. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recording_pause_response.py +0 -0
  152. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recording_resume_response.py +0 -0
  153. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/sessions/recordings/__init__.py +0 -0
  154. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/shared/__init__.py +0 -0
  155. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/shared/success_response.py +0 -0
  156. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_create_params.py +0 -0
  157. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_create_response.py +0 -0
  158. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_list_params.py +0 -0
  159. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_list_response.py +0 -0
  160. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_run_params.py +0 -0
  161. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/task_run_response.py +0 -0
  162. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_fetch_webpage_params.py +0 -0
  163. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_fetch_webpage_response.py +0 -0
  164. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_perform_web_task_params.py +0 -0
  165. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_perform_web_task_response.py +0 -0
  166. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/src/anchorbrowser/types/tool_screenshot_webpage_params.py +0 -0
  167. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/__init__.py +0 -0
  168. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/__init__.py +0 -0
  169. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/__init__.py +0 -0
  170. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/agent/test_files.py +0 -0
  171. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/recordings/__init__.py +0 -0
  172. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/recordings/test_primary.py +0 -0
  173. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_agent.py +0 -0
  174. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_all.py +0 -0
  175. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_clipboard.py +0 -0
  176. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_keyboard.py +0 -0
  177. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_mouse.py +0 -0
  178. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/sessions/test_recordings.py +0 -0
  179. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_events.py +0 -0
  180. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_extensions.py +0 -0
  181. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_profiles.py +0 -0
  182. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_task.py +0 -0
  183. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/api_resources/test_tools.py +0 -0
  184. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/conftest.py +0 -0
  185. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/sample_file.txt +0 -0
  186. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_client.py +0 -0
  187. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_deepcopy.py +0 -0
  188. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_extract_files.py +0 -0
  189. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_files.py +0 -0
  190. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_models.py +0 -0
  191. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_qs.py +0 -0
  192. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_required_args.py +0 -0
  193. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_response.py +0 -0
  194. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_streaming.py +0 -0
  195. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_transform.py +0 -0
  196. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_utils/test_datetime_parse.py +0 -0
  197. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_utils/test_proxy.py +0 -0
  198. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/test_utils/test_typing.py +0 -0
  199. {anchorbrowser-0.5.4 → anchorbrowser-0.6.1}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.6.1"
3
+ }
@@ -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 2025 Anchorbrowser
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.5.4
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 IdentityRetrieveCredentialsResponse
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>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "anchorbrowser"
3
- version = "0.5.4"
3
+ version = "0.6.1"
4
4
  description = "The official Python library for the anchorbrowser API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -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=to_httpx_files(files), **options
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
 
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "anchorbrowser"
4
- __version__ = "0.5.4" # x-release-please-version
4
+ __version__ = "0.6.1" # x-release-please-version
@@ -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
+ ]