@builder.io/ai-utils 0.0.28 → 0.0.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/dist/events.d.ts +4 -0
- package/package.json +1 -1
package/dist/events.d.ts
CHANGED
|
@@ -115,6 +115,10 @@ interface ContentPatchBase {
|
|
|
115
115
|
* column index to update when dealing with a Columns component.
|
|
116
116
|
*/
|
|
117
117
|
data?: NodeData;
|
|
118
|
+
/**
|
|
119
|
+
* A change value is considered incomplete until we also parsed it's closing xml tag.
|
|
120
|
+
*/
|
|
121
|
+
incomplete?: boolean;
|
|
118
122
|
}
|
|
119
123
|
export interface ContentInsertBeforePatch extends ContentPatchBase {
|
|
120
124
|
type: "insert_before";
|