@mastra/ai-sdk 1.7.0 → 1.7.1-alpha.0

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,14 @@
1
1
  # @mastra/ai-sdk
2
2
 
3
+ ## 1.7.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed persisted signal finish chunks so AI SDK consumers can convert both newly produced and previously retained stream events. ([#19806](https://github.com/mastra-ai/mastra/pull/19806))
8
+
9
+ - Updated dependencies [[`594f7b2`](https://github.com/mastra-ai/mastra/commit/594f7b28f5263fb9982fd50d95c471fb971ea984), [`311f943`](https://github.com/mastra-ai/mastra/commit/311f943bee60e8fdf5c84499ea50e884276c936c), [`0c89896`](https://github.com/mastra-ai/mastra/commit/0c8989673fb7d106837098398131e570c6023b68), [`23b4238`](https://github.com/mastra-ai/mastra/commit/23b423844ad0bcf2a502a68dd62866d6160f9f6d), [`e320a76`](https://github.com/mastra-ai/mastra/commit/e320a763feaf65c6be3cebecf746defcbde161b3), [`03b4918`](https://github.com/mastra-ai/mastra/commit/03b4918c80d188ce375334c393e131c6e94bd7eb), [`14ef73a`](https://github.com/mastra-ai/mastra/commit/14ef73a4bbd73e7808414816eb0628ce1d80b5d7), [`1d677d5`](https://github.com/mastra-ai/mastra/commit/1d677d5f99d7db403f7828585e8c25f299f72628), [`93e28ec`](https://github.com/mastra-ai/mastra/commit/93e28ecce9031c02397e0ae8406593e5c7a95883), [`729dab4`](https://github.com/mastra-ai/mastra/commit/729dab408faccfaef0cbb048e5a4338f9172847e), [`484003d`](https://github.com/mastra-ai/mastra/commit/484003d33ff59330c86b19863e4a38732d7e4155), [`933d291`](https://github.com/mastra-ai/mastra/commit/933d291146b789c19442ad206f94da3e4be90c64)]:
10
+ - @mastra/core@1.56.0-alpha.3
11
+
3
12
  ## 1.7.0
4
13
 
5
14
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -8881,7 +8881,7 @@ function convertMastraChunkToAISDKBase({ chunk, mode = "stream", normalizeWarnin
8881
8881
  type: "finish",
8882
8882
  finishReason: normalizeFinishReason(chunk.payload.stepResult.reason),
8883
8883
  ...includeRawFinishReason ? { rawFinishReason: chunk.payload.stepResult.reason } : {},
8884
- totalUsage: normalizeUsage(chunk.payload.output.usage)
8884
+ totalUsage: normalizeUsage(chunk.payload.output?.usage ?? chunk.payload.usage)
8885
8885
  };
8886
8886
  case "reasoning-start": return {
8887
8887
  type: "reasoning-start",