From 2390bfac47ab68d80a878db60f947e9fac1f26d9 Mon Sep 17 00:00:00 2001 From: Chris Huber Date: Thu, 3 Sep 2026 17:36:23 -0400 Subject: [PATCH] Export the browser actions runner from the package entrypoint --- packages/runtime-playground/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/runtime-playground/src/index.ts b/packages/runtime-playground/src/index.ts index 973ef870..9fae6064 100644 --- a/packages/runtime-playground/src/index.ts +++ b/packages/runtime-playground/src/index.ts @@ -8,6 +8,7 @@ export { buildArtifactDiagnostics } from "./artifacts.js" export { browserArtifactMetrics, type BrowserArtifactMetricsResult } from "./browser-metrics.js" export { BrowserMultiActorScenarioError, runBrowserMultiActorScenario, type BrowserMultiActorClient, type BrowserMultiActorEvent, type BrowserMultiActorScenarioResult } from "./browser-multi-actor-scenario.js" export { runBrowserMultiActorScenarioCommand } from "./browser-multi-actor-scenario-runner.js" +export { runBrowserActionsCommand, runBrowserScenarioCommand, type BrowserActionsRunPlan } from "./browser-actions-runner.js" export { browserStorageStateCookieHostSummary, browserStorageStateFromWordPressAuthCookies, normalizeBrowserStorageStatePayload, wordpressFixtureUserStorageStatePhpCode, type BrowserAuthStorageState, type BrowserStorageStateCookie, type BrowserStorageStateImportResult, type BrowserStorageStateImportSummary, type WordPressFixtureUserSpec, type WordPressFixtureUserStorageStateEnvelope } from "./browser-auth-storage-state.js" export { createHostCommandTool, type HostCommandToolConfig } from "./host-command-tool.js" export { PlaygroundRuntimeBackend, createPlaygroundRuntimeBackend, playgroundRuntimeBackendProvider } from "./playground-runtime.js"