@bigfootai/bigfoot-types 4.4.31 → 4.4.32

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 +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -592,6 +592,7 @@ type Article {${exports.PrimitiveFields}
592
592
  referenceBlock: ReferenceBlock!
593
593
  sentiment: DocumentSentiment
594
594
  dateDue: Float
595
+ dateRemindMe: Float
595
596
  dates: [EntityEntry]
596
597
  locations: [EntityEntry]
597
598
  linkUrls: [String]
package/model.ts CHANGED
@@ -884,6 +884,7 @@ type Article {${PrimitiveFields}
884
884
  referenceBlock: ReferenceBlock!
885
885
  sentiment: DocumentSentiment
886
886
  dateDue: Float
887
+ dateRemindMe: Float
887
888
  dates: [EntityEntry]
888
889
  locations: [EntityEntry]
889
890
  linkUrls: [String]
@@ -905,6 +906,7 @@ export class Article extends Primitive {
905
906
  embedding?: number[];
906
907
  sentiment?: DocumentSentiment;
907
908
  dateDue?: number;
909
+ dateRemindMe?: number;
908
910
  dates?: EntityEntry[];
909
911
  locations?: EntityEntry[];
910
912
  linkUrls?: string[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.4.31",
4
+ "version": "4.4.32",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",