@bigfootai/bigfoot-types 4.3.3 → 4.3.5
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 -0
- package/model.ts +2 -1
- 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";
|
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',
|
@@ -1219,7 +1220,7 @@ export interface CalendarFilter {
|
|
1219
1220
|
|
1220
1221
|
export interface CalendarProviderRequest {
|
1221
1222
|
filter: CalendarFilter;
|
1222
|
-
|
1223
|
+
connectedProvider: ConnectedProvider;
|
1223
1224
|
}
|
1224
1225
|
|
1225
1226
|
export const EventQL = `
|