@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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.d.mts +4 -4
- package/dist/internal/index.d.ts +4 -4
- package/dist/internal/index.js +2 -2
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +2 -2
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/internal/index.mjs
CHANGED
|
@@ -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"]),
|