@bigfootai/bigfoot-types 4.8.4 → 4.8.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
@@ -889,7 +889,7 @@ class Note extends Block {
|
|
889
889
|
}
|
890
890
|
exports.Note = Note;
|
891
891
|
exports.TaskFields = `${exports.BlockFields}
|
892
|
-
status:
|
892
|
+
status: Int!
|
893
893
|
dateDue: Float
|
894
894
|
editorId: String
|
895
895
|
editorGroupId: String
|
@@ -899,7 +899,7 @@ exports.TaskFields = `${exports.BlockFields}
|
|
899
899
|
recurrence: [String]
|
900
900
|
`;
|
901
901
|
exports.TaskFieldsForUpsert = `${exports.BlockFieldsForUpsert}
|
902
|
-
status:
|
902
|
+
status: Int
|
903
903
|
dateDue: Float
|
904
904
|
snoozed: Boolean
|
905
905
|
steps: [TaskStepInput]
|
package/model.ts
CHANGED
@@ -1435,7 +1435,7 @@ export class Note extends Block {
|
|
1435
1435
|
}
|
1436
1436
|
|
1437
1437
|
export const TaskFields = `${BlockFields}
|
1438
|
-
status:
|
1438
|
+
status: Int!
|
1439
1439
|
dateDue: Float
|
1440
1440
|
editorId: String
|
1441
1441
|
editorGroupId: String
|
@@ -1445,7 +1445,7 @@ export const TaskFields = `${BlockFields}
|
|
1445
1445
|
recurrence: [String]
|
1446
1446
|
`;
|
1447
1447
|
export const TaskFieldsForUpsert = `${BlockFieldsForUpsert}
|
1448
|
-
status:
|
1448
|
+
status: Int
|
1449
1449
|
dateDue: Float
|
1450
1450
|
snoozed: Boolean
|
1451
1451
|
steps: [TaskStepInput]
|