@bigfootai/bigfoot-types 2.13.1 → 2.13.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.
- package/model.js +1 -2
- package/model.ts +3 -4
- package/package.json +1 -1
package/model.js
CHANGED
@@ -400,6 +400,7 @@ type Article {${exports.PrimitiveFields}
|
|
400
400
|
class Article extends Primitive {
|
401
401
|
constructor(referenceBlock) {
|
402
402
|
super();
|
403
|
+
this.archived = false;
|
403
404
|
this.referenceBlock = referenceBlock;
|
404
405
|
}
|
405
406
|
}
|
@@ -701,7 +702,6 @@ input FindNoteInput {
|
|
701
702
|
}`;
|
702
703
|
exports.FindNotesInputQL = `
|
703
704
|
input FindNotesInput {
|
704
|
-
tagIds: [String]
|
705
705
|
archived: Boolean
|
706
706
|
}`;
|
707
707
|
exports.ArchiveNoteInputQL = `
|
@@ -730,7 +730,6 @@ input FindTaskInput {
|
|
730
730
|
exports.FindTasksInputQL = `
|
731
731
|
input FindTasksInput {
|
732
732
|
originNoteId: String
|
733
|
-
tagIds: [String]
|
734
733
|
archived: Boolean
|
735
734
|
}`;
|
736
735
|
exports.ArchiveTaskInputQL = `
|
package/model.ts
CHANGED
@@ -632,12 +632,15 @@ export class Article extends Primitive {
|
|
632
632
|
relations?: RelationEntry[];
|
633
633
|
linkUrls?: string[];
|
634
634
|
sharingTags?: SharingTag[];
|
635
|
+
archived: boolean;
|
635
636
|
_changes?: Changes;
|
636
637
|
_tasks?: Task[];
|
637
638
|
|
638
639
|
constructor(referenceBlock: ReferenceBlock) {
|
639
640
|
super();
|
640
641
|
|
642
|
+
this.archived = false;
|
643
|
+
|
641
644
|
this.referenceBlock = referenceBlock;
|
642
645
|
}
|
643
646
|
}
|
@@ -1353,11 +1356,9 @@ export interface FindNoteInput {
|
|
1353
1356
|
|
1354
1357
|
export const FindNotesInputQL = `
|
1355
1358
|
input FindNotesInput {
|
1356
|
-
tagIds: [String]
|
1357
1359
|
archived: Boolean
|
1358
1360
|
}`;
|
1359
1361
|
export interface FindNotesInput {
|
1360
|
-
tagIds?: string[];
|
1361
1362
|
archived?: boolean;
|
1362
1363
|
}
|
1363
1364
|
|
@@ -1410,12 +1411,10 @@ export interface FindTaskInput {
|
|
1410
1411
|
export const FindTasksInputQL = `
|
1411
1412
|
input FindTasksInput {
|
1412
1413
|
originNoteId: String
|
1413
|
-
tagIds: [String]
|
1414
1414
|
archived: Boolean
|
1415
1415
|
}`;
|
1416
1416
|
export interface FindTasksInput {
|
1417
1417
|
originNoteId?: string;
|
1418
|
-
tagIds?: string[];
|
1419
1418
|
archived?: boolean;
|
1420
1419
|
}
|
1421
1420
|
|