@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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[];
|