@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.
Files changed (3) hide show
  1. package/model.js +2 -2
  2. package/model.ts +2 -2
  3. 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: Int!
639
+ dateDue: Float!
640
640
  editorId: String
641
641
  editorGroupId: String
642
642
  snoozed: Boolean!
643
643
  steps: [TaskStep]
644
- dateRemindMe: Int
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: Int!
1002
+ dateDue: Float!
1003
1003
  editorId: String
1004
1004
  editorGroupId: String
1005
1005
  snoozed: Boolean!
1006
1006
  steps: [TaskStep]
1007
- dateRemindMe: Int
1007
+ dateRemindMe: Float
1008
1008
  recurrence: [String]
1009
1009
  `;
1010
1010
  export const TaskQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.1.4",
4
+ "version": "4.1.5",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",