@builder.io/dev-tools 1.18.14-dev.202511251124.4f45e4b71 → 1.18.14-dev.202511251344.f32d31c6c

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.
@@ -1,22 +0,0 @@
1
- /**
2
- * Check if the CLI is running from a globally installed binary (builderio command)
3
- * vs running through npx
4
- */
5
- export declare function isRunningFromGlobalInstall(): boolean;
6
- /**
7
- * Compare two semver versions
8
- * Returns -1 if current < latest, 0 if equal, 1 if current > latest
9
- */
10
- export declare function compareVersions(current: string, latest: string): number;
11
- /**
12
- * Check for updates and notify user if a newer version is available
13
- */
14
- export declare function checkForUpdates(): Promise<void>;
15
- /**
16
- * Prompt user for update on quit and perform installation if confirmed
17
- */
18
- export declare function promptAndInstallUpdate(): Promise<boolean>;
19
- /**
20
- * Get whether an update is available (for use by exit handlers)
21
- */
22
- export declare function hasUpdateAvailable(): boolean;
@@ -1 +0,0 @@
1
- export {};
@@ -1,5 +0,0 @@
1
- import type { DevToolsSys } from "../types";
2
- import type { CLIArgs } from "./index";
3
- import { type Credentials } from "./credentials";
4
- export declare const runCodeIndexing: (_sys: DevToolsSys, _args: CLIArgs) => Promise<void>;
5
- export declare const codeIndexing: (sys: DevToolsSys, credentials: Credentials) => Promise<void>;
@@ -1,3 +0,0 @@
1
- export declare const getKVHiddenComment: (key: string, value: string) => string;
2
- export declare const getPreviewUrl: (projectId: string, branchName: string) => string;
3
- export declare const getInitialDescription: (projectId: string, branchName: string) => string;
@@ -1,2 +0,0 @@
1
- import type { DevToolsSys } from "../core";
2
- export declare const parseDesignSystemVersion: (sys: DevToolsSys, designSystemPackage: string) => Promise<string | null | undefined>;
@@ -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,5 +0,0 @@
1
- export declare function ensureContainer(projectId: string, branchName: string): Promise<unknown>;
2
- export declare function handleCallEnsureContainer(args: {
3
- appName: string;
4
- branchName: string;
5
- }): Promise<void>;
@@ -1 +0,0 @@
1
- export {};
@@ -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,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>;