@bigfootai/bigfoot-types 4.8.4 → 4.8.6
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
@@ -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
@@ -949,6 +949,7 @@ export class Tag extends Primitive {
|
|
949
949
|
_savedSearchId?: string;
|
950
950
|
_inviteCode?: string;
|
951
951
|
_dateInviteCodeExpires?: number;
|
952
|
+
_merged?: boolean;
|
952
953
|
|
953
954
|
constructor(tenantIdCreated: string, alias: string, tagType: TagType) {
|
954
955
|
super();
|
@@ -1435,7 +1436,7 @@ export class Note extends Block {
|
|
1435
1436
|
}
|
1436
1437
|
|
1437
1438
|
export const TaskFields = `${BlockFields}
|
1438
|
-
status:
|
1439
|
+
status: Int!
|
1439
1440
|
dateDue: Float
|
1440
1441
|
editorId: String
|
1441
1442
|
editorGroupId: String
|
@@ -1445,7 +1446,7 @@ export const TaskFields = `${BlockFields}
|
|
1445
1446
|
recurrence: [String]
|
1446
1447
|
`;
|
1447
1448
|
export const TaskFieldsForUpsert = `${BlockFieldsForUpsert}
|
1448
|
-
status:
|
1449
|
+
status: Int
|
1449
1450
|
dateDue: Float
|
1450
1451
|
snoozed: Boolean
|
1451
1452
|
steps: [TaskStepInput]
|