@bigfootai/bigfoot-types 5.0.6 → 5.0.7

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 -1
  2. package/model.ts +2 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1444,7 +1444,7 @@ input FindTaskInput {
1444
1444
  }`;
1445
1445
  exports.FindTasksInputQL = `
1446
1446
  input FindTasksInput {
1447
- originNoteId: String
1447
+ originReferenceBlock: ReferenceBlockInput
1448
1448
  archived: Boolean
1449
1449
  }`;
1450
1450
  exports.ArchiveTaskInputQL = `
package/model.ts CHANGED
@@ -2554,11 +2554,11 @@ export interface FindTaskInput {
2554
2554
 
2555
2555
  export const FindTasksInputQL = `
2556
2556
  input FindTasksInput {
2557
- originNoteId: String
2557
+ originReferenceBlock: ReferenceBlockInput
2558
2558
  archived: Boolean
2559
2559
  }`;
2560
2560
  export interface FindTasksInput {
2561
- originNoteId?: string;
2561
+ originReferenceBlock?: ReferenceBlock;
2562
2562
  archived?: boolean;
2563
2563
  }
2564
2564
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.0.6",
4
+ "version": "5.0.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",