builder.io 1.6.72 → 1.6.74
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 +228 -228
- 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 +32 -32
- package/server/index.mjs +32 -32
- package/types/cli/figma-publish.d.ts +7 -1
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -5,7 +5,13 @@ import type { FigmaBuilderLink, FigmaMapperFile } from "$/ai-utils";
|
|
|
5
5
|
export declare const runFigmaPublish: (sys: DevToolsSys, args: CLIArgs) => Promise<undefined>;
|
|
6
6
|
export declare const FIGMA_CONNECT_CALL = "figmaMapping";
|
|
7
7
|
export declare function findAllMappingFiles(sys: DevToolsSys): Promise<string[]>;
|
|
8
|
-
export declare function setPublicKey(sys: DevToolsSys, publicKey: string, devTools: DevTools | undefined, ensureFigmaImportPage?: boolean): Promise<
|
|
8
|
+
export declare function setPublicKey(sys: DevToolsSys, publicKey: string, devTools: DevTools | undefined, ensureFigmaImportPage?: boolean): Promise<{
|
|
9
|
+
success: boolean;
|
|
10
|
+
error: string;
|
|
11
|
+
} | {
|
|
12
|
+
success: boolean;
|
|
13
|
+
error?: undefined;
|
|
14
|
+
}>;
|
|
9
15
|
export declare function findMappingsFromFiles({ sys, mappingFiles, typeCheck, }: {
|
|
10
16
|
mappingFiles: string[];
|
|
11
17
|
sys: DevToolsSys;
|