@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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[];
|