builder.io 1.7.20 → 1.7.21

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.
@@ -1,2 +1,3 @@
1
1
  export declare const getCommandWithShellArgs: (command: string, shell: string) => string[];
2
+ export declare const isInRemoteContainer: () => boolean;
2
3
  export declare const isGitRepoCorrupted: (stdout: string, stderr: string) => boolean;
@@ -0,0 +1,12 @@
1
+ import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
+ import type { Credentials } from "../credentials";
3
+ import type { FusionConfig, LaunchServerStatus } from "$/ai-utils";
4
+ interface FusionStatusMonitor {
5
+ start: () => void;
6
+ stop: () => void;
7
+ }
8
+ /**
9
+ * Creates a fusion status monitor that pings the status endpoint periodically
10
+ */
11
+ export declare function createFusionStatusMonitor(sys: DevToolsSys, credentials: Credentials, fusionConfig: FusionConfig, sharedState: LaunchServerStatus): FusionStatusMonitor | null;
12
+ export {};