builder.io 1.8.2 → 1.9.0
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 +392 -385
- 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 +134 -127
- package/server/index.mjs +137 -130
- package/types/cli/auth/auth.d.ts +3 -0
- package/types/cli/auth/status.d.ts +3 -0
- package/types/cli/credentials.d.ts +8 -0
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -44,6 +44,14 @@ export interface Credentials {
|
|
|
44
44
|
userId?: string;
|
|
45
45
|
timestamp?: string;
|
|
46
46
|
}
|
|
47
|
+
export declare const readCredentials: (sys: DevToolsSys, args: CLIArgs) => {
|
|
48
|
+
spaceName: string | undefined;
|
|
49
|
+
userId: string | undefined;
|
|
50
|
+
builderPublicKey: string | undefined;
|
|
51
|
+
builderPrivateKey: string | undefined;
|
|
52
|
+
figmaAuth: FigmaAuth | undefined;
|
|
53
|
+
timestamp: string | undefined;
|
|
54
|
+
};
|
|
47
55
|
export declare const getCredentials: (sys: DevToolsSys, args: CLIArgs, opts: CredentialsOptions) => Promise<Credentials>;
|
|
48
56
|
export declare function getFigmaAuth(sys: DevToolsSys): Promise<FigmaAuth>;
|
|
49
57
|
export declare function getBuilderCodegenUsage(builderPublicKey: string, builderPrivateKey: string): Promise<BuilderCodegenUsage>;
|