@ai-matrx/content-ir 0.10.2 → 0.10.3

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/core.js CHANGED
@@ -1881,6 +1881,8 @@ var KindStreamParser = class {
1881
1881
  const fieldKey = this.fieldKeyFromPath(path);
1882
1882
  if (!fieldKey) return void 0;
1883
1883
  const parentPath = path.slice(0, -1);
1884
+ const inlineFields = this.inlineSchemas.get(this.pathKey(parentPath));
1885
+ if (inlineFields) return inlineFields[fieldKey];
1884
1886
  const parentKind = this.getObjectKindForPath(parentPath);
1885
1887
  if (!parentKind) return void 0;
1886
1888
  return this.lookupSchema(parentKind)?.fields[fieldKey];