@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.
- package/model.js +2 -2
- package/model.ts +3 -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
@@ -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:
|
1002
|
+
dateDue: Float!
|
1002
1003
|
editorId: String
|
1003
1004
|
editorGroupId: String
|
1004
1005
|
snoozed: Boolean!
|
1005
1006
|
steps: [TaskStep]
|
1006
|
-
dateRemindMe:
|
1007
|
+
dateRemindMe: Float
|
1007
1008
|
recurrence: [String]
|
1008
1009
|
`;
|
1009
1010
|
export const TaskQL = `
|