@bigfootai/bigfoot-types 4.3.8 → 4.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 +2 -1
- package/model.ts +3 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -471,7 +471,8 @@ exports.TagFieldsWithoutSharing = `${exports.PrimitiveFields}
|
|
471
471
|
inviteStatus: Int
|
472
472
|
originNoteId: String
|
473
473
|
tenantIdVerified: String
|
474
|
-
archived: Boolean
|
474
|
+
archived: Boolean!
|
475
|
+
taskCount: Int`;
|
475
476
|
exports.TagFieldsJustSharing = `
|
476
477
|
sharingDomains: [SharingDomain]
|
477
478
|
sharingTenants: [SharingTenant]`;
|
package/model.ts
CHANGED
@@ -684,7 +684,8 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
|
|
684
684
|
inviteStatus: Int
|
685
685
|
originNoteId: String
|
686
686
|
tenantIdVerified: String
|
687
|
-
archived: Boolean
|
687
|
+
archived: Boolean!
|
688
|
+
taskCount: Int`;
|
688
689
|
export const TagFieldsJustSharing = `
|
689
690
|
sharingDomains: [SharingDomain]
|
690
691
|
sharingTenants: [SharingTenant]`;
|
@@ -706,6 +707,7 @@ export class Tag extends Primitive {
|
|
706
707
|
originNoteId?: string; // If the tag originated from a note, we store that here
|
707
708
|
tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
|
708
709
|
archived: boolean;
|
710
|
+
taskCount?: number;
|
709
711
|
_createdByAI: boolean;
|
710
712
|
_orphan?: boolean;
|
711
713
|
|