@bigfootai/bigfoot-types 4.3.4 → 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 +3 -0
- package/model.ts +5 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -78,6 +78,7 @@ var TagRecommendationType;
|
|
78
78
|
TagRecommendationType["TagMissing"] = "missing";
|
79
79
|
TagRecommendationType["TagCreated"] = "created";
|
80
80
|
TagRecommendationType["TagFound"] = "found";
|
81
|
+
TagRecommendationType["TagNotFound"] = "not_found";
|
81
82
|
TagRecommendationType["MultipleTagsFound"] = "multiple_found";
|
82
83
|
TagRecommendationType["TagCreationFailed"] = "creation_failed";
|
83
84
|
TagRecommendationType["Ignore"] = "ignore";
|
@@ -1053,6 +1054,8 @@ input SearchTagsInput {
|
|
1053
1054
|
email: String
|
1054
1055
|
inviteStatus: Int
|
1055
1056
|
archived: Boolean
|
1057
|
+
hasTasks: Boolean
|
1058
|
+
orderByTasks: String
|
1056
1059
|
orderByAlias: String
|
1057
1060
|
orderByFriendlyName: String
|
1058
1061
|
orderByDateUpdated: String
|
package/model.ts
CHANGED
@@ -73,6 +73,7 @@ export enum TagRecommendationType {
|
|
73
73
|
TagMissing = 'missing',
|
74
74
|
TagCreated = 'created',
|
75
75
|
TagFound = 'found',
|
76
|
+
TagNotFound = 'not_found',
|
76
77
|
MultipleTagsFound = 'multiple_found',
|
77
78
|
TagCreationFailed = 'creation_failed',
|
78
79
|
Ignore = 'ignore',
|
@@ -1945,6 +1946,8 @@ input SearchTagsInput {
|
|
1945
1946
|
email: String
|
1946
1947
|
inviteStatus: Int
|
1947
1948
|
archived: Boolean
|
1949
|
+
hasTasks: Boolean
|
1950
|
+
orderByTasks: String
|
1948
1951
|
orderByAlias: String
|
1949
1952
|
orderByFriendlyName: String
|
1950
1953
|
orderByDateUpdated: String
|
@@ -1958,6 +1961,8 @@ export interface SearchTagsInput {
|
|
1958
1961
|
email?: string;
|
1959
1962
|
inviteStatus?: InviteStatus;
|
1960
1963
|
archived?: boolean;
|
1964
|
+
hasTasks?: boolean;
|
1965
|
+
orderByTasks?: number;
|
1961
1966
|
orderByAlias?: OrderByDirection;
|
1962
1967
|
orderByFriendlyName?: OrderByDirection;
|
1963
1968
|
orderByDateUpdated?: OrderByDirection;
|