@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.
@@ -295,13 +295,13 @@ type OpenAIResponsesFileSearchToolComparisonFilter = {
295
295
  */
296
296
  key: string;
297
297
  /**
298
- * Specifies the comparison operator: eq, ne, gt, gte, lt, lte.
298
+ * Specifies the comparison operator: eq, ne, gt, gte, lt, lte, in, nin.
299
299
  */
300
- type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte';
300
+ type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin';
301
301
  /**
302
- * The value to compare against the attribute key; supports string, number, or boolean types.
302
+ * The value to compare against the attribute key; supports string, number, boolean, or array of string types.
303
303
  */
304
- value: string | number | boolean;
304
+ value: string | number | boolean | string[];
305
305
  };
306
306
  /**
307
307
  * Combine multiple filters using and or or.
@@ -295,13 +295,13 @@ type OpenAIResponsesFileSearchToolComparisonFilter = {
295
295
  */
296
296
  key: string;
297
297
  /**
298
- * Specifies the comparison operator: eq, ne, gt, gte, lt, lte.
298
+ * Specifies the comparison operator: eq, ne, gt, gte, lt, lte, in, nin.
299
299
  */
300
- type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte';
300
+ type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin';
301
301
  /**
302
- * The value to compare against the attribute key; supports string, number, or boolean types.
302
+ * The value to compare against the attribute key; supports string, number, boolean, or array of string types.
303
303
  */
304
- value: string | number | boolean;
304
+ value: string | number | boolean | string[];
305
305
  };
306
306
  /**
307
307
  * Combine multiple filters using and or or.
@@ -3097,8 +3097,8 @@ var import_provider_utils24 = require("@ai-sdk/provider-utils");
3097
3097
  var import_v417 = require("zod/v4");
3098
3098
  var comparisonFilterSchema = import_v417.z.object({
3099
3099
  key: import_v417.z.string(),
3100
- type: import_v417.z.enum(["eq", "ne", "gt", "gte", "lt", "lte"]),
3101
- value: import_v417.z.union([import_v417.z.string(), import_v417.z.number(), import_v417.z.boolean()])
3100
+ type: import_v417.z.enum(["eq", "ne", "gt", "gte", "lt", "lte", "in", "nin"]),
3101
+ value: import_v417.z.union([import_v417.z.string(), import_v417.z.number(), import_v417.z.boolean(), import_v417.z.array(import_v417.z.string())])
3102
3102
  });
3103
3103
  var compoundFilterSchema = import_v417.z.object({
3104
3104
  type: import_v417.z.enum(["and", "or"]),