@inkeep/agents-core 0.0.0-dev-20260205163322 → 0.0.0-dev-20260205192144

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.
@@ -3,6 +3,9 @@ import { z } from "@hono/zod-openapi";
3
3
  //#region src/utils/schema-conversion.d.ts
4
4
 
5
5
  /**
6
+ * TODO @Miles this function treats even non required JSON schema field as required, we should probably use
7
+ * import { convertJsonSchemaToZod } from 'zod-from-json-schema';
8
+ *
6
9
  * Converts JSON Schema to Zod schema at runtime.
7
10
  *
8
11
  * This is useful for dynamically creating Zod schemas from JSON Schema definitions,
@@ -4,6 +4,9 @@ import { z } from "@hono/zod-openapi";
4
4
  //#region src/utils/schema-conversion.ts
5
5
  const logger = getLogger("schema-conversion");
6
6
  /**
7
+ * TODO @Miles this function treats even non required JSON schema field as required, we should probably use
8
+ * import { convertJsonSchemaToZod } from 'zod-from-json-schema';
9
+ *
7
10
  * Converts JSON Schema to Zod schema at runtime.
8
11
  *
9
12
  * This is useful for dynamically creating Zod schemas from JSON Schema definitions,