@kubb/adapter-oas 5.0.0-beta.31 → 5.0.0-beta.33

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/dist/index.cjs CHANGED
@@ -2024,9 +2024,8 @@ function createSchemaParser(ctx, dialect = oasDialect) {
2024
2024
  * Builds a map of child schema names → discriminator patch data by scanning the given
2025
2025
  * top-level AST schema nodes for union schemas that carry a `discriminatorPropertyName`.
2026
2026
  *
2027
- * Extracted from `applyDiscriminatorInheritance` so the streaming path can call it on a
2028
- * small pre-parsed subset of schemas (only the discriminator parents) rather than on all
2029
- * schemas at once.
2027
+ * The streaming path calls this on a small pre-parsed subset of schemas (only the
2028
+ * discriminator parents) rather than on all schemas at once.
2030
2029
  */
2031
2030
  function buildDiscriminatorChildMap(schemas) {
2032
2031
  const childMap = /* @__PURE__ */ new Map();