@builder.io/ai-utils 0.17.0 → 0.17.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -1159,6 +1159,10 @@ export interface FusionConfig {
1159
1159
  browserAutomationInstructions?: string;
1160
1160
  featureBranch?: string;
1161
1161
  aiBranch?: string;
1162
+ /** Whether this is a fork PR - affects git operations (read-only, can't push) */
1163
+ isFork?: boolean;
1164
+ /** PR number for fork PRs - used for fetching refs/pulls/x/head */
1165
+ prNumber?: number;
1162
1166
  refreshPreview?: boolean;
1163
1167
  workingDirectory?: string;
1164
1168
  bashWorkingDirectory?: string;
package/src/projects.d.ts CHANGED
@@ -283,6 +283,8 @@ export interface PartialBranchData {
283
283
  commitMode?: CommitMode;
284
284
  useHomeDir?: boolean;
285
285
  checkoutBranch?: string | null;
286
+ /** Whether this branch is for a fork PR - affects git operations (read-only, can't push) */
287
+ isFork?: boolean | null;
286
288
  cloneFrom?: {
287
289
  projectId: string;
288
290
  branchName: string;
@@ -357,6 +359,8 @@ interface BranchSharedData {
357
359
  kubePvcName?: string | null;
358
360
  kubeHostname?: string | null;
359
361
  checkoutBranch?: string | null;
362
+ /** Whether this branch is for a fork PR - affects git operations (read-only, can't push) */
363
+ isFork?: boolean | null;
360
364
  vscodeTunnelUrl?: string | null;
361
365
  vscodeTunnelName?: string | null;
362
366
  vscodeTunnelExpiresAt?: string | null;