@bigfootai/bigfoot-types 5.1.0 → 5.1.1

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
@@ -1608,6 +1608,7 @@ exports.GraphSearchInputQL = `
1608
1608
  input GraphSearchInput {
1609
1609
  search: String
1610
1610
  _ids: [String]
1611
+ tenantIdCreateds: [String]
1611
1612
  tagIds: [String]
1612
1613
  blockTypes: [BlockType]
1613
1614
  statuses: [TaskStatus]
package/model.ts CHANGED
@@ -2845,6 +2845,7 @@ export const GraphSearchInputQL = `
2845
2845
  input GraphSearchInput {
2846
2846
  search: String
2847
2847
  _ids: [String]
2848
+ tenantIdCreateds: [String]
2848
2849
  tagIds: [String]
2849
2850
  blockTypes: [BlockType]
2850
2851
  statuses: [TaskStatus]
@@ -2868,6 +2869,7 @@ export interface GraphSearchInput {
2868
2869
  search?: string;
2869
2870
  // Explicit value filtering
2870
2871
  _ids?: string[];
2872
+ tenantIdCreateds?: string[];
2871
2873
  tagIds?: string[];
2872
2874
  blockTypes?: BlockType[];
2873
2875
  statuses?: TaskStatus[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.0",
4
+ "version": "5.1.1",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",