@builder.io/dev-tools 1.9.18-dev.202508070547.81cb44683 → 1.9.19

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.
Files changed (36) hide show
  1. package/angular/index.cjs +1 -46
  2. package/angular/index.mjs +1 -21
  3. package/cli/index.cjs +3841 -110606
  4. package/cli/index.cjs.map +4 -4
  5. package/core/index.cjs +944 -14283
  6. package/core/index.mjs +945 -14274
  7. package/figma/index.cjs +1 -47
  8. package/figma/index.mjs +1 -27
  9. package/node/index.cjs +105 -25310
  10. package/node/index.mjs +105 -25314
  11. package/package.json +1 -1
  12. package/remix/build.cjs +1 -132
  13. package/remix/index.mjs +1 -113
  14. package/server/index.cjs +1508 -22016
  15. package/server/index.mjs +1507 -22014
  16. package/types/cli/backup.d.ts +2 -2
  17. package/types/cli/launch/InitStateMachine.d.ts +1 -0
  18. package/types/common/ast/component-input-types.d.ts +1 -1
  19. package/types/common/ast/convert-values.d.ts +1 -1
  20. package/types/common/utils.d.ts +1 -1
  21. package/types/tsconfig.tsbuildinfo +1 -1
  22. package/vite/index.cjs +3 -153
  23. package/vite/index.mjs +3 -119
  24. package/webpack/index.cjs +27 -2883
  25. package/webpack/index.mjs +27 -2871
  26. package/types/cli/repo-indexing.d.ts +0 -17
  27. package/types/cli/repo-indexing.mock.d.ts +0 -5
  28. package/types/cli/utils/repo-indexing-group-prompts.d.ts +0 -1
  29. package/types/scripts/analyze-projects.d.ts +0 -18
  30. package/types/scripts/call-ensure-container.d.ts +0 -4
  31. package/types/scripts/check-backup.d.ts +0 -1
  32. package/types/scripts/cli.d.ts +0 -1
  33. package/types/scripts/download-projects.d.ts +0 -12
  34. package/types/scripts/utils/db.d.ts +0 -3
  35. package/types/scripts/utils/ensure-container.d.ts +0 -7
  36. package/types/scripts/utils/remove-machine-and-volume.d.ts +0 -5
@@ -1,17 +0,0 @@
1
- import type { DevToolsSys } from "../types";
2
- import type { CLIArgs } from "./index";
3
- export interface RepoIndexingDoc {
4
- name: string;
5
- content: string | {
6
- name: string;
7
- description: string;
8
- components: string[];
9
- relevantFiles: string[];
10
- }[];
11
- createdDate: string;
12
- description: string;
13
- id: string;
14
- ownerId: string;
15
- userId: string;
16
- }
17
- export declare const runRepoIndexing: (sys: DevToolsSys, args: CLIArgs) => Promise<void>;
@@ -1,5 +0,0 @@
1
- export declare const mockDeps: {
2
- getStoredComponentDocs: () => Promise<never[]>;
3
- storeComponentDocs: () => Promise<{}>;
4
- runCodeGen: () => Promise<string>;
5
- };
@@ -1 +0,0 @@
1
- export declare const REPO_INDEXING_GROUP_PROMPT: string;
@@ -1,18 +0,0 @@
1
- export declare function analyzeProjects(inputPath?: string): Promise<{
2
- success: boolean;
3
- error: string;
4
- projectsCount?: undefined;
5
- branchesCount?: undefined;
6
- csvRowsCount?: undefined;
7
- outputPath?: undefined;
8
- } | {
9
- success: boolean;
10
- projectsCount: number;
11
- branchesCount: number;
12
- csvRowsCount: number;
13
- outputPath: string;
14
- error?: undefined;
15
- }>;
16
- export declare function handleAnalyzeProjects(args: {
17
- inputPath?: string;
18
- }): Promise<void>;
@@ -1,4 +0,0 @@
1
- export declare function handleCallEnsureContainer(args: {
2
- appName: string;
3
- branchName: string;
4
- }): Promise<void>;
@@ -1 +0,0 @@
1
- export declare function handleCheckBackup(): Promise<void>;
@@ -1 +0,0 @@
1
- export {};
@@ -1,12 +0,0 @@
1
- export declare function downloadProjects(): Promise<{
2
- success: boolean;
3
- count: number;
4
- outputPath: string;
5
- error?: undefined;
6
- } | {
7
- success: boolean;
8
- error: string;
9
- count?: undefined;
10
- outputPath?: undefined;
11
- }>;
12
- export declare function handleDownloadProjects(): Promise<void>;
@@ -1,3 +0,0 @@
1
- import admin from "firebase-admin";
2
- export declare const db: admin.firestore.Firestore;
3
- export declare const storage: admin.storage.Storage;
@@ -1,7 +0,0 @@
1
- export declare function ensureContainer(projectId: string, branchName: string): Promise<{
2
- success: boolean;
3
- error?: undefined;
4
- } | {
5
- success: boolean;
6
- error: any;
7
- }>;
@@ -1,5 +0,0 @@
1
- export declare function forceRemoveMachineAndVolume({ projectId, branchName, shouldDeleteVolume, }: {
2
- projectId: string;
3
- branchName: string;
4
- shouldDeleteVolume?: boolean;
5
- }): Promise<void>;