@oh-my-pi/pi-ai 4.4.8 → 4.4.9
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/package.json
CHANGED
|
@@ -200,6 +200,18 @@ const UNSUPPORTED_SCHEMA_FIELDS = new Set([
|
|
|
200
200
|
"prefixItems",
|
|
201
201
|
"unevaluatedProperties",
|
|
202
202
|
"unevaluatedItems",
|
|
203
|
+
"patternProperties",
|
|
204
|
+
"additionalProperties",
|
|
205
|
+
"minItems",
|
|
206
|
+
"maxItems",
|
|
207
|
+
"minLength",
|
|
208
|
+
"maxLength",
|
|
209
|
+
"minimum",
|
|
210
|
+
"maximum",
|
|
211
|
+
"exclusiveMinimum",
|
|
212
|
+
"exclusiveMaximum",
|
|
213
|
+
"pattern",
|
|
214
|
+
"format",
|
|
203
215
|
]);
|
|
204
216
|
|
|
205
217
|
export function sanitizeSchemaForGoogle(value: unknown): unknown {
|