@bigfootai/bigfoot-types 4.3.5 → 4.3.6

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