@ai-sdk/openai 3.0.0-beta.87 → 3.0.0-beta.88

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
@@ -1862,8 +1862,8 @@ import {
1862
1862
  import { z as z11 } from "zod/v4";
1863
1863
  var comparisonFilterSchema = z11.object({
1864
1864
  key: z11.string(),
1865
- type: z11.enum(["eq", "ne", "gt", "gte", "lt", "lte"]),
1866
- value: z11.union([z11.string(), z11.number(), z11.boolean()])
1865
+ type: z11.enum(["eq", "ne", "gt", "gte", "lt", "lte", "in", "nin"]),
1866
+ value: z11.union([z11.string(), z11.number(), z11.boolean(), z11.array(z11.string())])
1867
1867
  });
1868
1868
  var compoundFilterSchema = z11.object({
1869
1869
  type: z11.enum(["and", "or"]),
@@ -5482,7 +5482,7 @@ var OpenAITranscriptionModel = class {
5482
5482
  };
5483
5483
 
5484
5484
  // src/version.ts
5485
- var VERSION = true ? "3.0.0-beta.87" : "0.0.0-test";
5485
+ var VERSION = true ? "3.0.0-beta.88" : "0.0.0-test";
5486
5486
 
5487
5487
  // src/openai-provider.ts
5488
5488
  function createOpenAI(options = {}) {