@bigfootai/bigfoot-types 5.0.5 → 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 +2 -1
- package/model.ts +3 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -835,6 +835,7 @@ class Block extends SharedPrimitive {
|
|
835
835
|
this.blockType = blockType;
|
836
836
|
this.archived = false;
|
837
837
|
this.favorite = false;
|
838
|
+
this.snoozed = false;
|
838
839
|
this._dateDueUserAssigned = false;
|
839
840
|
this._empty = false;
|
840
841
|
}
|
@@ -1443,7 +1444,7 @@ input FindTaskInput {
|
|
1443
1444
|
}`;
|
1444
1445
|
exports.FindTasksInputQL = `
|
1445
1446
|
input FindTasksInput {
|
1446
|
-
|
1447
|
+
originReferenceBlock: ReferenceBlockInput
|
1447
1448
|
archived: Boolean
|
1448
1449
|
}`;
|
1449
1450
|
exports.ArchiveTaskInputQL = `
|
package/model.ts
CHANGED
@@ -1314,6 +1314,7 @@ export class Block extends SharedPrimitive {
|
|
1314
1314
|
|
1315
1315
|
this.archived = false;
|
1316
1316
|
this.favorite = false;
|
1317
|
+
this.snoozed = false;
|
1317
1318
|
|
1318
1319
|
this._dateDueUserAssigned = false;
|
1319
1320
|
|
@@ -2553,11 +2554,11 @@ export interface FindTaskInput {
|
|
2553
2554
|
|
2554
2555
|
export const FindTasksInputQL = `
|
2555
2556
|
input FindTasksInput {
|
2556
|
-
|
2557
|
+
originReferenceBlock: ReferenceBlockInput
|
2557
2558
|
archived: Boolean
|
2558
2559
|
}`;
|
2559
2560
|
export interface FindTasksInput {
|
2560
|
-
|
2561
|
+
originReferenceBlock?: ReferenceBlock;
|
2561
2562
|
archived?: boolean;
|
2562
2563
|
}
|
2563
2564
|
|