@bigfootai/bigfoot-types 5.1.19 → 5.1.20
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/model.js +1 -1
- package/model.ts +1 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1638,7 +1638,7 @@ exports.ChildItemFields = `
|
|
1638
1638
|
blockType: BlockType
|
1639
1639
|
`;
|
1640
1640
|
exports.ChildItemInputQL = `
|
1641
|
-
input
|
1641
|
+
input ChildItemInput {${exports.ChildItemFields}
|
1642
1642
|
}`;
|
1643
1643
|
exports.ChildItemQL = `
|
1644
1644
|
type ChildItem {${exports.ChildItemFields}
|
package/model.ts
CHANGED
@@ -2894,7 +2894,7 @@ export const ChildItemFields = `
|
|
2894
2894
|
blockType: BlockType
|
2895
2895
|
`;
|
2896
2896
|
export const ChildItemInputQL = `
|
2897
|
-
input
|
2897
|
+
input ChildItemInput {${ChildItemFields}
|
2898
2898
|
}`;
|
2899
2899
|
export const ChildItemQL = `
|
2900
2900
|
type ChildItem {${ChildItemFields}
|