@bigfootai/bigfoot-types 3.7.5 → 3.7.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 +6 -2
- package/model.ts +10 -3
- package/package.json +1 -1
package/model.js
CHANGED
@@ -216,7 +216,7 @@ type Editor {
|
|
216
216
|
exports.SharingTagInputQL = `
|
217
217
|
input SharingTagInput {
|
218
218
|
tagId: String!
|
219
|
-
|
219
|
+
shared: Boolean!
|
220
220
|
sharingApproach: String!
|
221
221
|
sharingLevel: String!
|
222
222
|
confidence: Float
|
@@ -225,7 +225,7 @@ input SharingTagInput {
|
|
225
225
|
exports.SharingTagQL = `
|
226
226
|
type SharingTag {
|
227
227
|
tagId: String!
|
228
|
-
|
228
|
+
shared: Boolean!
|
229
229
|
sharingApproach: String!
|
230
230
|
sharingLevel: String!
|
231
231
|
confidence: Float
|
@@ -523,6 +523,7 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
|
|
523
523
|
version: Float!
|
524
524
|
blockType: String!
|
525
525
|
archived: Boolean!
|
526
|
+
favorite: Boolean!
|
526
527
|
document: String
|
527
528
|
reactions: [Reaction]`;
|
528
529
|
class Block extends SharedPrimitive {
|
@@ -533,6 +534,7 @@ class Block extends SharedPrimitive {
|
|
533
534
|
this.version = version;
|
534
535
|
this.blockType = blockType;
|
535
536
|
this.archived = false;
|
537
|
+
this.favorite = false;
|
536
538
|
}
|
537
539
|
}
|
538
540
|
exports.Block = Block;
|
@@ -921,6 +923,7 @@ input UpsertSearchInput {
|
|
921
923
|
orderByDateUpdated: String
|
922
924
|
orderByDateCreated: String
|
923
925
|
orderByAlias: String
|
926
|
+
favorite: Boolean
|
924
927
|
size: Int
|
925
928
|
}`;
|
926
929
|
exports.FindSearchInputQL = `
|
@@ -950,6 +953,7 @@ input SearchInput {
|
|
950
953
|
orderByDateUpdated: String
|
951
954
|
orderByDateCreated: String
|
952
955
|
orderByAlias: String
|
956
|
+
favorite: Boolean
|
953
957
|
page: Int
|
954
958
|
size: Int
|
955
959
|
}`;
|
package/model.ts
CHANGED
@@ -241,7 +241,7 @@ export interface Editor {
|
|
241
241
|
export const SharingTagInputQL = `
|
242
242
|
input SharingTagInput {
|
243
243
|
tagId: String!
|
244
|
-
|
244
|
+
shared: Boolean!
|
245
245
|
sharingApproach: String!
|
246
246
|
sharingLevel: String!
|
247
247
|
confidence: Float
|
@@ -250,7 +250,7 @@ input SharingTagInput {
|
|
250
250
|
export const SharingTagQL = `
|
251
251
|
type SharingTag {
|
252
252
|
tagId: String!
|
253
|
-
|
253
|
+
shared: Boolean!
|
254
254
|
sharingApproach: String!
|
255
255
|
sharingLevel: String!
|
256
256
|
confidence: Float
|
@@ -258,7 +258,7 @@ type SharingTag {
|
|
258
258
|
}`;
|
259
259
|
export interface SharingTag {
|
260
260
|
tagId: string;
|
261
|
-
|
261
|
+
shared: boolean;
|
262
262
|
sharingApproach: SharingApproach;
|
263
263
|
sharingLevel: SharingLevel;
|
264
264
|
confidence?: number;
|
@@ -793,6 +793,7 @@ export const BlockFields = `${SharedPrimitiveFields}
|
|
793
793
|
version: Float!
|
794
794
|
blockType: String!
|
795
795
|
archived: Boolean!
|
796
|
+
favorite: Boolean!
|
796
797
|
document: String
|
797
798
|
reactions: [Reaction]`;
|
798
799
|
export class Block extends SharedPrimitive {
|
@@ -800,6 +801,7 @@ export class Block extends SharedPrimitive {
|
|
800
801
|
version: number;
|
801
802
|
blockType: BlockType;
|
802
803
|
archived: boolean;
|
804
|
+
favorite: boolean;
|
803
805
|
document?: any;
|
804
806
|
reactions?: Reaction[];
|
805
807
|
_changes?: Changes;
|
@@ -819,6 +821,7 @@ export class Block extends SharedPrimitive {
|
|
819
821
|
this.blockType = blockType;
|
820
822
|
|
821
823
|
this.archived = false;
|
824
|
+
this.favorite = false;
|
822
825
|
}
|
823
826
|
}
|
824
827
|
|
@@ -1673,6 +1676,7 @@ input UpsertSearchInput {
|
|
1673
1676
|
orderByDateUpdated: String
|
1674
1677
|
orderByDateCreated: String
|
1675
1678
|
orderByAlias: String
|
1679
|
+
favorite: Boolean
|
1676
1680
|
size: Int
|
1677
1681
|
}`;
|
1678
1682
|
export interface UpsertSearchInput {
|
@@ -1684,6 +1688,7 @@ export interface UpsertSearchInput {
|
|
1684
1688
|
orderByDateUpdated?: OrderByDirection;
|
1685
1689
|
orderByDateCreated?: OrderByDirection;
|
1686
1690
|
orderByAlias?: OrderByDirection;
|
1691
|
+
favorite: boolean;
|
1687
1692
|
size?: number;
|
1688
1693
|
}
|
1689
1694
|
|
@@ -1733,6 +1738,7 @@ input SearchInput {
|
|
1733
1738
|
orderByDateUpdated: String
|
1734
1739
|
orderByDateCreated: String
|
1735
1740
|
orderByAlias: String
|
1741
|
+
favorite: Boolean
|
1736
1742
|
page: Int
|
1737
1743
|
size: Int
|
1738
1744
|
}`;
|
@@ -1743,6 +1749,7 @@ export interface SearchInput {
|
|
1743
1749
|
orderByDateUpdated?: OrderByDirection;
|
1744
1750
|
orderByDateCreated?: OrderByDirection;
|
1745
1751
|
orderByAlias?: OrderByDirection;
|
1752
|
+
favorite?: boolean;
|
1746
1753
|
page?: number;
|
1747
1754
|
size?: number;
|
1748
1755
|
}
|