builder.io 1.9.16 → 1.9.17

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.
@@ -39,6 +39,7 @@ export declare class InitStateMachine {
39
39
  private isGitConfigured;
40
40
  private getGitRemoteUrl;
41
41
  private sanitizeGitRemoteUrl;
42
+ private cleanupLockFiles;
42
43
  validateGitRepo(repoPath: string): Promise<void>;
43
44
  /**
44
45
  * If a backup is available, perform a backup recovery (and throw if it fails and cannot be recovered from).
@@ -9,6 +9,7 @@ export declare const NON_AUTHENTICATED_ENDPOINTS: {
9
9
  readonly STATUS: "/status";
10
10
  readonly PROXY_STATUS: "/proxy-status";
11
11
  readonly STATUS_V2: "/status-v2";
12
+ readonly INIT_LOGS: "/init-logs";
12
13
  };
13
14
  export declare const configureServer: ({ app, validBuilderPrivateKey, authenticateProxy, isLocal, sharedState, }: {
14
15
  app: Express;
@@ -9,6 +9,7 @@ export declare const parseDesignSystem: (sys: DevToolsSys, designSystemPackage?:
9
9
  export declare const storeComponentDocs: (credentials: Credentials, body: StoreComponentDocsInput, debug?: boolean) => Promise<any>;
10
10
  export declare const runCodeGen: (sys: DevToolsSys, credentials: Credentials, sessionId: string, message: GenerateUserMessage, debug?: boolean, designSystemPackage?: string, workspaceConfig?: WorkspaceConfiguration, opts?: {
11
11
  tags?: object;
12
+ maxTokens?: number;
12
13
  }, metadata?: any) => Promise<string>;
13
14
  export declare const getAllDesignSystems: (credentials: Credentials) => Promise<DesignSystem[]>;
14
15
  export declare const getDesignSystemByName: (credentials: Credentials, designSystemName: string) => Promise<DesignSystem | null>;