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