@bigfootai/bigfoot-types 3.7.6 → 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 +4 -0
- package/model.ts +7 -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
|
}
|
@@ -923,6 +925,7 @@ input UpsertSearchInput {
|
|
923
925
|
orderByDateUpdated: String
|
924
926
|
orderByDateCreated: String
|
925
927
|
orderByAlias: String
|
928
|
+
favorite: Boolean
|
926
929
|
size: Int
|
927
930
|
}`;
|
928
931
|
exports.FindSearchInputQL = `
|
@@ -952,6 +955,7 @@ input SearchInput {
|
|
952
955
|
orderByDateUpdated: String
|
953
956
|
orderByDateCreated: String
|
954
957
|
orderByAlias: String
|
958
|
+
favorite: Boolean
|
955
959
|
page: Int
|
956
960
|
size: Int
|
957
961
|
}`;
|
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
|
}
|
@@ -1676,6 +1679,7 @@ input UpsertSearchInput {
|
|
1676
1679
|
orderByDateUpdated: String
|
1677
1680
|
orderByDateCreated: String
|
1678
1681
|
orderByAlias: String
|
1682
|
+
favorite: Boolean
|
1679
1683
|
size: Int
|
1680
1684
|
}`;
|
1681
1685
|
export interface UpsertSearchInput {
|
@@ -1687,6 +1691,7 @@ export interface UpsertSearchInput {
|
|
1687
1691
|
orderByDateUpdated?: OrderByDirection;
|
1688
1692
|
orderByDateCreated?: OrderByDirection;
|
1689
1693
|
orderByAlias?: OrderByDirection;
|
1694
|
+
favorite: boolean;
|
1690
1695
|
size?: number;
|
1691
1696
|
}
|
1692
1697
|
|
@@ -1736,6 +1741,7 @@ input SearchInput {
|
|
1736
1741
|
orderByDateUpdated: String
|
1737
1742
|
orderByDateCreated: String
|
1738
1743
|
orderByAlias: String
|
1744
|
+
favorite: Boolean
|
1739
1745
|
page: Int
|
1740
1746
|
size: Int
|
1741
1747
|
}`;
|
@@ -1746,6 +1752,7 @@ export interface SearchInput {
|
|
1746
1752
|
orderByDateUpdated?: OrderByDirection;
|
1747
1753
|
orderByDateCreated?: OrderByDirection;
|
1748
1754
|
orderByAlias?: OrderByDirection;
|
1755
|
+
favorite?: boolean;
|
1749
1756
|
page?: number;
|
1750
1757
|
size?: number;
|
1751
1758
|
}
|