@builder.io/dev-tools 1.47.2-dev.202604210928.cce07768c → 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.
- package/cli/index.cjs +25 -28
- package/cli/index.cjs.map +2 -2
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/codegen.d.ts +0 -26
- package/types/cli/launch.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -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;
|
package/types/cli/launch.d.ts
CHANGED
|
@@ -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: ("
|
|
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 {};
|