@bigfootai/bigfoot-types 4.1.4 → 4.1.5
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 +2 -2
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -636,12 +636,12 @@ class Note extends Block {
|
|
636
636
|
exports.Note = Note;
|
637
637
|
exports.TaskFields = `${exports.BlockFields}
|
638
638
|
status: String!
|
639
|
-
dateDue:
|
639
|
+
dateDue: Float!
|
640
640
|
editorId: String
|
641
641
|
editorGroupId: String
|
642
642
|
snoozed: Boolean!
|
643
643
|
steps: [TaskStep]
|
644
|
-
dateRemindMe:
|
644
|
+
dateRemindMe: Float
|
645
645
|
recurrence: [String]
|
646
646
|
`;
|
647
647
|
exports.TaskQL = `
|
package/model.ts
CHANGED
@@ -999,12 +999,12 @@ export class Note extends Block {
|
|
999
999
|
|
1000
1000
|
export const TaskFields = `${BlockFields}
|
1001
1001
|
status: String!
|
1002
|
-
dateDue:
|
1002
|
+
dateDue: Float!
|
1003
1003
|
editorId: String
|
1004
1004
|
editorGroupId: String
|
1005
1005
|
snoozed: Boolean!
|
1006
1006
|
steps: [TaskStep]
|
1007
|
-
dateRemindMe:
|
1007
|
+
dateRemindMe: Float
|
1008
1008
|
recurrence: [String]
|
1009
1009
|
`;
|
1010
1010
|
export const TaskQL = `
|