@bigfootai/bigfoot-types 5.1.39 → 5.1.40
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 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -3053,6 +3053,7 @@ export const GraphSearchInputFields = `
|
|
3053
3053
|
parentId: String
|
3054
3054
|
favorite: Boolean
|
3055
3055
|
snoozed: Boolean
|
3056
|
+
dateMatch: NumberFilterInput
|
3056
3057
|
dateDue: NumberFilterInput
|
3057
3058
|
dateCreated: NumberFilterInput
|
3058
3059
|
dateUpdated: NumberFilterInput
|
@@ -3082,6 +3083,7 @@ export interface GraphSearchInput {
|
|
3082
3083
|
favorite?: boolean;
|
3083
3084
|
snoozed?: boolean;
|
3084
3085
|
// Fuzzy filters
|
3086
|
+
dateMatch?: NumberFilterInput;
|
3085
3087
|
dateDue?: NumberFilterInput;
|
3086
3088
|
dateCreated?: NumberFilterInput;
|
3087
3089
|
dateUpdated?: NumberFilterInput;
|