@ai-sdk/anthropic 2.0.0-canary.1 → 2.0.0-canary.11

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,114 @@
1
1
  # @ai-sdk/anthropic
2
2
 
3
+ ## 2.0.0-canary.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 66962ed: fix(packages): export node10 compatible types
8
+ - Updated dependencies [66962ed]
9
+ - Updated dependencies [9301f86]
10
+ - Updated dependencies [a3f768e]
11
+ - @ai-sdk/provider-utils@3.0.0-canary.11
12
+ - @ai-sdk/provider@2.0.0-canary.10
13
+
14
+ ## 2.0.0-canary.10
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [e86be6f]
19
+ - @ai-sdk/provider@2.0.0-canary.9
20
+ - @ai-sdk/provider-utils@3.0.0-canary.10
21
+
22
+ ## 2.0.0-canary.9
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [95857aa]
27
+ - Updated dependencies [7ea4132]
28
+ - @ai-sdk/provider@2.0.0-canary.8
29
+ - @ai-sdk/provider-utils@3.0.0-canary.9
30
+
31
+ ## 2.0.0-canary.8
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [5d142ab]
36
+ - Updated dependencies [b6b43c7]
37
+ - Updated dependencies [8aa9e20]
38
+ - Updated dependencies [3795467]
39
+ - @ai-sdk/provider-utils@3.0.0-canary.8
40
+ - @ai-sdk/provider@2.0.0-canary.7
41
+
42
+ ## 2.0.0-canary.7
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies [26735b5]
47
+ - Updated dependencies [443d8ec]
48
+ - Updated dependencies [14c9410]
49
+ - Updated dependencies [d9c98f4]
50
+ - Updated dependencies [c4a2fec]
51
+ - Updated dependencies [0054544]
52
+ - Updated dependencies [9e9c809]
53
+ - Updated dependencies [32831c6]
54
+ - Updated dependencies [d0f9495]
55
+ - Updated dependencies [fd65bc6]
56
+ - Updated dependencies [393138b]
57
+ - Updated dependencies [7182d14]
58
+ - @ai-sdk/provider@2.0.0-canary.6
59
+ - @ai-sdk/provider-utils@3.0.0-canary.7
60
+
61
+ ## 2.0.0-canary.6
62
+
63
+ ### Patch Changes
64
+
65
+ - f10304b: feat(tool-calling): don't require the user to have to pass parameters
66
+ - Updated dependencies [411e483]
67
+ - Updated dependencies [79457bd]
68
+ - Updated dependencies [ad80501]
69
+ - Updated dependencies [1766ede]
70
+ - Updated dependencies [f10304b]
71
+ - @ai-sdk/provider@2.0.0-canary.5
72
+ - @ai-sdk/provider-utils@3.0.0-canary.6
73
+
74
+ ## 2.0.0-canary.5
75
+
76
+ ### Patch Changes
77
+
78
+ - Updated dependencies [6f6bb89]
79
+ - @ai-sdk/provider@2.0.0-canary.4
80
+ - @ai-sdk/provider-utils@3.0.0-canary.5
81
+
82
+ ## 2.0.0-canary.4
83
+
84
+ ### Patch Changes
85
+
86
+ - Updated dependencies [d1a1aa1]
87
+ - @ai-sdk/provider@2.0.0-canary.3
88
+ - @ai-sdk/provider-utils@3.0.0-canary.4
89
+
90
+ ## 2.0.0-canary.3
91
+
92
+ ### Patch Changes
93
+
94
+ - 61ab528: Add support for URL-based PDF documents in the Anthropic provider
95
+ - Updated dependencies [a166433]
96
+ - Updated dependencies [abf9a79]
97
+ - Updated dependencies [9f95b35]
98
+ - Updated dependencies [0a87932]
99
+ - Updated dependencies [6dc848c]
100
+ - @ai-sdk/provider-utils@3.0.0-canary.3
101
+ - @ai-sdk/provider@2.0.0-canary.2
102
+
103
+ ## 2.0.0-canary.2
104
+
105
+ ### Patch Changes
106
+
107
+ - Updated dependencies [c57e248]
108
+ - Updated dependencies [33f4a6a]
109
+ - @ai-sdk/provider@2.0.0-canary.1
110
+ - @ai-sdk/provider-utils@3.0.0-canary.2
111
+
3
112
  ## 2.0.0-canary.1
4
113
 
5
114
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -54,7 +54,7 @@ type ToolResultContent = Array<{
54
54
  } | {
55
55
  type: 'image';
56
56
  data: string;
57
- mimeType?: string;
57
+ mediaType?: string;
58
58
  }>;
59
59
  declare const Bash20241022Parameters: z.ZodObject<{
60
60
  command: z.ZodString;
package/dist/index.d.ts CHANGED
@@ -54,7 +54,7 @@ type ToolResultContent = Array<{
54
54
  } | {
55
55
  type: 'image';
56
56
  data: string;
57
- mimeType?: string;
57
+ mediaType?: string;
58
58
  }>;
59
59
  declare const Bash20241022Parameters: z.ZodObject<{
60
60
  command: z.ZodString;