@builder.io/dev-tools 1.47.2-dev.202604210953.dac9af97d → 1.47.2-dev.202604211257.fb5cb98bd

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.
@@ -78,30 +78,6 @@ export interface CodeGenSessionOptionsInitialUrl extends CodeGenSessionOptionsBa
78
78
  initialUrl: string;
79
79
  }
80
80
  export type CodeGenSessionOptions = CodeGenSessionOptionsSession | CodeGenSessionOptionsInitialUrl;
81
- export interface BrowserTestData {
82
- testPlan: {
83
- mode: string;
84
- test_cases: Array<{
85
- id: string;
86
- description?: string;
87
- title?: string;
88
- expected_outcome: string;
89
- priority: string;
90
- steps?: string[];
91
- }>;
92
- } | null;
93
- testCaseResults: Array<Record<string, any>>;
94
- uiIssues: Array<{
95
- title: string;
96
- description: string;
97
- debugInfo?: string;
98
- }>;
99
- sessionOutcome: {
100
- outcome: string;
101
- summary: string;
102
- details?: string;
103
- } | null;
104
- }
105
81
  export type SpawnAgentResult = SpawnAgentResultSuccess | SpawnAgentResultFailed;
106
82
  export interface SpawnAgentResultSuccess {
107
83
  success: boolean;
@@ -109,8 +85,6 @@ export interface SpawnAgentResultSuccess {
109
85
  metadata: ExplorationMetadataToolInput;
110
86
  lastTurn?: CodegenTurn;
111
87
  sessionId: string;
112
- /** Structured data from browser-testing agent intercepts */
113
- browserTestData?: BrowserTestData;
114
88
  }
115
89
  export interface SpawnAgentResultFailed {
116
90
  success: false;
@@ -117,6 +117,6 @@ export declare function runFusionCommand({ sys, args, existingSession, }: {
117
117
  args: LaunchArgs;
118
118
  existingSession?: CodeGenSession;
119
119
  }): Promise<void>;
120
- declare const PUBLIC_METHODS: ("fileExists" | "readFile" | "listDir" | "getAllFiles" | "abort" | "abortSetupCommand" | "abortValidateCommand" | "switchSessionMode" | "switchModelOverride" | "queueSystemReminder" | "setDefaultAutoPush" | "setPrivacyMode" | "loadHistory" | "loadMoreTurns" | "setCustomInstructions" | "pushRepoV2" | "uploadBackup" | "pushChanges" | "abortMerge" | "syncChangesFromRemote" | "createTerminal" | "updateTerminal" | "writeTerminal" | "signalTerminal" | "disposeTerminal" | "restartTerminal" | "searchFiles" | "searchFileTree" | "collectRepoMetrics" | "restoreFromCompletionId" | "restoreBeforeCompletionId" | "undoLastUserMessage" | "sendFeedback" | "clearSession" | "clearMessageQueue" | "updateMessage" | "flushMessageQueue" | "sendMessage" | "setProxyOrigin" | "toolFullfilment" | "abortToolCall" | "stopEventLoop" | "configureDevOrchestrator" | "tsServerInit" | "tsServerOpenFile" | "tsServerChangeFile" | "tsServerCloseFile" | "tsServerGetCompletions" | "tsServerGetCompletionDetails" | "tsServerGetDefinition" | "tsServerGetTypeDefinition" | "tsServerGetQuickInfo" | "tsServerGetReferences" | "tsServerGetSignatureHelp" | "tsServerRequestDiagnostics" | "tsServerGetRenameLocations" | "tsServerGetNavTree" | "tsServerOrganizeImports" | "tsServerGetInlayHints" | "tsServerGetCodeFixes" | "tsServerGetApplicableRefactors" | "tsServerGetEditsForRefactor" | "tsServerGetImplementation" | "tsServerGetSelectionRange" | "tsServerGetLinkedEditingRange" | "tsServerGetFormatRange" | "manualCommit" | "launchEditor" | "readFileWithChecksum" | "readBinaryFile" | "getSingleFileDiff" | "discardFileChanges" | "revertDiscard" | "writeFile" | "listCustomInstructions" | "deleteFile" | "getDiff")[];
120
+ declare const PUBLIC_METHODS: ("abort" | "pushRepoV2" | "pushChanges" | "syncChangesFromRemote" | "flushMessageQueue" | "abortSetupCommand" | "abortValidateCommand" | "switchSessionMode" | "switchModelOverride" | "queueSystemReminder" | "setDefaultAutoPush" | "setPrivacyMode" | "loadHistory" | "loadMoreTurns" | "setCustomInstructions" | "uploadBackup" | "abortMerge" | "createTerminal" | "updateTerminal" | "writeTerminal" | "signalTerminal" | "disposeTerminal" | "restartTerminal" | "getAllFiles" | "searchFiles" | "searchFileTree" | "collectRepoMetrics" | "restoreFromCompletionId" | "restoreBeforeCompletionId" | "undoLastUserMessage" | "sendFeedback" | "clearSession" | "clearMessageQueue" | "updateMessage" | "sendMessage" | "setProxyOrigin" | "toolFullfilment" | "abortToolCall" | "stopEventLoop" | "configureDevOrchestrator" | "tsServerInit" | "tsServerOpenFile" | "tsServerChangeFile" | "tsServerCloseFile" | "tsServerGetCompletions" | "tsServerGetCompletionDetails" | "tsServerGetDefinition" | "tsServerGetTypeDefinition" | "tsServerGetQuickInfo" | "tsServerGetReferences" | "tsServerGetSignatureHelp" | "tsServerRequestDiagnostics" | "tsServerGetRenameLocations" | "tsServerGetNavTree" | "tsServerOrganizeImports" | "tsServerGetInlayHints" | "tsServerGetCodeFixes" | "tsServerGetApplicableRefactors" | "tsServerGetEditsForRefactor" | "tsServerGetImplementation" | "tsServerGetSelectionRange" | "tsServerGetLinkedEditingRange" | "tsServerGetFormatRange" | "manualCommit" | "launchEditor" | "readFile" | "readFileWithChecksum" | "readBinaryFile" | "getSingleFileDiff" | "discardFileChanges" | "revertDiscard" | "fileExists" | "writeFile" | "listDir" | "listCustomInstructions" | "deleteFile" | "getDiff")[];
121
121
  export type PublicCodeGenSession = Pick<InstanceType<typeof CodeGenSession>, (typeof PUBLIC_METHODS)[0]>;
122
122
  export {};