@builder.io/dev-tools 1.19.12-dev.202601081409.55c7133ae → 1.19.13-dev.202601081703.dae810301
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 +170 -31
- 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 +1 -0
- package/types/cli/utils/agent-parser.d.ts +1 -0
- package/types/common/ast/component-input-types.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
- package/cli/pkg-entry.cjs +0 -149
package/types/cli/codegen.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ export declare class CodeGenSession {
|
|
|
251
251
|
needDevServer?: boolean;
|
|
252
252
|
needValidation?: boolean;
|
|
253
253
|
systemPrompt?: string;
|
|
254
|
+
resetAfterRun?: boolean;
|
|
254
255
|
}): Promise<SpawnAgentResult>;
|
|
255
256
|
setProxyOrigin(proxySrc: string | undefined): void;
|
|
256
257
|
getTurns(): CodegenTurn[];
|
|
@@ -17,7 +17,7 @@ export declare const NUMBER_TYPES: string[];
|
|
|
17
17
|
export declare const BOOLEAN_TYPES: string[];
|
|
18
18
|
export declare const ARRAY_TYPES: string[];
|
|
19
19
|
export declare const OBJECT_TYPES: string[];
|
|
20
|
-
export declare function getPrimitiveType(t: string): "
|
|
20
|
+
export declare function getPrimitiveType(t: string): "number" | "string" | "boolean" | "object" | "array";
|
|
21
21
|
export declare function removeQuotes(text: string): string;
|
|
22
22
|
export declare const resolveType: (sys: DevToolsSys, checker: ts.TypeChecker, type: ts.Type) => string[] | undefined;
|
|
23
23
|
export declare const typeToString: (sys: DevToolsSys, checker: ts.TypeChecker, type: ts.Type) => string;
|