@bigfootai/bigfoot-types 5.2.36 → 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.
Files changed (3) hide show
  1. package/model.js +2 -0
  2. package/model.ts +5 -0
  3. 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
@@ -1029,6 +1029,7 @@ export class Provider extends Primitive {
1029
1029
  documentMetadata?: DocumentMetadata[];
1030
1030
  dashboardMetadata?: DashboardMetadata[];
1031
1031
  subscriptionPubSubType?: PubSubType.ProviderConnectionChanged;
1032
+ _tenantId?: string;
1032
1033
 
1033
1034
  constructor(
1034
1035
  name: string,
@@ -1453,6 +1454,7 @@ export const BlockFields = `${SharedPrimitiveFields}
1453
1454
  snoozed: Boolean!
1454
1455
  dateDue: Float
1455
1456
  dateRemindMe: Float
1457
+ dateAssociated: Float
1456
1458
  status: String
1457
1459
  parentId: String
1458
1460
  originReferenceBlock: ReferenceBlock
@@ -1461,6 +1463,7 @@ export const BlockFieldsForUpsert = `${SharedPrimitiveFieldsForUpsert}
1461
1463
  status: String
1462
1464
  dateDue: Float
1463
1465
  dateRemindMe: Float
1466
+ dateAssociated: Float
1464
1467
  archived: Boolean
1465
1468
  favorite: Boolean
1466
1469
  snoozed: Boolean
@@ -1491,6 +1494,8 @@ export class Block extends SharedPrimitive {
1491
1494
  dateRemindMe?: number;
1492
1495
  status?: TaskStatus;
1493
1496
  _dateDueUserAssigned: boolean;
1497
+ // Stuff to associate blocks with calendar items manually
1498
+ dateAssociated?: number;
1494
1499
  // Editor informatino about teh block
1495
1500
  editorId?: string;
1496
1501
  editorGroupId?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.36",
4
+ "version": "5.3.1",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",