builder.io 1.9.11 → 1.9.13
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 +193 -188
- 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/repo-indexing/repo-indexing-utils.d.ts +3 -2
- package/types/cli/repo-indexing/repo-indexing.d.ts +1 -1
- package/types/cli/repo-indexing/types.d.ts +0 -11
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { DevToolsSys } from "../../core";
|
|
2
2
|
import { type Credentials } from "../credentials";
|
|
3
|
-
import type { GenerateUserMessage, WorkspaceConfiguration, StoreComponentDocsInput, UpdateDesignSystemInput } from "$/ai-utils";
|
|
4
|
-
import type { DesignSystem } from "./types";
|
|
3
|
+
import type { DesignSystem, GenerateUserMessage, WorkspaceConfiguration, StoreComponentDocsInput, UpdateDesignSystemInput } from "$/ai-utils";
|
|
5
4
|
export declare const AGENT_FILE = "AGENT.md";
|
|
6
5
|
export declare const parseDesignSystem: (sys: DevToolsSys, designSystemPackage?: string) => Promise<{
|
|
7
6
|
name: any;
|
|
@@ -15,6 +14,8 @@ export declare const getAllDesignSystems: (credentials: Credentials) => Promise<
|
|
|
15
14
|
export declare const getDesignSystemByName: (credentials: Credentials, designSystemName: string) => Promise<DesignSystem | null>;
|
|
16
15
|
export declare const addDesignSystem: (credentials: Credentials, body: {
|
|
17
16
|
designSystemName: string;
|
|
17
|
+
designSystemVersion?: string;
|
|
18
|
+
designSystemPackage?: string;
|
|
18
19
|
status: string;
|
|
19
20
|
}) => Promise<any>;
|
|
20
21
|
export declare const updateDesignSystem: (credentials: Credentials, body: UpdateDesignSystemInput) => Promise<any>;
|
|
@@ -2,7 +2,7 @@ import type { DevToolsSys } from "../../types";
|
|
|
2
2
|
import type { CLIArgs } from "../index";
|
|
3
3
|
import { type Credentials } from "../credentials";
|
|
4
4
|
import type { Component } from "./types";
|
|
5
|
-
export declare const displayComponentLibrarySummary: (components: Component[], indexedComponents: Component[], startTime: number, numFailed
|
|
5
|
+
export declare const displayComponentLibrarySummary: (components: Component[], indexedComponents: Component[], startTime: number, numFailed: number | undefined, isForce: boolean | undefined, designSystemName: string) => void;
|
|
6
6
|
export interface RepoIndexingDoc {
|
|
7
7
|
name: string;
|
|
8
8
|
content: string | {
|
|
@@ -9,14 +9,3 @@ export interface Component {
|
|
|
9
9
|
hash?: string;
|
|
10
10
|
designSystemId?: string | null;
|
|
11
11
|
}
|
|
12
|
-
export interface DesignSystem {
|
|
13
|
-
id: string;
|
|
14
|
-
spaceId: string;
|
|
15
|
-
rootOrgId: string;
|
|
16
|
-
createdDate: string;
|
|
17
|
-
createdByUserId: string;
|
|
18
|
-
lastUpdatedDate?: string;
|
|
19
|
-
lastUpdatedByUserId?: string;
|
|
20
|
-
designSystemName: string;
|
|
21
|
-
status: "in-progress" | "completed" | "failed";
|
|
22
|
-
}
|