@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.
- package/model.js +2 -0
- package/model.ts +4 -0
- 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;
|