kernel 0.78.0__tar.gz → 0.78.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kernel-0.78.1/.release-please-manifest.json +3 -0
- {kernel-0.78.0 → kernel-0.78.1}/CHANGELOG.md +8 -0
- {kernel-0.78.0 → kernel-0.78.1}/PKG-INFO +1 -1
- {kernel-0.78.0 → kernel-0.78.1}/pyproject.toml +1 -1
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_version.py +1 -1
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browser_pools.py +2 -2
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_create_params.py +1 -1
- kernel-0.78.0/.release-please-manifest.json +0 -3
- {kernel-0.78.0 → kernel-0.78.1}/.gitignore +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/CONTRIBUTING.md +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/LICENSE +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/README.md +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/SECURITY.md +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/api.md +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/bin/check-release-environment +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/bin/publish-pypi +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/examples/.keep +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/examples/browser_routing.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/examples/browser_telemetry.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/noxfile.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/release-please-config.json +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/requirements-dev.lock +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/requirements.lock +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_base_client.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_client.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_compat.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_constants.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_exceptions.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_files.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_models.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_qs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_resource.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_streaming.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_types.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_compat.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_datetime_parse.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_json.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_logs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_path.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_proxy.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_reflection.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_resources_proxy.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_streams.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_sync.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_transform.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_typing.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/_utils/_utils.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/app_framework.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/lib/.keep +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/lib/browser_routing/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/lib/browser_routing/raw_http.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/lib/browser_routing/routing.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/lib/browser_routing/util.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/pagination.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/py.typed +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/api_keys.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/apps.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/audit_logs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/auth/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/auth/auth.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/auth/connections.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/browsers.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/computer.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/fs/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/fs/fs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/fs/watch.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/logs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/playwright.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/process.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/replays.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/browsers/telemetry.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/credential_providers.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/credentials.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/deployments.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/extensions.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/invocations.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/organization/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/organization/limits.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/organization/organization.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/profiles.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/projects/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/projects/limits.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/projects/projects.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/resources/proxies.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/api_key.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/api_key_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/api_key_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/api_key_retrieve_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/api_key_rotate_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/api_key_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/app_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/app_list_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/audit_log_entry.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/audit_log_export_chunk_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/audit_log_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/connection_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/connection_follow_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/connection_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/connection_login_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/connection_submit_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/connection_timeline_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/connection_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/login_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/managed_auth.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/managed_auth_timeline_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/auth/submit_fields_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_create_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_curl_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_curl_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_list_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_load_extensions_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_acquire_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_acquire_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_delete_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_ref.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_release_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_pool_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_retrieve_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_retrieve_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_update_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browser_usage.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_api_call_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_call_stack.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_captcha_solve_result_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_cdp_connect_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_cdp_disconnect_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_console_error_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_console_log_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_event_context.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_event_source.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_http_headers.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_interaction_click_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_interaction_key_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_interaction_scroll_settled_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_live_view_connect_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_live_view_disconnect_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_disconnected_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_init_failed_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_reconnect_failed_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_reconnected_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_screenshot_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_network_idle_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_network_loading_failed_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_network_request_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_network_response_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_dom_content_loaded_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_layout_settled_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_layout_shift_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_lcp_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_load_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_navigation_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_navigation_settled_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_tab_opened_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_service_crashed_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_system_oom_kill_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_categories_config.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_categories_config_param.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_category_config.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_category_config_param.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_config.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_batch_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_capture_screenshot_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_click_mouse_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_drag_mouse_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_get_mouse_position_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_move_mouse_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_press_key_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_read_clipboard_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_scroll_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_type_text_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_write_clipboard_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_create_directory_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_delete_directory_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_delete_file_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_download_dir_zip_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_file_info_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_file_info_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_list_files_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_list_files_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_move_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_read_file_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_set_file_permissions_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_upload_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_upload_zip_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/f_write_file_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/fs/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/fs/watch_events_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/fs/watch_start_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/fs/watch_start_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/log_stream_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/playwright_execute_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/playwright_execute_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_exec_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_exec_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_kill_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_kill_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_resize_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_resize_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_spawn_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_spawn_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_status_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_stdin_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_stdin_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/process_stdout_stream_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/replay_list_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/replay_start_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/replay_start_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/telemetry_events_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/telemetry_events_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/telemetry_stream_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/telemetry_stream_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/created_api_key.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_provider.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_provider_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_provider_item.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_provider_list_items_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_provider_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_provider_test_result.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_provider_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_totp_code_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/credential_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_create_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_follow_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_follow_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_list_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_retrieve_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/deployment_state_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/extension_download_from_chrome_store_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/extension_get_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/extension_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/extension_list_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/extension_upload_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/extension_upload_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_create_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_follow_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_follow_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_list_browsers_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_list_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_retrieve_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_state_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/invocation_update_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/organization/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/organization/limit_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/organization/org_limits.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/profile.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/profile_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/profile_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/profile_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/project.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/project_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/project_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/project_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/projects/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/projects/limit_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/projects/project_limits.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_check_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_check_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_create_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_create_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_list_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_list_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_retrieve_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_update_params.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/proxy_update_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/app_action.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/browser_extension.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/browser_profile.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/browser_viewport.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/error_detail.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/error_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/error_model.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/heartbeat_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared/log_event.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared_params/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared_params/browser_extension.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared_params/browser_profile.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/shared_params/browser_viewport.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/tags.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/tags_param.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/auth/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/auth/test_connections.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/fs/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/fs/test_watch.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/test_computer.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/test_fs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/test_logs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/test_playwright.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/test_process.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/test_replays.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/browsers/test_telemetry.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/organization/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/organization/test_limits.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/projects/__init__.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/projects/test_limits.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_api_keys.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_apps.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_audit_logs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_browser_pools.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_browsers.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_credential_providers.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_credentials.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_deployments.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_extensions.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_invocations.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_profiles.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_projects.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/api_resources/test_proxies.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/conftest.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/sample_file.txt +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_browser_routing.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_client.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_extract_files.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_files.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_models.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_pagination.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_qs.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_required_args.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_response.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_streaming.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_transform.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_utils/test_datetime_parse.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_utils/test_json.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_utils/test_path.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_utils/test_proxy.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/test_utils/test_typing.py +0 -0
- {kernel-0.78.0 → kernel-0.78.1}/tests/utils.py +0 -0
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.78.1 (2026-07-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.78.0...v0.78.1](https://github.com/kernel/kernel-python-sdk/compare/v0.78.0...v0.78.1)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Default dashboard browser pools to 25% fill rate ([6a4848b](https://github.com/kernel/kernel-python-sdk/commit/6a4848bf17e5caafbd1d04639f30e3c9f9904ff9))
|
|
10
|
+
|
|
3
11
|
## 0.78.0 (2026-07-13)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.76.0...v0.78.0](https://github.com/kernel/kernel-python-sdk/compare/v0.76.0...v0.78.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: kernel
|
|
3
|
-
Version: 0.78.
|
|
3
|
+
Version: 0.78.1
|
|
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
|
|
@@ -101,7 +101,7 @@ class BrowserPoolsResource(SyncAPIResource):
|
|
|
101
101
|
|
|
102
102
|
extensions: List of browser extensions to load into the session. Provide each by id or name.
|
|
103
103
|
|
|
104
|
-
fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to
|
|
104
|
+
fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 25. The cap is 25 for
|
|
105
105
|
most organizations but can be raised per-organization, so only the lower bound
|
|
106
106
|
is enforced here.
|
|
107
107
|
|
|
@@ -679,7 +679,7 @@ class AsyncBrowserPoolsResource(AsyncAPIResource):
|
|
|
679
679
|
|
|
680
680
|
extensions: List of browser extensions to load into the session. Provide each by id or name.
|
|
681
681
|
|
|
682
|
-
fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to
|
|
682
|
+
fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 25. The cap is 25 for
|
|
683
683
|
most organizations but can be raised per-organization, so only the lower bound
|
|
684
684
|
is enforced here.
|
|
685
685
|
|
|
@@ -37,7 +37,7 @@ class BrowserPoolCreateParams(TypedDict, total=False):
|
|
|
37
37
|
fill_rate_per_minute: int
|
|
38
38
|
"""Percentage of the pool to fill per minute.
|
|
39
39
|
|
|
40
|
-
Defaults to
|
|
40
|
+
Defaults to 25. The cap is 25 for most organizations but can be raised
|
|
41
41
|
per-organization, so only the lower bound is enforced here.
|
|
42
42
|
"""
|
|
43
43
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
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.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_captcha_solve_result_event.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
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_interaction_click_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_live_view_connect_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_live_view_disconnect_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_disconnected_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_init_failed_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_reconnect_failed_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_reconnected_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_monitor_screenshot_event.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_network_loading_failed_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_dom_content_loaded_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_layout_settled_event.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_layout_shift_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_page_navigation_settled_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_categories_config.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_category_config.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/browser_telemetry_category_config_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_capture_screenshot_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_get_mouse_position_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_read_clipboard_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py
RENAMED
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.78.0 → kernel-0.78.1}/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
|