@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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
|