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