@bigfootai/bigfoot-types 3.9.6 → 3.9.7

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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +1 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -33,6 +33,7 @@ var TagType;
33
33
  TagType["Topic"] = "topic";
34
34
  TagType["Location"] = "location";
35
35
  TagType["Date"] = "date";
36
+ TagType["Unknown"] = "unknown";
36
37
  })(TagType || (exports.TagType = TagType = {}));
37
38
  var ClientType;
38
39
  (function (ClientType) {
package/model.ts CHANGED
@@ -28,6 +28,7 @@ export enum TagType {
28
28
  Topic = 'topic',
29
29
  Location = 'location',
30
30
  Date = 'date',
31
+ Unknown = 'unknown',
31
32
  }
32
33
 
33
34
  export enum ClientType {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.9.6",
4
+ "version": "3.9.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",