@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/session.cjs CHANGED
@@ -1870,6 +1870,8 @@ var KindStreamParser = class {
1870
1870
  const fieldKey = this.fieldKeyFromPath(path);
1871
1871
  if (!fieldKey) return void 0;
1872
1872
  const parentPath = path.slice(0, -1);
1873
+ const inlineFields = this.inlineSchemas.get(this.pathKey(parentPath));
1874
+ if (inlineFields) return inlineFields[fieldKey];
1873
1875
  const parentKind = this.getObjectKindForPath(parentPath);
1874
1876
  if (!parentKind) return void 0;
1875
1877
  return this.lookupSchema(parentKind)?.fields[fieldKey];