ai 4.1.22 → 4.1.23

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # ai
2
2
 
3
+ ## 4.1.23
4
+
5
+ ### Patch Changes
6
+
7
+ - b08f7c1: fix (ai/core): suppress errors in textStream
8
+
3
9
  ## 4.1.22
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -5504,8 +5504,6 @@ var DefaultStreamTextResult = class {
5504
5504
  transform({ part }, controller) {
5505
5505
  if (part.type === "text-delta") {
5506
5506
  controller.enqueue(part.textDelta);
5507
- } else if (part.type === "error") {
5508
- controller.error(part.error);
5509
5507
  }
5510
5508
  }
5511
5509
  })