ai 5.0.0-canary.14 → 5.0.0-canary.16
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 +32 -0
- package/dist/index.d.mts +143 -210
- package/dist/index.d.ts +143 -210
- package/dist/index.js +192 -329
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +138 -259
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.d.mts +36 -78
- package/dist/internal/index.d.ts +36 -78
- package/dist/internal/index.js +11 -130
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +6 -111
- package/dist/internal/index.mjs.map +1 -1
- package/dist/mcp-stdio/index.d.mts +2 -2
- package/dist/mcp-stdio/index.d.ts +2 -2
- package/dist/test/index.d.mts +4 -3
- package/dist/test/index.d.ts +4 -3
- package/dist/test/index.js +5 -2
- package/dist/test/index.js.map +1 -1
- package/dist/test/index.mjs +5 -2
- package/dist/test/index.mjs.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,37 @@
|
|
1
1
|
# ai
|
2
2
|
|
3
|
+
## 5.0.0-canary.16
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- ec78cdc: chore (ai): remove "data" UIMessage role
|
8
|
+
- 8b86e99: chore (ai): replace `Message` with `UIMessage`
|
9
|
+
- 2524fc7: chore (ai): remove ui message toolInvocations property
|
10
|
+
- 175b868: chore (ai): rename reasoning UI parts 'reasoning' property to 'text'
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- 9b4d074: feat(streamObject): add enum support
|
15
|
+
- 28ad69e: fix(react-native): support experimental_attachments without FileList global
|
16
|
+
- ec5933d: chore (ai/mcp): add `assertCapability` method to experimental MCP client
|
17
|
+
|
18
|
+
## 5.0.0-canary.15
|
19
|
+
|
20
|
+
### Major Changes
|
21
|
+
|
22
|
+
- 4bfe9ec: chore (ai): remove ui message reasoning property
|
23
|
+
- 2877a74: chore (ai): remove ui message data property
|
24
|
+
|
25
|
+
### Patch Changes
|
26
|
+
|
27
|
+
- d9209ca: fix (image-model): `specificationVersion: v1` -> `v2`
|
28
|
+
- ea27cc6: chore (ai): use JSONValue definition from provider
|
29
|
+
- 0ff02bb: chore(provider-utils): move over jsonSchema
|
30
|
+
- Updated dependencies [7b3ae3f]
|
31
|
+
- Updated dependencies [0ff02bb]
|
32
|
+
- @ai-sdk/provider@2.0.0-canary.12
|
33
|
+
- @ai-sdk/provider-utils@3.0.0-canary.13
|
34
|
+
|
3
35
|
## 5.0.0-canary.14
|
4
36
|
|
5
37
|
### Patch Changes
|