@builder.io/ai-utils 0.5.28 → 0.5.29

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.5.28",
3
+ "version": "0.5.29",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/features.d.ts CHANGED
@@ -1,4 +1 @@
1
- export declare enum Feature {
2
- REPO_INDEXING = "repo-indexing",
3
- COMPONENT_MAPPING = "component-mapping"
4
- }
1
+ export type Feature = "repo-indexing" | "component-mapping";
package/src/features.js CHANGED
@@ -1,5 +1 @@
1
- export var Feature;
2
- (function (Feature) {
3
- Feature["REPO_INDEXING"] = "repo-indexing";
4
- Feature["COMPONENT_MAPPING"] = "component-mapping";
5
- })(Feature || (Feature = {}));
1
+ export {};
package/src/projects.d.ts CHANGED
@@ -207,5 +207,6 @@ export interface CodegenRuntimeStatus {
207
207
  lastCommitHash?: string;
208
208
  clearSecondaryVolumeId?: boolean;
209
209
  lastServerState?: LaunchServerState;
210
+ lastServerVersion?: string;
210
211
  }
211
212
  export {};