@builder.io/ai-utils 0.0.59 → 0.0.60
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
|
@@ -130,6 +130,10 @@ interface ContentPatchBase {
|
|
|
130
130
|
* A change value is considered incomplete until we also parsed it's closing xml tag.
|
|
131
131
|
*/
|
|
132
132
|
incomplete?: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* If there was an error applying the patch, this will contain the error message.
|
|
135
|
+
*/
|
|
136
|
+
error?: string;
|
|
133
137
|
}
|
|
134
138
|
export interface ContentTsCodePatch extends ContentPatchBase {
|
|
135
139
|
type: "ts_code";
|