@builder.io/dev-tools 1.26.5 → 1.26.6

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.
@@ -68,7 +68,7 @@ export interface DevServerOrchestrator {
68
68
  updatedProxyServer: boolean;
69
69
  updatedHosts: boolean;
70
70
  }>;
71
- hasValidateCommand: boolean;
71
+ validateCommand: string | undefined;
72
72
  validateCommandState: ValidateCommandState;
73
73
  runValidateCommand: (command?: string | null, signal?: AbortSignal) => Promise<ValidateCommandResult>;
74
74
  setPort: (newPort: number) => Promise<boolean>;
@@ -4,7 +4,8 @@ export { getCustomInstructions } from "./rules-discovery";
4
4
  import type { CodeGenInputOptions, CodegenSetLastCompletion, CodegenTurn, GenerateCodeEvent, GenerateUserMessage, GetSessionTurnsResult, UserContext, WorkspaceConfiguration, WorkspaceFolder, EnvironmentVariable, PushChangesArgs, PushChangesOptions, GenerateCompletionStepDevServerState, FusionConfig, GenerateCompletionStepGit } from "$/ai-utils";
5
5
  import type { SessionContext } from "../codegen";
6
6
  import type { DevServerOrchestrator } from "../launch/dev-server-orchestrator";
7
- export declare const DEFAULT_MAX_COMPLETIONS = 50;
7
+ export declare const DEFAULT_SOFT_MAX_COMPLETIONS = 50;
8
+ export declare const DEFAULT_HARD_MAX_COMPLETIONS = 100;
8
9
  /**
9
10
  * Merges and deduplicates items by name.
10
11
  * Built-in items come first, discovered items can override them by name.