kernel 0.46.0__tar.gz → 0.47.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.
- kernel-0.47.0/.release-please-manifest.json +3 -0
- {kernel-0.46.0 → kernel-0.47.0}/CHANGELOG.md +8 -0
- {kernel-0.46.0 → kernel-0.47.0}/PKG-INFO +1 -1
- {kernel-0.46.0 → kernel-0.47.0}/pyproject.toml +1 -1
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_version.py +1 -1
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/auth/connections.py +10 -6
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/connection_create_params.py +4 -1
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/managed_auth.py +3 -0
- kernel-0.46.0/.release-please-manifest.json +0 -3
- {kernel-0.46.0 → kernel-0.47.0}/.gitignore +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/CONTRIBUTING.md +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/LICENSE +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/README.md +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/SECURITY.md +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/api.md +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/bin/check-release-environment +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/bin/publish-pypi +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/examples/.keep +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/noxfile.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/release-please-config.json +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/requirements-dev.lock +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/requirements.lock +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_base_client.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_client.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_compat.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_constants.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_exceptions.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_files.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_models.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_qs.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_resource.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_streaming.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_types.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_compat.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_datetime_parse.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_json.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_logs.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_path.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_proxy.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_reflection.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_resources_proxy.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_streams.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_sync.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_transform.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_typing.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/_utils/_utils.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/app_framework.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/lib/.keep +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/pagination.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/py.typed +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/apps.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/auth/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/auth/auth.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browser_pools.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/browsers.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/computer.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/fs/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/fs/fs.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/fs/watch.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/logs.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/playwright.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/process.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/browsers/replays.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/credential_providers.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/credentials.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/deployments.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/extensions.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/invocations.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/profiles.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/resources/proxies.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/app_list_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/app_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/connection_follow_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/connection_list_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/connection_login_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/connection_submit_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/connection_update_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/login_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/auth/submit_fields_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_create_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_delete_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_list_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_load_extensions_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_persistence.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_persistence_param.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_acquire_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_acquire_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_delete_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_ref.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_release_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_pool_update_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_retrieve_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_retrieve_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_update_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_update_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browser_usage.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_batch_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_capture_screenshot_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_click_mouse_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_drag_mouse_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_get_mouse_position_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_move_mouse_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_press_key_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_read_clipboard_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_scroll_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_type_text_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_write_clipboard_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_create_directory_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_delete_directory_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_delete_file_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_download_dir_zip_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_file_info_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_file_info_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_list_files_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_list_files_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_move_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_read_file_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_set_file_permissions_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_upload_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_upload_zip_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/f_write_file_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/fs/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/fs/watch_events_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/fs/watch_start_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/fs/watch_start_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/log_stream_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/playwright_execute_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/playwright_execute_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_exec_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_exec_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_kill_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_kill_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_resize_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_resize_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_spawn_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_spawn_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_status_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_stdin_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_stdin_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/process_stdout_stream_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/replay_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/replay_start_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/replay_start_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_list_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_provider.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_provider_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_provider_item.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_provider_list_items_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_provider_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_provider_test_result.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_provider_update_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_totp_code_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/credential_update_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_create_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_follow_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_follow_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_list_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_retrieve_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/deployment_state_event.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/extension_download_from_chrome_store_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/extension_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/extension_upload_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/extension_upload_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_create_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_follow_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_follow_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_list_browsers_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_list_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_retrieve_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_state_event.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_update_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/invocation_update_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/profile.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/profile_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/profile_list_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/proxy_check_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/proxy_check_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/proxy_create_params.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/proxy_create_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/proxy_list_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/proxy_retrieve_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/app_action.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/browser_extension.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/browser_profile.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/browser_viewport.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/error_detail.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/error_event.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/error_model.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/heartbeat_event.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared/log_event.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared_params/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared_params/browser_extension.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared_params/browser_profile.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/shared_params/browser_viewport.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/auth/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/auth/test_connections.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/fs/__init__.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/fs/test_watch.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/test_computer.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/test_fs.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/test_logs.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/test_playwright.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/test_process.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/browsers/test_replays.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_apps.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_browser_pools.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_browsers.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_credential_providers.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_credentials.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_deployments.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_extensions.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_invocations.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_profiles.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/api_resources/test_proxies.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/conftest.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/sample_file.txt +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_client.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_deepcopy.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_extract_files.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_files.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_models.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_qs.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_required_args.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_response.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_streaming.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_transform.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_utils/test_json.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_utils/test_path.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_utils/test_proxy.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/test_utils/test_typing.py +0 -0
- {kernel-0.46.0 → kernel-0.47.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.47.0 (2026-04-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.46.0...v0.47.0](https://github.com/kernel/kernel-python-sdk/compare/v0.46.0...v0.47.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Include login_url in managed auth connection response ([b97b320](https://github.com/kernel/kernel-python-sdk/commit/b97b3203c612f3883d7d08d6f3f6282ce726ec59))
|
|
10
|
+
|
|
3
11
|
## 0.46.0 (2026-04-06)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.45.0...v0.46.0](https://github.com/kernel/kernel-python-sdk/compare/v0.45.0...v0.46.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: kernel
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.47.0
|
|
4
4
|
Summary: The official Python library for the kernel API
|
|
5
5
|
Project-URL: Homepage, https://github.com/kernel/kernel-python-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/kernel/kernel-python-sdk
|
|
@@ -76,13 +76,15 @@ class ConnectionsResource(SyncAPIResource):
|
|
|
76
76
|
) -> ManagedAuth:
|
|
77
77
|
"""Creates an auth connection for a profile and domain combination.
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
79
|
+
If the provided
|
|
80
|
+
profile_name does not exist, it is created automatically. Returns 409 Conflict
|
|
81
|
+
if an auth connection already exists for the given profile and domain.
|
|
81
82
|
|
|
82
83
|
Args:
|
|
83
84
|
domain: Domain for authentication
|
|
84
85
|
|
|
85
|
-
profile_name: Name of the profile to manage authentication for
|
|
86
|
+
profile_name: Name of the profile to manage authentication for. If the profile does not exist,
|
|
87
|
+
it is created automatically.
|
|
86
88
|
|
|
87
89
|
allowed_domains: Additional domains valid for this auth flow (besides the primary domain). Useful
|
|
88
90
|
when login pages redirect to different domains.
|
|
@@ -537,13 +539,15 @@ class AsyncConnectionsResource(AsyncAPIResource):
|
|
|
537
539
|
) -> ManagedAuth:
|
|
538
540
|
"""Creates an auth connection for a profile and domain combination.
|
|
539
541
|
|
|
540
|
-
|
|
541
|
-
|
|
542
|
+
If the provided
|
|
543
|
+
profile_name does not exist, it is created automatically. Returns 409 Conflict
|
|
544
|
+
if an auth connection already exists for the given profile and domain.
|
|
542
545
|
|
|
543
546
|
Args:
|
|
544
547
|
domain: Domain for authentication
|
|
545
548
|
|
|
546
|
-
profile_name: Name of the profile to manage authentication for
|
|
549
|
+
profile_name: Name of the profile to manage authentication for. If the profile does not exist,
|
|
550
|
+
it is created automatically.
|
|
547
551
|
|
|
548
552
|
allowed_domains: Additional domains valid for this auth flow (besides the primary domain). Useful
|
|
549
553
|
when login pages redirect to different domains.
|
|
@@ -14,7 +14,10 @@ class ConnectionCreateParams(TypedDict, total=False):
|
|
|
14
14
|
"""Domain for authentication"""
|
|
15
15
|
|
|
16
16
|
profile_name: Required[str]
|
|
17
|
-
"""Name of the profile to manage authentication for
|
|
17
|
+
"""Name of the profile to manage authentication for.
|
|
18
|
+
|
|
19
|
+
If the profile does not exist, it is created automatically.
|
|
20
|
+
"""
|
|
18
21
|
|
|
19
22
|
allowed_domains: SequenceNotStr[str]
|
|
20
23
|
"""Additional domains valid for this auth flow (besides the primary domain).
|
|
@@ -215,6 +215,9 @@ class ManagedAuth(BaseModel):
|
|
|
215
215
|
live_view_url: Optional[str] = None
|
|
216
216
|
"""Browser live view URL for debugging (present when flow in progress)"""
|
|
217
217
|
|
|
218
|
+
login_url: Optional[str] = None
|
|
219
|
+
"""Optional login page URL to skip discovery"""
|
|
220
|
+
|
|
218
221
|
mfa_options: Optional[List[MfaOption]] = None
|
|
219
222
|
"""
|
|
220
223
|
MFA method options (present when flow_step=awaiting_input and MFA selection
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_capture_screenshot_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_get_mouse_position_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_read_clipboard_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py
RENAMED
|
File without changes
|
{kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/browsers/computer_write_clipboard_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.46.0 → kernel-0.47.0}/src/kernel/types/extension_download_from_chrome_store_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|