@bigfootai/bigfoot-types 4.8.7 → 4.8.9

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