@bigfootai/bigfoot-types 4.4.30 → 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 +3 -2
- package/model.ts +4 -2
- 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]
|
@@ -1129,8 +1130,8 @@ input UpdateTaskInput {
|
|
1129
1130
|
_id: String
|
1130
1131
|
editor: EditorInput!
|
1131
1132
|
status: Int!
|
1132
|
-
dateDue: Float
|
1133
|
-
snoozed: Boolean
|
1133
|
+
dateDue: Float
|
1134
|
+
snoozed: Boolean
|
1134
1135
|
steps: [TaskStepInput]
|
1135
1136
|
dateRemindMe: Float
|
1136
1137
|
recurrence: [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[];
|
@@ -2043,8 +2045,8 @@ input UpdateTaskInput {
|
|
2043
2045
|
_id: String
|
2044
2046
|
editor: EditorInput!
|
2045
2047
|
status: Int!
|
2046
|
-
dateDue: Float
|
2047
|
-
snoozed: Boolean
|
2048
|
+
dateDue: Float
|
2049
|
+
snoozed: Boolean
|
2048
2050
|
steps: [TaskStepInput]
|
2049
2051
|
dateRemindMe: Float
|
2050
2052
|
recurrence: [String]
|