@bigfootai/bigfoot-types 4.3.6 → 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 +1 -1
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1055,8 +1055,8 @@ input SearchTagsInput {
|
|
1055
1055
|
inviteStatus: Int
|
1056
1056
|
archived: Boolean
|
1057
1057
|
hasTasks: Boolean
|
1058
|
-
orderByTasks: String
|
1059
1058
|
orderByAlias: String
|
1059
|
+
orderByTaskCount: String
|
1060
1060
|
orderByFriendlyName: String
|
1061
1061
|
orderByDateUpdated: String
|
1062
1062
|
orderByDateCreated: String
|
package/model.ts
CHANGED
@@ -1947,8 +1947,8 @@ input SearchTagsInput {
|
|
1947
1947
|
inviteStatus: Int
|
1948
1948
|
archived: Boolean
|
1949
1949
|
hasTasks: Boolean
|
1950
|
-
orderByTasks: String
|
1951
1950
|
orderByAlias: String
|
1951
|
+
orderByTaskCount: String
|
1952
1952
|
orderByFriendlyName: String
|
1953
1953
|
orderByDateUpdated: String
|
1954
1954
|
orderByDateCreated: String
|
@@ -1962,8 +1962,8 @@ export interface SearchTagsInput {
|
|
1962
1962
|
inviteStatus?: InviteStatus;
|
1963
1963
|
archived?: boolean;
|
1964
1964
|
hasTasks?: boolean;
|
1965
|
-
orderByTasks?: number;
|
1966
1965
|
orderByAlias?: OrderByDirection;
|
1966
|
+
orderByTaskCount?: number;
|
1967
1967
|
orderByFriendlyName?: OrderByDirection;
|
1968
1968
|
orderByDateUpdated?: OrderByDirection;
|
1969
1969
|
orderByDateCreated?: OrderByDirection;
|