@builder.io/ai-utils 0.0.25 → 0.0.26

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.
@@ -83,6 +83,14 @@ export interface BuiderEditorState {
83
83
  * Builder model. (not the LLM model)
84
84
  */
85
85
  model?: BuilderModel;
86
+ /**
87
+ * Other models in the Builder account
88
+ */
89
+ otherModels?: BuilderModel[];
90
+ /**
91
+ * Email of the user in the builder.
92
+ */
93
+ userEmail?: string;
86
94
  /**
87
95
  * Selected ids in the builder.
88
96
  */
package/dist/events.d.ts CHANGED
@@ -142,6 +142,7 @@ export interface ModelUpdate {
142
142
  }
143
143
  export interface BuilderModel {
144
144
  name?: string;
145
+ friendlyName?: string;
145
146
  description?: string;
146
147
  type?: string;
147
148
  fields?: BuilderModelField[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",