@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.
@@ -3564,8 +3564,8 @@ import {
3564
3564
  import { z as z19 } from "zod/v4";
3565
3565
  var comparisonFilterSchema = z19.object({
3566
3566
  key: z19.string(),
3567
- type: z19.enum(["eq", "ne", "gt", "gte", "lt", "lte"]),
3568
- value: z19.union([z19.string(), z19.number(), z19.boolean()])
3567
+ type: z19.enum(["eq", "ne", "gt", "gte", "lt", "lte", "in", "nin"]),
3568
+ value: z19.union([z19.string(), z19.number(), z19.boolean(), z19.array(z19.string())])
3569
3569
  });
3570
3570
  var compoundFilterSchema = z19.object({
3571
3571
  type: z19.enum(["and", "or"]),