@bigfootai/bigfoot-types 5.3.8 → 5.3.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 +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -740,6 +740,7 @@ exports.TagFieldsWithoutSharing = `${exports.PrimitiveFields}
740
740
  mergedWithTagId: String
741
741
  member: Boolean
742
742
  archived: Boolean!
743
+ private: Boolean
743
744
  favorite: Boolean
744
745
  hasAutoShareNotesOn: Boolean
745
746
  hasAutoShareTasksOn: Boolean
package/model.ts CHANGED
@@ -1102,6 +1102,7 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
1102
1102
  mergedWithTagId: String
1103
1103
  member: Boolean
1104
1104
  archived: Boolean!
1105
+ private: Boolean
1105
1106
  favorite: Boolean
1106
1107
  hasAutoShareNotesOn: Boolean
1107
1108
  hasAutoShareTasksOn: Boolean
@@ -1131,6 +1132,7 @@ export class Tag extends Primitive {
1131
1132
  originNoteId?: string; // If the tag originated from a note, we store that here
1132
1133
  tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
1133
1134
  archived: boolean;
1135
+ private?: boolean; // Indicates if the tag exists, but the user can't see it
1134
1136
  favorite?: boolean; // This is really a virtualized property
1135
1137
  hasAutoShareNotesOn?: boolean; // This is really a virtualized property
1136
1138
  hasAutoShareTasksOn?: boolean; // This is really a virtualized property
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.3.8",
4
+ "version": "5.3.9",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",