@bigfootai/bigfoot-types 3.7.7 → 3.7.8
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 -0
- package/model.ts +3 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -509,11 +509,13 @@ type Article {${exports.PrimitiveFields}
|
|
509
509
|
recommendations: [TagRecommendation]
|
510
510
|
relations: [RelationEntry]
|
511
511
|
archived: Boolean!
|
512
|
+
favorite: Boolean!
|
512
513
|
}`;
|
513
514
|
class Article extends Primitive {
|
514
515
|
constructor(referenceBlock) {
|
515
516
|
super();
|
516
517
|
this.archived = false;
|
518
|
+
this.favorite = false;
|
517
519
|
this.referenceBlock = referenceBlock;
|
518
520
|
}
|
519
521
|
}
|
package/model.ts
CHANGED
@@ -759,6 +759,7 @@ type Article {${PrimitiveFields}
|
|
759
759
|
recommendations: [TagRecommendation]
|
760
760
|
relations: [RelationEntry]
|
761
761
|
archived: Boolean!
|
762
|
+
favorite: Boolean!
|
762
763
|
}`;
|
763
764
|
export class Article extends Primitive {
|
764
765
|
referenceBlock: ReferenceBlock;
|
@@ -772,6 +773,7 @@ export class Article extends Primitive {
|
|
772
773
|
recommendations?: TagRecommendation[];
|
773
774
|
relations?: RelationEntry[];
|
774
775
|
archived: boolean;
|
776
|
+
favorite: boolean;
|
775
777
|
_changes?: Changes;
|
776
778
|
_tasks?: Task[];
|
777
779
|
_entitiesPerson?: EntityEntry[];
|
@@ -783,6 +785,7 @@ export class Article extends Primitive {
|
|
783
785
|
super();
|
784
786
|
|
785
787
|
this.archived = false;
|
788
|
+
this.favorite = false;
|
786
789
|
|
787
790
|
this.referenceBlock = referenceBlock;
|
788
791
|
}
|