@bigfootai/bigfoot-types 4.3.7 → 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.
Files changed (3) hide show
  1. package/model.js +2 -1
  2. package/model.ts +4 -2
  3. 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
 
@@ -1963,7 +1965,7 @@ export interface SearchTagsInput {
1963
1965
  archived?: boolean;
1964
1966
  hasTasks?: boolean;
1965
1967
  orderByAlias?: OrderByDirection;
1966
- orderByTaskCount?: number;
1968
+ orderByTaskCount?: OrderByDirection;
1967
1969
  orderByFriendlyName?: OrderByDirection;
1968
1970
  orderByDateUpdated?: OrderByDirection;
1969
1971
  orderByDateCreated?: OrderByDirection;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.3.7",
4
+ "version": "4.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",