@bigfootai/bigfoot-types 5.3.0 → 5.3.1
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 -0
- package/model.ts +4 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -942,6 +942,7 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
|
|
942
942
|
snoozed: Boolean!
|
943
943
|
dateDue: Float
|
944
944
|
dateRemindMe: Float
|
945
|
+
dateAssociated: Float
|
945
946
|
status: String
|
946
947
|
parentId: String
|
947
948
|
originReferenceBlock: ReferenceBlock
|
@@ -950,6 +951,7 @@ exports.BlockFieldsForUpsert = `${exports.SharedPrimitiveFieldsForUpsert}
|
|
950
951
|
status: String
|
951
952
|
dateDue: Float
|
952
953
|
dateRemindMe: Float
|
954
|
+
dateAssociated: Float
|
953
955
|
archived: Boolean
|
954
956
|
favorite: Boolean
|
955
957
|
snoozed: Boolean
|
package/model.ts
CHANGED
@@ -1454,6 +1454,7 @@ export const BlockFields = `${SharedPrimitiveFields}
|
|
1454
1454
|
snoozed: Boolean!
|
1455
1455
|
dateDue: Float
|
1456
1456
|
dateRemindMe: Float
|
1457
|
+
dateAssociated: Float
|
1457
1458
|
status: String
|
1458
1459
|
parentId: String
|
1459
1460
|
originReferenceBlock: ReferenceBlock
|
@@ -1462,6 +1463,7 @@ export const BlockFieldsForUpsert = `${SharedPrimitiveFieldsForUpsert}
|
|
1462
1463
|
status: String
|
1463
1464
|
dateDue: Float
|
1464
1465
|
dateRemindMe: Float
|
1466
|
+
dateAssociated: Float
|
1465
1467
|
archived: Boolean
|
1466
1468
|
favorite: Boolean
|
1467
1469
|
snoozed: Boolean
|
@@ -1492,6 +1494,8 @@ export class Block extends SharedPrimitive {
|
|
1492
1494
|
dateRemindMe?: number;
|
1493
1495
|
status?: TaskStatus;
|
1494
1496
|
_dateDueUserAssigned: boolean;
|
1497
|
+
// Stuff to associate blocks with calendar items manually
|
1498
|
+
dateAssociated?: number;
|
1495
1499
|
// Editor informatino about teh block
|
1496
1500
|
editorId?: string;
|
1497
1501
|
editorGroupId?: string;
|