@bigfootai/bigfoot-types 5.1.27 → 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.
@@ -48,7 +48,7 @@ exports.Case = {
48
48
  },
49
49
  ],
50
50
  important: true,
51
- status: false,
51
+ priority: true,
52
52
  },
53
53
  {
54
54
  label: 'Status',
@@ -54,7 +54,7 @@ export const Case: TableMetadata = {
54
54
  },
55
55
  ],
56
56
  important: true,
57
- status: false,
57
+ priority: true,
58
58
  },
59
59
  {
60
60
  label: 'Status',
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]!
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.27",
4
+ "version": "5.1.29",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",