@bigfootai/bigfoot-types 5.1.38 → 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 +3 -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
@@ -464,6 +464,7 @@ export interface EntityEntry extends MachineLearningEntry {
464
464
  text: string;
465
465
  confidence: number;
466
466
  date?: number;
467
+ dateEnd?: number;
467
468
  _tagId?: string;
468
469
  _email?: string;
469
470
  _url?: string;
@@ -3052,6 +3053,7 @@ export const GraphSearchInputFields = `
3052
3053
  parentId: String
3053
3054
  favorite: Boolean
3054
3055
  snoozed: Boolean
3056
+ dateMatch: NumberFilterInput
3055
3057
  dateDue: NumberFilterInput
3056
3058
  dateCreated: NumberFilterInput
3057
3059
  dateUpdated: NumberFilterInput
@@ -3081,6 +3083,7 @@ export interface GraphSearchInput {
3081
3083
  favorite?: boolean;
3082
3084
  snoozed?: boolean;
3083
3085
  // Fuzzy filters
3086
+ dateMatch?: NumberFilterInput;
3084
3087
  dateDue?: NumberFilterInput;
3085
3088
  dateCreated?: NumberFilterInput;
3086
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.38",
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",