@bigfootai/bigfoot-types 4.1.3 → 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 +3 -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
@@ -530,6 +530,7 @@ type PersonReference {${PersonReferenceFields}
530
530
  }`;
531
531
  export interface PersonReference {
532
532
  email: string;
533
+ friendlyName?: string;
533
534
  }
534
535
 
535
536
  export const PrimitiveFields = `
@@ -998,12 +999,12 @@ export class Note extends Block {
998
999
 
999
1000
  export const TaskFields = `${BlockFields}
1000
1001
  status: String!
1001
- dateDue: Int!
1002
+ dateDue: Float!
1002
1003
  editorId: String
1003
1004
  editorGroupId: String
1004
1005
  snoozed: Boolean!
1005
1006
  steps: [TaskStep]
1006
- dateRemindMe: Int
1007
+ dateRemindMe: Float
1007
1008
  recurrence: [String]
1008
1009
  `;
1009
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.3",
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",