@ax-llm/ax 19.0.4 → 19.0.7

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/index.d.cts CHANGED
@@ -344,7 +344,7 @@ type AxFunctionHandler = (args?: any, extra?: Readonly<{
344
344
  abortSignal?: AbortSignal;
345
345
  }>) => unknown;
346
346
  type AxFunctionJSONSchema = {
347
- type: string;
347
+ type: string | string[];
348
348
  properties?: Record<string, AxFunctionJSONSchema & {
349
349
  enum?: string[];
350
350
  description: string;
package/index.d.ts CHANGED
@@ -344,7 +344,7 @@ type AxFunctionHandler = (args?: any, extra?: Readonly<{
344
344
  abortSignal?: AbortSignal;
345
345
  }>) => unknown;
346
346
  type AxFunctionJSONSchema = {
347
- type: string;
347
+ type: string | string[];
348
348
  properties?: Record<string, AxFunctionJSONSchema & {
349
349
  enum?: string[];
350
350
  description: string;