@bigfootai/bigfoot-types 2.13.0 → 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 +4 -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
@@ -631,12 +631,16 @@ export class Article extends Primitive {
|
|
631
631
|
mentions?: EntityEntry[];
|
632
632
|
relations?: RelationEntry[];
|
633
633
|
linkUrls?: string[];
|
634
|
+
sharingTags?: SharingTag[];
|
635
|
+
archived: boolean;
|
634
636
|
_changes?: Changes;
|
635
637
|
_tasks?: Task[];
|
636
638
|
|
637
639
|
constructor(referenceBlock: ReferenceBlock) {
|
638
640
|
super();
|
639
641
|
|
642
|
+
this.archived = false;
|
643
|
+
|
640
644
|
this.referenceBlock = referenceBlock;
|
641
645
|
}
|
642
646
|
}
|
@@ -1352,11 +1356,9 @@ export interface FindNoteInput {
|
|
1352
1356
|
|
1353
1357
|
export const FindNotesInputQL = `
|
1354
1358
|
input FindNotesInput {
|
1355
|
-
tagIds: [String]
|
1356
1359
|
archived: Boolean
|
1357
1360
|
}`;
|
1358
1361
|
export interface FindNotesInput {
|
1359
|
-
tagIds?: string[];
|
1360
1362
|
archived?: boolean;
|
1361
1363
|
}
|
1362
1364
|
|
@@ -1409,12 +1411,10 @@ export interface FindTaskInput {
|
|
1409
1411
|
export const FindTasksInputQL = `
|
1410
1412
|
input FindTasksInput {
|
1411
1413
|
originNoteId: String
|
1412
|
-
tagIds: [String]
|
1413
1414
|
archived: Boolean
|
1414
1415
|
}`;
|
1415
1416
|
export interface FindTasksInput {
|
1416
1417
|
originNoteId?: string;
|
1417
|
-
tagIds?: string[];
|
1418
1418
|
archived?: boolean;
|
1419
1419
|
}
|
1420
1420
|
|