@ai-sdk/openai 2.0.79 → 2.0.80

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/dist/index.mjs CHANGED
@@ -1837,8 +1837,8 @@ import {
1837
1837
  import { z as z10 } from "zod/v4";
1838
1838
  var comparisonFilterSchema = z10.object({
1839
1839
  key: z10.string(),
1840
- type: z10.enum(["eq", "ne", "gt", "gte", "lt", "lte"]),
1841
- value: z10.union([z10.string(), z10.number(), z10.boolean()])
1840
+ type: z10.enum(["eq", "ne", "gt", "gte", "lt", "lte", "in", "nin"]),
1841
+ value: z10.union([z10.string(), z10.number(), z10.boolean(), z10.array(z10.string())])
1842
1842
  });
1843
1843
  var compoundFilterSchema = z10.object({
1844
1844
  type: z10.enum(["and", "or"]),
@@ -4632,7 +4632,7 @@ var OpenAITranscriptionModel = class {
4632
4632
  };
4633
4633
 
4634
4634
  // src/version.ts
4635
- var VERSION = true ? "2.0.79" : "0.0.0-test";
4635
+ var VERSION = true ? "2.0.80" : "0.0.0-test";
4636
4636
 
4637
4637
  // src/openai-provider.ts
4638
4638
  function createOpenAI(options = {}) {