@bigfootai/bigfoot-types 4.8.6 → 4.8.8

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 +3 -1
  2. package/model.ts +4 -1
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -618,7 +618,9 @@ exports.TagFieldsWithoutSharing = `${exports.PrimitiveFields}
618
618
  tenantIdVerified: String
619
619
  businessObjects: [BusinessObjectLink]
620
620
  archived: Boolean!
621
- favorite: Boolean!
621
+ favorite: Boolean
622
+ hasAutoShareNotesOn: Boolean
623
+ hasAutoShareTasksOn: Boolean
622
624
  taskCount: Int`;
623
625
  exports.TagFieldsJustSharing = `
624
626
  sharingDomains: [SharingDomain]
package/model.ts CHANGED
@@ -914,7 +914,9 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
914
914
  tenantIdVerified: String
915
915
  businessObjects: [BusinessObjectLink]
916
916
  archived: Boolean!
917
- favorite: Boolean!
917
+ favorite: Boolean
918
+ hasAutoShareNotesOn: Boolean
919
+ hasAutoShareTasksOn: Boolean
918
920
  taskCount: Int`;
919
921
  export const TagFieldsJustSharing = `
920
922
  sharingDomains: [SharingDomain]
@@ -950,6 +952,7 @@ export class Tag extends Primitive {
950
952
  _inviteCode?: string;
951
953
  _dateInviteCodeExpires?: number;
952
954
  _merged?: boolean;
955
+ _mergedWith?: string;
953
956
 
954
957
  constructor(tenantIdCreated: string, alias: string, tagType: TagType) {
955
958
  super();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.8.6",
4
+ "version": "4.8.8",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",