kernel 0.55.0__tar.gz → 0.56.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.56.0/.release-please-manifest.json +3 -0
- {kernel-0.55.0 → kernel-0.56.0}/CHANGELOG.md +8 -0
- {kernel-0.55.0 → kernel-0.56.0}/PKG-INFO +1 -1
- {kernel-0.55.0 → kernel-0.56.0}/pyproject.toml +1 -1
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_version.py +1 -1
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/projects/projects.py +4 -8
- kernel-0.55.0/.release-please-manifest.json +0 -3
- {kernel-0.55.0 → kernel-0.56.0}/.gitignore +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/CONTRIBUTING.md +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/LICENSE +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/README.md +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/SECURITY.md +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/api.md +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/bin/check-release-environment +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/bin/publish-pypi +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/examples/.keep +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/examples/browser_routing.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/noxfile.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/release-please-config.json +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/requirements-dev.lock +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/requirements.lock +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_base_client.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_client.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_compat.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_constants.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_exceptions.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_files.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_models.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_qs.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_resource.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_streaming.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_types.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_compat.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_datetime_parse.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_json.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_logs.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_path.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_proxy.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_reflection.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_resources_proxy.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_streams.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_sync.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_transform.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_typing.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/_utils/_utils.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/app_framework.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/lib/.keep +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/lib/browser_routing/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/lib/browser_routing/raw_http.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/lib/browser_routing/routing.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/lib/browser_routing/util.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/pagination.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/py.typed +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/apps.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/auth/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/auth/auth.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/auth/connections.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browser_pools.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/browsers.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/computer.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/fs/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/fs/fs.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/fs/watch.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/logs.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/playwright.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/process.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/browsers/replays.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/credential_providers.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/credentials.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/deployments.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/extensions.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/invocations.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/profiles.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/projects/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/projects/limits.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/resources/proxies.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/app_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/app_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/connection_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/connection_follow_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/connection_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/connection_login_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/connection_submit_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/connection_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/login_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/managed_auth.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/auth/submit_fields_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_create_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_curl_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_curl_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_delete_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_load_extensions_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_persistence.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_persistence_param.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_acquire_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_acquire_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_delete_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_ref.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_release_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_pool_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_retrieve_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_retrieve_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_update_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browser_usage.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_batch_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_capture_screenshot_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_click_mouse_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_drag_mouse_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_get_mouse_position_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_move_mouse_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_press_key_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_read_clipboard_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_scroll_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_type_text_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_write_clipboard_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_create_directory_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_delete_directory_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_delete_file_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_download_dir_zip_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_file_info_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_file_info_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_list_files_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_list_files_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_move_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_read_file_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_set_file_permissions_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_upload_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_upload_zip_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/f_write_file_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/fs/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/fs/watch_events_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/fs/watch_start_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/fs/watch_start_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/log_stream_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/playwright_execute_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/playwright_execute_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_exec_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_exec_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_kill_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_kill_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_resize_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_resize_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_spawn_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_spawn_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_status_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_stdin_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_stdin_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/process_stdout_stream_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/replay_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/replay_start_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/replay_start_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_provider.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_provider_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_provider_item.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_provider_list_items_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_provider_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_provider_test_result.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_provider_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_totp_code_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/credential_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_create_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_follow_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_follow_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_retrieve_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/deployment_state_event.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/extension_download_from_chrome_store_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/extension_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/extension_upload_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/extension_upload_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_create_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_follow_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_follow_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_list_browsers_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_retrieve_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_state_event.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/invocation_update_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/profile.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/profile_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/profile_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/project.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/project_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/project_list_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/project_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/projects/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/projects/limit_update_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/projects/project_limits.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/proxy_check_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/proxy_check_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/proxy_create_params.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/proxy_create_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/proxy_list_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/proxy_retrieve_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/app_action.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/browser_extension.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/browser_profile.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/browser_viewport.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/error_detail.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/error_event.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/error_model.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/heartbeat_event.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared/log_event.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared_params/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared_params/browser_extension.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared_params/browser_profile.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/shared_params/browser_viewport.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/auth/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/auth/test_connections.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/fs/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/fs/test_watch.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/test_computer.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/test_fs.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/test_logs.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/test_playwright.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/test_process.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/browsers/test_replays.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/projects/__init__.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/projects/test_limits.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_apps.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_browser_pools.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_browsers.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_credential_providers.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_credentials.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_deployments.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_extensions.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_invocations.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_profiles.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_projects.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/api_resources/test_proxies.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/conftest.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/sample_file.txt +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_browser_routing.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_client.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_extract_files.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_files.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_models.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_qs.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_required_args.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_response.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_streaming.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_transform.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_utils/test_json.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_utils/test_path.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_utils/test_proxy.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/test_utils/test_typing.py +0 -0
- {kernel-0.55.0 → kernel-0.56.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.56.0 (2026-05-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.55.0...v0.56.0](https://github.com/kernel/kernel-python-sdk/compare/v0.55.0...v0.56.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Expose POST /projects in public API ([4d70271](https://github.com/kernel/kernel-python-sdk/commit/4d702711a74e050ab121f0ce7b2bbe276904a5de))
|
|
10
|
+
|
|
3
11
|
## 0.55.0 (2026-05-15)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.53.0...v0.55.0](https://github.com/kernel/kernel-python-sdk/compare/v0.53.0...v0.55.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: kernel
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.56.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
|
|
@@ -70,10 +70,8 @@ class ProjectsResource(SyncAPIResource):
|
|
|
70
70
|
extra_body: Body | None = None,
|
|
71
71
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
72
72
|
) -> Project:
|
|
73
|
-
"""
|
|
74
|
-
|
|
75
|
-
Requires the
|
|
76
|
-
projects feature flag.
|
|
73
|
+
"""
|
|
74
|
+
Create a new project within the authenticated organization.
|
|
77
75
|
|
|
78
76
|
Args:
|
|
79
77
|
name: Project name (1-255 characters)
|
|
@@ -299,10 +297,8 @@ class AsyncProjectsResource(AsyncAPIResource):
|
|
|
299
297
|
extra_body: Body | None = None,
|
|
300
298
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
301
299
|
) -> Project:
|
|
302
|
-
"""
|
|
303
|
-
|
|
304
|
-
Requires the
|
|
305
|
-
projects feature flag.
|
|
300
|
+
"""
|
|
301
|
+
Create a new project within the authenticated organization.
|
|
306
302
|
|
|
307
303
|
Args:
|
|
308
304
|
name: Project name (1-255 characters)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
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.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_capture_screenshot_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_get_mouse_position_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_read_clipboard_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_set_cursor_visibility_params.py
RENAMED
|
File without changes
|
{kernel-0.55.0 → kernel-0.56.0}/src/kernel/types/browsers/computer_set_cursor_visibility_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{kernel-0.55.0 → kernel-0.56.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.55.0 → kernel-0.56.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
|