@bigfootai/bigfoot-types 2.10.1 → 2.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/model.js +1 -1
- package/model.ts +1 -1
- package/package.json +1 -1
package/model.js
CHANGED
|
@@ -23,7 +23,7 @@ var BusinessObjectType;
|
|
|
23
23
|
})(BusinessObjectType || (exports.BusinessObjectType = BusinessObjectType = {}));
|
|
24
24
|
var BlockType;
|
|
25
25
|
(function (BlockType) {
|
|
26
|
-
BlockType["Note"] = "
|
|
26
|
+
BlockType["Note"] = "note";
|
|
27
27
|
BlockType["Section"] = "section";
|
|
28
28
|
BlockType["Task"] = "task";
|
|
29
29
|
BlockType["Data"] = "data";
|
package/model.ts
CHANGED
|
@@ -20,7 +20,7 @@ export enum BusinessObjectType {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
export enum BlockType {
|
|
23
|
-
Note = '
|
|
23
|
+
Note = 'note', // It's a full note
|
|
24
24
|
Section = 'section', // It's a fragment of content
|
|
25
25
|
Task = 'task', // It's a task
|
|
26
26
|
Data = 'data', // It's a record or set of records belonging to a specific metadata definition
|