@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.
@@ -3146,8 +3146,8 @@ import {
3146
3146
  import { z as z17 } from "zod/v4";
3147
3147
  var comparisonFilterSchema = z17.object({
3148
3148
  key: z17.string(),
3149
- type: z17.enum(["eq", "ne", "gt", "gte", "lt", "lte"]),
3150
- value: z17.union([z17.string(), z17.number(), z17.boolean()])
3149
+ type: z17.enum(["eq", "ne", "gt", "gte", "lt", "lte", "in", "nin"]),
3150
+ value: z17.union([z17.string(), z17.number(), z17.boolean(), z17.array(z17.string())])
3151
3151
  });
3152
3152
  var compoundFilterSchema = z17.object({
3153
3153
  type: z17.enum(["and", "or"]),