@builder.io/ai-utils 0.63.0 → 0.64.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.63.0",
3
+ "version": "0.64.0",
4
4
  "description": "Builder.io AI utils",
5
5
  "files": [
6
6
  "src"
package/src/projects.d.ts CHANGED
@@ -216,7 +216,7 @@ export interface CleanupCompletedMessage extends BaseMessage {
216
216
  * Messages sent by the container orchestrator.
217
217
  */
218
218
  export type ProjectsChunkMessage = InitializingMessage | FetchingGithubTokenMessage | FetchingFusionKeyMessage | CheckingAppMessage | CleaningUpAppMessage | CreatingAppMessage | CheckingIPMessage | AllocatingIPMessage | CheckingMachineMessage | CheckingVolumeMessage | ForkingVolumeMessage | RetryingWithNewRegionMessage | WaitingBeforePollingMessage | PollingMachineStatusMessage | WarningStateMessage | PingMessage | DebugMessage | ErrorMessage | InfoMessage | WarningMessage | MachineStatusMessage | LogsMessage | ConfigStatusMessage | AppCreatedMessage | MachineCreatedMessage | IpAllocatedMessage | VolumeForkedMessage | ReadyMessage | ErrorStateMessage | CleanupCompletedMessage;
219
- export type GitProvider = "github" | "selfHostedGithub" | "bitbucket" | "gitlab" | "azure" | "custom";
219
+ export type GitProvider = "github" | "selfHostedGithub" | "bitbucket" | "gitlab" | "azure" | "internalHost" | "custom";
220
220
  export interface GitConfig {
221
221
  url: string;
222
222
  provider: GitProvider | "unknown";
@@ -943,6 +943,7 @@ export interface CreateProjectOptions {
943
943
  isFromUserTemplate?: boolean;
944
944
  autoApplySetup?: boolean;
945
945
  templateId?: string;
946
+ useInternalHost?: boolean;
946
947
  }
947
948
  export interface BuilderMyContext {
948
949
  success: boolean;