@bigfootai/bigfoot-types 5.1.0 → 5.1.2

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 +2 -1
  2. package/model.ts +3 -1
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1608,11 +1608,12 @@ 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]
1614
1615
  businessObjects: [BusinessObjectFilterInput]
1615
- originReferenceBlock: ReferenceBlock
1616
+ originReferenceBlock: ReferenceBlockInput
1616
1617
  editorId: String
1617
1618
  editorGroupId: String
1618
1619
  parentId: String
package/model.ts CHANGED
@@ -2845,11 +2845,12 @@ 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]
2851
2852
  businessObjects: [BusinessObjectFilterInput]
2852
- originReferenceBlock: ReferenceBlock
2853
+ originReferenceBlock: ReferenceBlockInput
2853
2854
  editorId: String
2854
2855
  editorGroupId: String
2855
2856
  parentId: String
@@ -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.2",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",