@builder.io/ai-utils 0.50.2 → 0.50.3
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 +1 -1
- package/src/projects.d.ts +6 -0
package/package.json
CHANGED
package/src/projects.d.ts
CHANGED
|
@@ -832,6 +832,12 @@ export interface CreateBranchOptions {
|
|
|
832
832
|
gitAiBranch?: string | null;
|
|
833
833
|
/** Contextual information (e.g., a git diff) used by the backend to generate a friendly branch name via LLM */
|
|
834
834
|
branchContext?: string;
|
|
835
|
+
/**
|
|
836
|
+
* When true, the endpoint returns immediately after the branch is created in the database
|
|
837
|
+
* without waiting for the container to start. The container is started in the background.
|
|
838
|
+
* Only supported for Kubernetes (cloud-v2) environments; non-Kube branches fall back to waiting.
|
|
839
|
+
*/
|
|
840
|
+
skipContainerWait?: boolean;
|
|
835
841
|
/**
|
|
836
842
|
* Lifecycle hook awaited by createBranch after the container is ready and
|
|
837
843
|
* before the initial message is dispatched to devtools/codegen. Use this to
|