@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/CHANGELOG.md +24 -0
- package/dist/core.cjs +2 -0
- package/dist/core.cjs.map +1 -1
- package/dist/core.js +2 -0
- package/dist/core.js.map +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/session.cjs +2 -0
- package/dist/session.cjs.map +1 -1
- package/dist/session.js +2 -0
- package/dist/session.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1889,6 +1889,8 @@ var KindStreamParser = class {
|
|
|
1889
1889
|
const fieldKey = this.fieldKeyFromPath(path);
|
|
1890
1890
|
if (!fieldKey) return void 0;
|
|
1891
1891
|
const parentPath = path.slice(0, -1);
|
|
1892
|
+
const inlineFields = this.inlineSchemas.get(this.pathKey(parentPath));
|
|
1893
|
+
if (inlineFields) return inlineFields[fieldKey];
|
|
1892
1894
|
const parentKind = this.getObjectKindForPath(parentPath);
|
|
1893
1895
|
if (!parentKind) return void 0;
|
|
1894
1896
|
return this.lookupSchema(parentKind)?.fields[fieldKey];
|