builder.io 1.8.0 → 1.8.1

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.
@@ -44,9 +44,10 @@ export declare class InitStateMachine {
44
44
  * If no backup is available, do nothing.
45
45
  */
46
46
  private restoreFromPartialBackup;
47
- cloneRepository({ repo, repoPath, backupResult, }: {
47
+ cloneRepository({ repo, repoPath, backupResult, config, }: {
48
48
  repo: Required<WorkspaceFolder>;
49
49
  repoPath: string;
50
50
  backupResult: GitBackupDownloadResult | undefined;
51
+ config: InitConfig;
51
52
  }): Promise<boolean>;
52
53
  }
@@ -10,7 +10,7 @@ export declare const parseDesignSystem: (sys: DevToolsSys, designSystemPackage?:
10
10
  export declare const storeComponentDocs: (credentials: Credentials, body: StoreComponentDocsInput, debug?: boolean) => Promise<any>;
11
11
  export declare const runCodeGen: (sys: DevToolsSys, credentials: Credentials, sessionId: string, message: GenerateUserMessage, debug?: boolean, designSystemPackage?: string, workspaceConfig?: WorkspaceConfiguration, opts?: {
12
12
  tags?: object;
13
- }) => Promise<string>;
13
+ }, metadata?: any) => Promise<string>;
14
14
  export declare const getAllDesignSystems: (credentials: Credentials) => Promise<DesignSystem[]>;
15
15
  export declare const getDesignSystemByName: (credentials: Credentials, designSystemName: string) => Promise<DesignSystem | null>;
16
16
  export declare const addDesignSystem: (credentials: Credentials, body: {