@bigfootai/bigfoot-types 4.3.5 → 4.3.7

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 -0
  2. package/model.ts +4 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1054,7 +1054,9 @@ input SearchTagsInput {
1054
1054
  email: String
1055
1055
  inviteStatus: Int
1056
1056
  archived: Boolean
1057
+ hasTasks: Boolean
1057
1058
  orderByAlias: String
1059
+ orderByTaskCount: String
1058
1060
  orderByFriendlyName: String
1059
1061
  orderByDateUpdated: String
1060
1062
  orderByDateCreated: String
package/model.ts CHANGED
@@ -1946,7 +1946,9 @@ input SearchTagsInput {
1946
1946
  email: String
1947
1947
  inviteStatus: Int
1948
1948
  archived: Boolean
1949
+ hasTasks: Boolean
1949
1950
  orderByAlias: String
1951
+ orderByTaskCount: String
1950
1952
  orderByFriendlyName: String
1951
1953
  orderByDateUpdated: String
1952
1954
  orderByDateCreated: String
@@ -1959,7 +1961,9 @@ export interface SearchTagsInput {
1959
1961
  email?: string;
1960
1962
  inviteStatus?: InviteStatus;
1961
1963
  archived?: boolean;
1964
+ hasTasks?: boolean;
1962
1965
  orderByAlias?: OrderByDirection;
1966
+ orderByTaskCount?: number;
1963
1967
  orderByFriendlyName?: OrderByDirection;
1964
1968
  orderByDateUpdated?: OrderByDirection;
1965
1969
  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.5",
4
+ "version": "4.3.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",