@ai-sdk/openai 2.0.32 → 2.0.33

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-sdk/openai
2
2
 
3
+ ## 2.0.33
4
+
5
+ ### Patch Changes
6
+
7
+ - a617948: fix the "incomplete_details" key from nullable to nullish for openai compatibility
8
+
3
9
  ## 2.0.32
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2657,7 +2657,7 @@ var OpenAIResponsesLanguageModel = class {
2657
2657
  ])
2658
2658
  ),
2659
2659
  service_tier: import_v415.z.string().nullish(),
2660
- incomplete_details: import_v415.z.object({ reason: import_v415.z.string() }).nullable(),
2660
+ incomplete_details: import_v415.z.object({ reason: import_v415.z.string() }).nullish(),
2661
2661
  usage: usageSchema2
2662
2662
  })
2663
2663
  ),