builder.io 1.9.0 → 1.9.2
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 +11 -11
- package/cli/index.cjs.map +4 -4
- 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 +5 -1
- package/server/index.cjs +3 -3
- package/server/index.mjs +3 -3
- package/types/cli/launch/dry-run-backup.d.ts +7 -1
- package/types/scripts/analyze-projects.d.ts +18 -0
- package/types/scripts/call-ensure-container.d.ts +5 -0
- package/types/scripts/cli.d.ts +1 -0
- package/types/scripts/db.d.ts +3 -0
- package/types/scripts/download-projects.d.ts +12 -0
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
import { type InitConfig } from "./InitStateMachine";
|
|
2
2
|
import type { InitState } from "$/ai-utils";
|
|
3
|
-
export declare const attemptDryRunBackupGit: (initConfig: InitConfig, realInitState: InitState) => Promise<
|
|
3
|
+
export declare const attemptDryRunBackupGit: (initConfig: InitConfig, realInitState: InitState) => Promise<{
|
|
4
|
+
success: boolean;
|
|
5
|
+
error: string;
|
|
6
|
+
} | {
|
|
7
|
+
success: boolean;
|
|
8
|
+
error?: undefined;
|
|
9
|
+
} | null>;
|
|
@@ -0,0 +1,18 @@
|
|
|
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>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
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>;
|