@builder.io/ai-utils 0.16.1 → 0.17.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.16.1",
3
+ "version": "0.17.0",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/projects.d.ts CHANGED
@@ -312,10 +312,12 @@ export interface BranchMetadata {
312
312
  slackThreadTs?: string;
313
313
  [key: string]: unknown;
314
314
  }
315
+ export type PRStatus = "open" | "closed" | "merged" | "draft";
315
316
  interface BranchSharedData {
316
317
  appName?: string | null;
317
318
  prNumber?: number | null;
318
319
  prUrl?: string | null;
320
+ prStatus?: PRStatus;
319
321
  machineId?: string | null;
320
322
  lastMachineIdRemovedAt?: number | null;
321
323
  volumeId?: string | null;