kernel 0.48.0__tar.gz → 0.49.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.49.0/.release-please-manifest.json +3 -0
- {kernel-0.48.0 → kernel-0.49.0}/CHANGELOG.md +9 -0
- {kernel-0.48.0 → kernel-0.49.0}/PKG-INFO +1 -1
- {kernel-0.48.0 → kernel-0.49.0}/pyproject.toml +1 -1
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_version.py +1 -1
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/browsers.py +2 -2
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/replays.py +4 -2
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_list_params.py +1 -1
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/replay_start_params.py +4 -1
- kernel-0.48.0/.release-please-manifest.json +0 -3
- {kernel-0.48.0 → kernel-0.49.0}/.gitignore +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/CONTRIBUTING.md +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/LICENSE +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/README.md +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/SECURITY.md +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/api.md +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/bin/check-release-environment +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/bin/publish-pypi +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/examples/.keep +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/noxfile.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/release-please-config.json +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/requirements-dev.lock +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/requirements.lock +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_base_client.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_client.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_compat.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_constants.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_exceptions.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_files.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_models.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_qs.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_resource.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_streaming.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_types.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_compat.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_datetime_parse.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_json.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_logs.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_path.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_proxy.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_reflection.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_resources_proxy.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_streams.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_sync.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_transform.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_typing.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/_utils/_utils.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/app_framework.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/lib/.keep +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/pagination.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/py.typed +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/apps.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/auth/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/auth/auth.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/auth/connections.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browser_pools.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/computer.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/fs/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/fs/fs.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/fs/watch.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/logs.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/playwright.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/browsers/process.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/credential_providers.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/credentials.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/deployments.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/extensions.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/invocations.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/profiles.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/projects/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/projects/limits.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/projects/projects.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/resources/proxies.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/app_list_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/app_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/connection_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/connection_follow_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/connection_list_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/connection_login_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/connection_submit_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/connection_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/login_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/managed_auth.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/auth/submit_fields_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_create_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_delete_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_load_extensions_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_persistence.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_persistence_param.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_acquire_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_acquire_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_delete_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_ref.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_release_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_pool_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_retrieve_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_retrieve_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_update_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browser_usage.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_batch_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_capture_screenshot_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_click_mouse_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_drag_mouse_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_get_mouse_position_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_move_mouse_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_press_key_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_read_clipboard_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_scroll_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_type_text_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_write_clipboard_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_create_directory_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_delete_directory_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_delete_file_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_download_dir_zip_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_file_info_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_file_info_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_list_files_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_list_files_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_move_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_read_file_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_set_file_permissions_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_upload_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_upload_zip_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/f_write_file_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/fs/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/fs/watch_events_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/fs/watch_start_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/fs/watch_start_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/log_stream_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/playwright_execute_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/playwright_execute_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_exec_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_exec_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_kill_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_kill_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_resize_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_resize_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_spawn_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_spawn_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_status_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_stdin_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_stdin_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/process_stdout_stream_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/replay_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/replay_start_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_list_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_provider.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_provider_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_provider_item.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_provider_list_items_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_provider_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_provider_test_result.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_provider_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_totp_code_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/credential_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_create_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_follow_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_follow_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_list_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_retrieve_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/deployment_state_event.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/extension_download_from_chrome_store_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/extension_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/extension_upload_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/extension_upload_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_create_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_follow_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_follow_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_list_browsers_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_list_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_retrieve_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_state_event.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/invocation_update_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/profile.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/profile_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/profile_list_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/project.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/project_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/project_list_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/project_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/projects/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/projects/limit_update_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/projects/project_limits.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/proxy_check_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/proxy_check_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/proxy_create_params.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/proxy_create_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/proxy_list_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/proxy_retrieve_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/app_action.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/browser_extension.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/browser_profile.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/browser_viewport.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/error_detail.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/error_event.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/error_model.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/heartbeat_event.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared/log_event.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared_params/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared_params/browser_extension.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared_params/browser_profile.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/shared_params/browser_viewport.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/auth/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/auth/test_connections.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/fs/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/fs/test_watch.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/test_computer.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/test_fs.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/test_logs.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/test_playwright.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/test_process.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/browsers/test_replays.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/projects/__init__.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/projects/test_limits.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_apps.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_browser_pools.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_browsers.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_credential_providers.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_credentials.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_deployments.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_extensions.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_invocations.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_profiles.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_projects.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/api_resources/test_proxies.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/conftest.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/sample_file.txt +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_client.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_deepcopy.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_extract_files.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_files.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_models.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_qs.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_required_args.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_response.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_streaming.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_transform.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_utils/test_json.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_utils/test_path.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_utils/test_proxy.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/test_utils/test_typing.py +0 -0
- {kernel-0.48.0 → kernel-0.49.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.49.0 (2026-04-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.48.0...v0.49.0](https://github.com/kernel/kernel-python-sdk/compare/v0.48.0...v0.49.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Neil/kernel 1180 fuzzy matching for browser pools ([4089baf](https://github.com/kernel/kernel-python-sdk/commit/4089bafcec6fe6029b0b3730767e7428e2ab6e07))
|
|
10
|
+
* Raise replay framerate limit from 20 to 60 fps ([707b339](https://github.com/kernel/kernel-python-sdk/commit/707b3398f435ebaf1a801e6310e2c827b1766e82))
|
|
11
|
+
|
|
3
12
|
## 0.48.0 (2026-04-10)
|
|
4
13
|
|
|
5
14
|
Full Changelog: [v0.47.0...v0.48.0](https://github.com/kernel/kernel-python-sdk/compare/v0.47.0...v0.48.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: kernel
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.49.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
|
|
@@ -367,7 +367,7 @@ class BrowsersResource(SyncAPIResource):
|
|
|
367
367
|
|
|
368
368
|
offset: Number of results to skip. Defaults to 0.
|
|
369
369
|
|
|
370
|
-
query: Search browsers by session ID, profile ID, or
|
|
370
|
+
query: Search browsers by session ID, profile ID, proxy ID, or pool name.
|
|
371
371
|
|
|
372
372
|
status: Filter sessions by status. "active" returns only active sessions (default),
|
|
373
373
|
"deleted" returns only soft-deleted sessions, "all" returns both.
|
|
@@ -803,7 +803,7 @@ class AsyncBrowsersResource(AsyncAPIResource):
|
|
|
803
803
|
|
|
804
804
|
offset: Number of results to skip. Defaults to 0.
|
|
805
805
|
|
|
806
|
-
query: Search browsers by session ID, profile ID, or
|
|
806
|
+
query: Search browsers by session ID, profile ID, proxy ID, or pool name.
|
|
807
807
|
|
|
808
808
|
status: Filter sessions by status. "active" returns only active sessions (default),
|
|
809
809
|
"deleted" returns only soft-deleted sessions, "all" returns both.
|
|
@@ -139,7 +139,8 @@ class ReplaysResource(SyncAPIResource):
|
|
|
139
139
|
Start recording the browser session and return a replay ID.
|
|
140
140
|
|
|
141
141
|
Args:
|
|
142
|
-
framerate: Recording framerate in fps.
|
|
142
|
+
framerate: Recording framerate in fps. Values above 20 require GPU to be enabled on the
|
|
143
|
+
browser session.
|
|
143
144
|
|
|
144
145
|
max_duration_in_seconds: Maximum recording duration in seconds.
|
|
145
146
|
|
|
@@ -315,7 +316,8 @@ class AsyncReplaysResource(AsyncAPIResource):
|
|
|
315
316
|
Start recording the browser session and return a replay ID.
|
|
316
317
|
|
|
317
318
|
Args:
|
|
318
|
-
framerate: Recording framerate in fps.
|
|
319
|
+
framerate: Recording framerate in fps. Values above 20 require GPU to be enabled on the
|
|
320
|
+
browser session.
|
|
319
321
|
|
|
320
322
|
max_duration_in_seconds: Maximum recording duration in seconds.
|
|
321
323
|
|
|
@@ -22,7 +22,7 @@ class BrowserListParams(TypedDict, total=False):
|
|
|
22
22
|
"""Number of results to skip. Defaults to 0."""
|
|
23
23
|
|
|
24
24
|
query: str
|
|
25
|
-
"""Search browsers by session ID, profile ID, or
|
|
25
|
+
"""Search browsers by session ID, profile ID, proxy ID, or pool name."""
|
|
26
26
|
|
|
27
27
|
status: Literal["active", "deleted", "all"]
|
|
28
28
|
"""Filter sessions by status.
|
|
@@ -9,7 +9,10 @@ __all__ = ["ReplayStartParams"]
|
|
|
9
9
|
|
|
10
10
|
class ReplayStartParams(TypedDict, total=False):
|
|
11
11
|
framerate: int
|
|
12
|
-
"""Recording framerate in fps.
|
|
12
|
+
"""Recording framerate in fps.
|
|
13
|
+
|
|
14
|
+
Values above 20 require GPU to be enabled on the browser session.
|
|
15
|
+
"""
|
|
13
16
|
|
|
14
17
|
max_duration_in_seconds: int
|
|
15
18
|
"""Maximum recording duration in seconds."""
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_capture_screenshot_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_get_mouse_position_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_read_clipboard_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py
RENAMED
|
File without changes
|
{kernel-0.48.0 → kernel-0.49.0}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.48.0 → kernel-0.49.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
|
{kernel-0.48.0 → kernel-0.49.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
|