@zenning/openai 3.0.14 → 3.0.15

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
+ ## 3.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - approvals5
8
+
3
9
  ## 3.0.14
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2601,6 +2601,10 @@ async function convertToOpenAIResponsesInput({
2601
2601
  input.push({ type: "item_reference", id });
2602
2602
  break;
2603
2603
  }
2604
+ if (skipItemReferences) {
2605
+ console.log("[OpenAI Provider] Skipping function_call due to approval continuation flag");
2606
+ break;
2607
+ }
2604
2608
  const resolvedToolName = toolNameMapping.toProviderToolName(
2605
2609
  part.toolName
2606
2610
  );
@@ -5784,7 +5788,7 @@ var OpenAITranscriptionModel = class {
5784
5788
  };
5785
5789
 
5786
5790
  // src/version.ts
5787
- var VERSION = true ? "3.0.13" : "0.0.0-test";
5791
+ var VERSION = true ? "3.0.14" : "0.0.0-test";
5788
5792
 
5789
5793
  // src/openai-provider.ts
5790
5794
  function createOpenAI(options = {}) {