@builder.io/ai-utils 0.91.0 → 0.91.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/events.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.91.0",
3
+ "version": "0.91.1",
4
4
  "description": "Builder.io AI utils",
5
5
  "files": [
6
6
  "src"
package/src/events.d.ts CHANGED
@@ -1181,6 +1181,8 @@ export type PrReviewRequestedV1 = FusionEventVariant<"pr.review.requested", {
1181
1181
  prAuthorGithubUsername?: string;
1182
1182
  prAuthorIsBot?: boolean;
1183
1183
  forceBrowserTesting?: boolean;
1184
+ /** Grants this single review round an exemption from the per-PR cost cap. */
1185
+ costCapOverride?: boolean;
1184
1186
  }, {}, 1>;
1185
1187
  export declare const PrReviewRequestedV1: {
1186
1188
  eventName: "pr.review.requested";