builder.io 1.10.9 → 1.10.10
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 +246 -246
- 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 +1 -1
- package/server/index.cjs +3 -3
- package/server/index.mjs +3 -3
- package/types/cli/auth/auth-utils.d.ts +2 -0
- package/types/cli/launch/InitStateMachine.d.ts +5 -5
- package/types/cli/repo-indexing/repo-indexing-utils.d.ts +3 -1
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -32,11 +32,11 @@ export declare class InitStateMachine {
|
|
|
32
32
|
}): void;
|
|
33
33
|
clearInitLogs(): void;
|
|
34
34
|
hasFilesButNoGit(repoPath: string): Promise<boolean>;
|
|
35
|
-
step1CheckDirectories(
|
|
36
|
-
step2ConfigureGitRepositories(
|
|
37
|
-
step3ConfigureGitUser(
|
|
38
|
-
step4StashChanges(
|
|
39
|
-
step5CollectRepoInfo(config: InitConfig, repositories: Required<WorkspaceFolder>[]): Promise<void>;
|
|
35
|
+
step1CheckDirectories(volumePath: string, repositories: Required<WorkspaceFolder>[]): Promise<void>;
|
|
36
|
+
step2ConfigureGitRepositories(volumePath: string, repositories: Required<WorkspaceFolder>[]): Promise<void>;
|
|
37
|
+
step3ConfigureGitUser(volumePath: string, repositories: Required<WorkspaceFolder>[]): Promise<void>;
|
|
38
|
+
step4StashChanges(volumePath: string, repositories: Required<WorkspaceFolder>[]): Promise<void>;
|
|
39
|
+
step5CollectRepoInfo(config: InitConfig, volumePath: string, repositories: Required<WorkspaceFolder>[]): Promise<void>;
|
|
40
40
|
private isGitConfigured;
|
|
41
41
|
private getGitRemoteUrl;
|
|
42
42
|
private sanitizeGitRemoteUrl;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { DevToolsSys } from "../../core";
|
|
2
2
|
import { type Credentials } from "../credentials";
|
|
3
|
-
import type { DesignSystem, GenerateUserMessage, WorkspaceConfiguration, StoreComponentDocsInput, UpdateDesignSystemInput } from "$/ai-utils";
|
|
3
|
+
import type { DesignSystem, GenerateUserMessage, WorkspaceConfiguration, StoreComponentDocsInput, UpdateDesignSystemInput, DesignSystemScope } from "$/ai-utils";
|
|
4
4
|
export declare const AGENT_FILE = "AGENTS.md";
|
|
5
|
+
export declare const promptForDesignSystemScope: (credentials: Credentials) => Promise<DesignSystemScope | undefined>;
|
|
5
6
|
export declare const parseDesignSystem: (sys: DevToolsSys, designSystemPackage?: string) => Promise<{
|
|
6
7
|
name: any;
|
|
7
8
|
version: string | undefined;
|
|
@@ -18,5 +19,6 @@ export declare const addDesignSystem: (credentials: Credentials, body: {
|
|
|
18
19
|
designSystemVersion?: string;
|
|
19
20
|
designSystemPackage?: string;
|
|
20
21
|
status: string;
|
|
22
|
+
scope: DesignSystemScope;
|
|
21
23
|
}) => Promise<any>;
|
|
22
24
|
export declare const updateDesignSystem: (credentials: Credentials, body: UpdateDesignSystemInput) => Promise<any>;
|