@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.
- package/model.js +1 -1
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2554,11 +2554,11 @@ export interface FindTaskInput {
|
|
2554
2554
|
|
2555
2555
|
export const FindTasksInputQL = `
|
2556
2556
|
input FindTasksInput {
|
2557
|
-
|
2557
|
+
originReferenceBlock: ReferenceBlockInput
|
2558
2558
|
archived: Boolean
|
2559
2559
|
}`;
|
2560
2560
|
export interface FindTasksInput {
|
2561
|
-
|
2561
|
+
originReferenceBlock?: ReferenceBlock;
|
2562
2562
|
archived?: boolean;
|
2563
2563
|
}
|
2564
2564
|
|