@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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1715,6 +1715,7 @@ exports.GraphSearchInputFields = `
1715
1715
  parentId: String
1716
1716
  favorite: Boolean
1717
1717
  snoozed: Boolean
1718
+ dateMatch: NumberFilterInput
1718
1719
  dateDue: NumberFilterInput
1719
1720
  dateCreated: NumberFilterInput
1720
1721
  dateUpdated: NumberFilterInput
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.39",
4
+ "version": "5.1.40",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",