@bigfootai/bigfoot-types 5.1.28 → 5.1.29
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.ts +6 -0
- package/package.json +1 -1
package/model.ts
CHANGED
@@ -2014,6 +2014,12 @@ export interface BlockDescription {
|
|
2014
2014
|
tagType?: TagType;
|
2015
2015
|
}
|
2016
2016
|
|
2017
|
+
export interface BlockDescriptionResult {
|
2018
|
+
name: string;
|
2019
|
+
title?: string;
|
2020
|
+
content: string;
|
2021
|
+
}
|
2022
|
+
|
2017
2023
|
export const DocumentMetadataQL = `
|
2018
2024
|
type DocumentMetadata {${MetadataFields}
|
2019
2025
|
blockDescriptions: [BlockDescription]!
|